/*=====================================
        BRANDING HERO
======================================*/

.branding-hero{
    position: relative;
    padding: 170px 0 120px;
    background: linear-gradient(135deg,#000 0%,#0b0b0b 50%,#000 100%);
    overflow: hidden;
}

.branding-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%,rgba(90,174,224,.12),transparent 35%),
    radial-gradient(circle at 80% 70%,rgba(90,174,224,.08),transparent 40%);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:780px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(90,174,224,.12);
    color:#5aaee0;
    border:1px solid rgba(90,174,224,.25);
    margin-bottom:25px;
    font-weight:600;
}

.hero-tag i{
    color:#5aaee0;
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    background:linear-gradient(135deg,#5aaee0,#9be0ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    font-size:18px;
    color:#b8b8b8;
    max-width:650px;
    margin-bottom:40px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 35px;
    background:#5aaee0;
    color:#000;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
}

.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(90,174,224,.35);
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 35px;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.35s;
}

.secondary-btn:hover{
    background:#5aaee0;
    color:#000;
}

/*=====================================
        ABOUT
======================================*/

.branding-about{
    background:#070707;
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#5aaee0;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
}

.section-title h2{
    font-size:50px;
    color:#fff;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#9d9d9d;
    line-height:1.8;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:22px;
}

.about-image img{
    width:100%;
    display:block;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-content h3{
    color:#fff;
    font-size:38px;
    margin-bottom:20px;
}

.about-content p{
    color:#b7b7b7;
    line-height:1.9;
    margin-bottom:18px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature{
    background:#111;
    padding:18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.07);
    transition:.35s;
}

.feature:hover{
    transform:translateY(-6px);
    border-color:#5aaee0;
}

.feature i{
    color:#5aaee0;
    margin-right:10px;
}
/*=====================================
        SERVICES
======================================*/

.branding-services{
    padding:110px 0;
    background:#0b0b0b;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    background:linear-gradient(145deg,#141414,#0b0b0b);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.4s;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:3px;
    background:#5aaee0;
    transform:scaleX(0);
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#5aaee0;
    box-shadow:0 20px 40px rgba(90,174,224,.12);
}

.service-card i{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#5aaee0;
    color:#000;
    border-radius:18px;
    font-size:28px;
    margin-bottom:25px;
    transition:.4s;
}

.service-card:hover i{
    transform:rotate(360deg);
}

.service-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.service-card p{
    color:#b7b7b7;
    line-height:1.8;
}

/*=====================================
      WHY CHOOSE US
======================================*/

.why-branding{
    background:#050505;
    padding:110px 0;
}

.why-branding .service-card{
    text-align:center;
}

.why-branding .service-card i{
    margin:0 auto 25px;
}

/*=====================================
        PROCESS
======================================*/

.branding-process{
    background:#0b0b0b;
    padding:110px 0;
}

.branding-process .services-grid{
    grid-template-columns:repeat(4,1fr);
}

.branding-process .service-card{
    text-align:center;
}

.branding-process .service-card h3{
    font-size:48px;
    color:#5aaee0;
    margin-bottom:10px;
}

.branding-process .service-card h4{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.branding-process .service-card p{
    color:#a5a5a5;
}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:1100px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

.branding-process .services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.services-grid{
grid-template-columns:1fr;
}

.branding-process .services-grid{
grid-template-columns:1fr;
}

.service-card{
padding:28px;
}

.service-card h3{
font-size:22px;
}

.section-title h2{
font-size:36px;
}

.about-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:46px;
}

}

@media(max-width:480px){

.hero-content h1{
font-size:36px;
}

.section-title h2{
font-size:30px;
}

.hero-buttons{
flex-direction:column;
}

.primary-btn,
.secondary-btn{
width:100%;
text-align:center;
}

}
/*=====================================
            CTA SECTION
======================================*/

.branding-cta{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #050505 0%,
        #0b0b0b 50%,
        #050505 100%
    );
    position:relative;
    overflow:hidden;
}

.branding-cta::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(
        circle,
        rgba(90,174,224,.15) 0%,
        transparent 70%
    );
    pointer-events:none;
}

.branding-cta .section-title{
    position:relative;
    z-index:2;
    margin-bottom:0;
}

.branding-cta h2{
    font-size:58px;
    color:#fff;
    margin-bottom:20px;
}

.branding-cta p{
    max-width:700px;
    margin:0 auto 40px;
    color:#b7b7b7;
    line-height:1.8;
}

/*=====================================
            FOOTER
======================================*/

.main-footer{
    background:#050505;
    padding:80px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-logo h2{
    color:#fff;
    font-size:32px;
    margin-bottom:15px;
}

.logo-highlight{
    color:#5aaee0;
}

.footer-logo p{
    color:#9e9e9e;
    line-height:1.8;
    max-width:320px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4{
    color:#fff;
    margin-bottom:20px;
    font-size:18px;
}

.footer-links ul,
.footer-services ul{
    list-style:none;
    padding:0;
}

.footer-links ul li,
.footer-services ul li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#a5a5a5;
    transition:.3s;
}

.footer-links a:hover{
    color:#5aaee0;
}

.footer-services li{
    color:#a5a5a5;
}

.footer-contact p{
    color:#a5a5a5;
    margin-bottom:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#888;
    font-size:14px;
}

/*=====================================
        EXTRA EFFECTS
======================================*/

.service-card,
.feature,
.primary-btn,
.secondary-btn{
    will-change:transform;
}

.service-card:hover{
    box-shadow:
    0 20px 40px rgba(0,0,0,.4),
    0 0 25px rgba(90,174,224,.08);
}

.about-image img{
    box-shadow:
    0 20px 50px rgba(0,0,0,.45);
}

/*=====================================
        SCROLL SMOOTH
======================================*/

html{
    scroll-behavior:smooth;
}

/*=====================================
          MOBILE
======================================*/

@media(max-width:991px){

.footer-content{
    grid-template-columns:1fr 1fr;
}

.branding-cta h2{
    font-size:42px;
}

}

@media(max-width:768px){

.footer-content{
    grid-template-columns:1fr;
    gap:30px;
}

.branding-cta{
    padding:90px 0;
}

.branding-cta h2{
    font-size:34px;
}

.branding-cta p{
    font-size:15px;
}

.footer-logo p{
    max-width:100%;
}

}

@media(max-width:480px){

.branding-cta h2{
    font-size:28px;
}

.footer-logo h2{
    font-size:28px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4{
    font-size:16px;
}

}
/* ----------------------------- */
/* VARIABLES & GLOBAL STYLES     */
/* ----------------------------- */
:root {
    --brand-green: #5aaee0;
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-black);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--brand-green);
}

.text-center {
    text-align: center;
    margin-top: 50px;
}

section {
    padding: 100px 50px;
}

/* ----------------------------- */
/* 1. HEADER                     */
/* ----------------------------- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--brand-black);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.logo a { font-size: 2.2rem; font-weight: 800; }
.logo-highlight { color: var(--brand-green); }
.header-middle { display: flex; align-items: center; gap: 50px; }
.main-nav ul { list-style: none; display: flex; gap: 40px; }
.main-nav a { position: relative; font-weight: 500; padding-bottom: 8px; transition: color 0.3s; }
.main-nav a:hover { color: var(--brand-white); }
.main-nav a.active { color: var(--brand-green); font-weight: 700; }
.main-nav a::after { content: ''; position: absolute; width: 100%; height: 2px; bottom: 0; left: 0; background-color: var(--brand-green); transform: scaleX(0); transform-origin: bottom right; transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: bottom left; }
.cta-button { display: inline-block; background-color: var(--brand-green); color: var(--brand-black); padding: 14px 30px; border-radius: 50px; font-weight: 700; transition: transform 0.3s, background-color 0.3s; }
.cta-button:hover { transform: scale(1.05); background-color: var(--brand-white); }

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--brand-white);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-white);
    transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--brand-green);
}


/* ----------------------------- */
/* 9. FOOTER                     */
/* ----------------------------- */
.main-footer {
    background-color: #0a0a0a;
    padding: 60px 50px 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand-green);
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-links-row:last-child {
    margin-bottom: 0;
}

.footer-links-row a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: var(--brand-green);
}

.social-section .footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icon-box:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-3px);
}

.back-to-top {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--brand-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-green);
}


/* ----------------------------- */
/* RESPONSIVENESS                */
/* ----------------------------- */
@media (max-width: 1024px) {
    .header-middle { display: none; }
    .hamburger { display: flex !important; }
    .cta-button { display: none !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    section { padding: 60px 20px; }
    .main-header { padding: 15px 20px; }
    .logo a { font-size: 1.8rem; }
    .cta-button { display: none !important; }
    .section-title { font-size: 2rem; margin-bottom: 30px; }
    
    /* Mobile Header & Hamburger Fix */
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .hamburger {
        display: flex !important;
        padding: 10px;
        margin: 0;
    }
    
    .hamburger .bar {
        width: 24px;
        height: 2px;
        margin: 3px 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2px;
        margin: 4px 0;
    }
    
    /* Footer Mobile */
    .main-footer {
        padding: 50px 20px 25px;
    }
    
    .footer-container {
        gap: 35px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-links-row {
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .footer-links-row a {
        font-size: 0.95rem;
    }
    
    .social-icons-row {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .social-icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 25px;
        gap: 12px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        gap: 20px;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    section { padding: 50px 15px; }
    .section-title { font-size: 1.8rem; }
    .logo a { font-size: 1.6rem; }
    .cta-button { 
        display: none !important;
    }
    .mobile-nav a { font-size: 1.5rem; }
    
    /* Footer Small Mobile Fix */
    .main-footer {
        padding: 40px 15px 20px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .footer-title::after {
        width: 30px;
        height: 2px;
    }
    
    .footer-links-row {
        gap: 12px;
        margin-bottom: 8px;
    }
    
    .footer-links-row a {
        font-size: 0.9rem;
    }
    
    .social-section .footer-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .social-icons-row {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .social-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .back-to-top {
        font-size: 0.9rem;
        padding: 10px 18px;
        background: rgba(90, 174, 224, 0.1);
        border: 1px solid rgba(90, 174, 224, 0.3);
        border-radius: 25px;
        margin-top: 15px;
    }
    
    .footer-bottom {
        margin-top: 35px;
        padding-top: 20px;
        gap: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        gap: 15px;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
}
