::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#fefefe;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--red),var(--blue));
    border-radius:20px;
}

::selection{
    background:var(--red);
    color:white;
}

/* =========================================
   RESET
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07111E;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

/* =========================================
   VARIABLES
========================================= */
:root{
    --red:#E3062D;
    --blue:#1F4EA8;
    --dark:#07111E;
    --black:#030A14;
    --white:#F8FAFC;
    --grey:#CBD5E1;
    --glass:rgba(255,255,255,0.08);
    --border:rgba(255,255,255,0.08);
    --shadow:0 20px 50px rgba(0,0,0,0.35);
}

/* =========================================
   GLOBAL
========================================= */
.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    position:relative;
}

ul{
    list-style:none;
}

/* =========================================
   BUTTON SYSTEM
========================================= */
.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    color:white;
    box-shadow:0 18px 40px rgba(227,6,45,0.35);
    transition:0.3s ease;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
    background:rgba(255,255,255,0.08);
    border:1px solid var(--border);
    backdrop-filter:blur(14px);
    color:white;
    transition:0.3s ease;
}

.secondary-btn:hover{
    transform:translateY(-4px);
}

/* =========================================
   HEADER
========================================= */
.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(7,17,30,0.35);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:all 0.35s ease;
}

.main-header.scrolled{
    background:rgba(7,17,30,0.95);
    box-shadow:0 15px 45px rgba(0,0,0,0.35);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo img{
    height:64px;
}

/* NAV */
.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:38px;
}

.desktop-nav a{
    color:white;
    font-weight:500;
    font-size:15px;
    position:relative;
    transition:0.3s ease;
}

.desktop-nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:var(--red);
    transition:0.3s ease;
}

.desktop-nav a:hover{
    color:var(--red);
}

.desktop-nav a:hover::after{
    width:100%;
}

/* ACTIONS */
.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.phone-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--glass);
    border:1px solid var(--border);
    color:white;
    font-size:18px;
    transition:0.3s ease;
}

.phone-btn:hover{
    background:var(--red);
    transform:translateY(-3px);
}

.quote-btn{
    padding:15px 28px;
    border-radius:50px;
    font-weight:700;
    color:white;
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    box-shadow:0 15px 35px rgba(227,6,45,0.35);
    transition:0.3s ease;
}

.quote-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */
.mobile-toggle{
    display:none;
    width:50px;
    height:50px;
    border:none;
    border-radius:14px;
    background:var(--glass);
    color:white;
    font-size:22px;
    cursor:pointer;
}

.mobile-menu{
    position:absolute;
    top:100%;
    right:20px;
    width:280px;
    background:rgba(7,17,30,0.98);
    backdrop-filter:blur(20px);
    border:1px solid var(--border);
    border-radius:22px;
    padding:25px;
    display:none;
    flex-direction:column;
    gap:18px;
    box-shadow:var(--shadow);
}

.mobile-menu.active{
    display:flex;
}

.mobile-menu a{
    color:white;
    font-weight:600;
    padding:8px 0;
}

/* =========================================
   HERO
========================================= */
.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:140px 0 100px;
    background:
    radial-gradient(circle at top right, rgba(227,6,45,0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(31,78,168,0.18), transparent 30%),
    #07111E;
}

/* OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,17,30,0.96) 0%,
        rgba(7,17,30,0.82) 45%,
        rgba(7,17,30,0.15) 100%
    );
    z-index:1;
}

/* GLOW */
.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:1;
    pointer-events:none;
}

.glow-1{
    width:320px;
    height:320px;
    background:rgba(227,6,45,0.18);
    top:80px;
    right:120px;
}

.glow-2{
    width:260px;
    height:260px;
    background:rgba(31,78,168,0.22);
    bottom:120px;
    left:55%;
}

/* GRID */
.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

/* CONTENT */
.hero-content{
    max-width:680px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(227,6,45,0.14);
    border:1px solid var(--border);
    color:#ff9cab;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:24px;
    backdrop-filter:blur(14px);
}

.hero-content h1{
    font-size:60px;
    line-height:0.95;
    font-weight:900;
    margin-bottom:24px;
    letter-spacing:-2px;
}

.hero-content h1 span{
    display:block;
    color:var(--red);
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:var(--grey);
    margin-bottom:35px;
    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* HERO BUTTONS */
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-primary-btn,
.hero-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    text-decoration:none;
    transition:all 0.3s ease;
}

/* PRIMARY */
.hero-primary-btn{
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    color:white;
    box-shadow:0 18px 40px rgba(227,6,45,0.35);
}

.hero-primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 50px rgba(227,6,45,0.45);
}

/* SECONDARY */
.hero-secondary-btn{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    color:white;
}

.hero-secondary-btn:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,0.14);
}

/* TRUST */
.hero-trust{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.trust-chip{
    background:var(--glass);
    border:1px solid var(--border);
    backdrop-filter:blur(18px);
    padding:18px 22px;
    border-radius:20px;
    min-width:140px;
}

.trust-chip strong{
    display:block;
    font-size:24px;
    color:var(--red);
    margin-bottom:4px;
}

.trust-chip span{
    font-size:14px;
}

/* RIGHT VISUAL */
.hero-visual{
    position:relative;
    height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-main-image{
    width:100%;
    height:100%;
    border-radius:32px;
    background:
    linear-gradient(
        rgba(7,17,30,0.15),
        rgba(7,17,30,0.35)
    ),
    url('../images/services/mobile-van-2.png');
    background-size:cover;
    background-position:center;
    box-shadow:0 35px 90px rgba(0,0,0,0.5);
    transform:perspective(1200px) rotateY(-10deg);
    border:1px solid rgba(255,255,255,0.06);
}

/* METRIC CARDS */
.metric-card{
    position:absolute;
    background:var(--glass);
    border:1px solid var(--border);
    backdrop-filter:blur(18px);
    padding:22px 24px;
    border-radius:20px;
    box-shadow:var(--shadow);
    min-width:220px;
}

.metric-card h3{
    font-size:36px;
    color:var(--red);
    margin-bottom:6px;
}

.metric-card p{
    color:var(--grey);
    font-size:15px;
}

.metric-1{
    top:70px;
    left:-50px;
}

.metric-2{
    bottom:70px;
    right:-30px;
}

/* SCROLL */
.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
}

.scroll-indicator span{
    width:32px;
    height:54px;
    border:2px solid rgba(255,255,255,0.35);
    border-radius:30px;
    display:block;
    position:relative;
}

.scroll-indicator span::before{
    content:'';
    width:6px;
    height:10px;
    background:white;
    border-radius:20px;
    position:absolute;
    left:50%;
    top:10px;
    transform:translateX(-50%);
    animation:scrollDot 1.6s infinite;
}

@keyframes scrollDot{
    0%{
        opacity:1;
        top:10px;
    }
    100%{
        opacity:0;
        top:28px;
    }
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:1200px){
    .hero-content h1{
        font-size:68px;
    }

    .hero-grid{
        gap:50px;
    }
}

@media(max-width:992px){

    .desktop-nav{
        display:none;
    }

    .phone-btn,
    .quote-btn{
        display:none;
    }

    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .logo img{
        height:54px;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-visual{
        height:420px;
    }

    .hero-main-image{
        transform:none;
    }

    .metric-1{
        top:20px;
        left:20px;
    }

    .metric-2{
        bottom:20px;
        right:20px;
    }

    .scroll-indicator{
        display:none;
    }
}

@media(max-width:576px){

    .hero-section{
        padding:120px 0 60px;
    }

    .hero-content h1{
        font-size:40px;
        line-height:1.05;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-primary-btn,
    .hero-secondary-btn{
        width:100%;
        text-align:center;
    }

    .trust-chip{
        width:100%;
        min-width:auto;
    }

    .hero-visual{
        height:300px;
    }

    .metric-card{
        min-width:160px;
        padding:16px;
    }

    .metric-card h3{
        font-size:24px;
    }
}

/* =========================================
   CLIENTS MARQUEE - PREMIUM
========================================= */
.clients-section{
    padding:60px 0;
    background:#081320;
    border-top:1px solid rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.04);
    overflow:hidden;
    position:relative;
}

/* EDGE FADE */
.clients-section::before,
.clients-section::after{
    content:'';
    position:absolute;
    top:0;
    width:180px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.clients-section::before{
    left:0;
    background:linear-gradient(
        90deg,
        #081320 0%,
        rgba(8,19,32,0) 100%
    );
}

.clients-section::after{
    right:0;
    background:linear-gradient(
        270deg,
        #081320 0%,
        rgba(8,19,32,0) 100%
    );
}

.clients-heading{
    text-align:center;
    color:rgba(255,255,255,0.65);
    font-size:14px;
    margin-bottom:35px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
}

.clients-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    align-items:center;
    gap:90px;
    width:max-content;
    animation:marqueeMove 24s linear infinite;
}

.client-logo{
    flex-shrink:0;
    font-size:42px;
    font-weight:900;
    letter-spacing:2px;
    color:rgba(255,255,255,0.14);
    transition:all 0.35s ease;
    cursor:pointer;
    background:none;
    border:none;
    min-width:auto;
    height:auto;
    padding:0;
    backdrop-filter:none;
}

.client-logo:hover{
    color:white;
    transform:scale(1.05);
    text-shadow:0 0 25px rgba(227,6,45,0.35);
}

@keyframes marqueeMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px){

    .client-logo{
        font-size:24px;
    }

    .marquee-track{
        gap:50px;
        animation-duration:16s;
    }

    .clients-section::before,
    .clients-section::after{
        width:70px;
    }
}

/* =========================================
   SECTION HEADING
========================================= */
/* SECTION HEADING */
.section-heading{
    text-align:center;
    max-width:950px;
    margin:0 auto 80px;
}

.section-heading span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        rgba(227,6,45,0.18),
        rgba(31,78,168,0.16)
    );
    border:1px solid rgba(255,255,255,0.08);
    color:#ffffff;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:28px;
    box-shadow:
        0 10px 30px rgba(227,6,45,0.15),
        0 10px 30px rgba(31,78,168,0.08);
}

.section-heading h2{
    font-size:56px;
    font-weight:900;
    line-height:1.05;
    margin-bottom:24px;
    letter-spacing:-2px;

    background:linear-gradient(
        90deg,
        #ffffff 0%,
        #1F4EA8 35%,
        #ffffff 55%,
        #E3062D 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    text-shadow:
        0 0 35px rgba(31,78,168,0.12),
        0 0 35px rgba(227,6,45,0.10);
}

.section-heading p{
    font-size:16px;
    color:rgba(203,213,225,0.88);
    line-height:1.9;
    /*max-width:880px;*/
    margin:0 auto;
}

/* =========================================
   SERVICES PAGE
========================================= */
.services-page-section{
    padding:140px 0;
    background:#07111E;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */
.service-card{
    position:relative;
    display:block;
    height:420px;
    overflow:hidden;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
    text-decoration:none;
    transition:0.4s ease;
    background:#111;
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s ease;
}

/* SERVICE CARD BUTTON */
.service-card .service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 26px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    letter-spacing:0.4px;
    box-shadow:0 15px 35px rgba(227,6,45,0.35);
    transition:all 0.35s ease;
    position:relative;
    z-index:3;
    overflow:hidden;
}

.service-card .service-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.22),
        transparent
    );
    transition:0.5s;
}

.service-card .service-btn:hover::before{
    left:100%;
}

.service-card .service-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 20px 45px rgba(227,6,45,0.45),
        0 10px 25px rgba(31,78,168,0.18);
}

.service-overlay .service-btn{
    margin-top:18px;
}

/* STRONG OVERLAY */
.service-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:26px;
    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,0.08) 10%,
        rgba(0,0,0,0.35) 45%,
        rgba(7,17,30,0.98) 100%
    );
    z-index:2;
}

.service-overlay h3{
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    color:#fff;
    margin:0;
    text-shadow:0 4px 20px rgba(0,0,0,0.45);
}

/* HOVER */
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.45),
        0 12px 35px rgba(227,6,45,0.12);
}

.service-card:hover img{
    transform:scale(1.12);
}

/* BENEFITS */
.service-benefits{
    padding:120px 0;
    background:#0A1422;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.benefit-box{
    text-align:center;
    padding:40px;
    border-radius:28px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    transition:0.35s ease;
}

.benefit-box:hover{
    transform:translateY(-8px);
}

.benefit-box i{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:24px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:white;
    background:linear-gradient(135deg,var(--red),var(--blue));
}

.benefit-box h3{
    font-size:26px;
    margin-bottom:14px;
    color:white;
}

.benefit-box p{
    color:var(--grey);
    line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:992px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        height:340px;
    }

    .service-overlay h3{
        font-size:22px;
    }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section{
    padding:140px 0;
    background:
    radial-gradient(circle at top left, rgba(31,78,168,0.08), transparent 30%),
    #0A1422;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

/* VISUAL */
.about-visual{
    position:relative;
    height:650px;
}

.about-main-image{
    position:absolute;
    width:75%;
    height:520px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 35px 80px rgba(0,0,0,0.45);
    border:1px solid rgba(255,255,255,0.06);
}

.about-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-small-image{
    position:absolute;
    width:300px;
    height:220px;
    bottom:40px;
    right:20px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
    border:1px solid rgba(255,255,255,0.06);
}

.about-small-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.experience-badge{
    position:absolute;
    top:40px;
    right:0;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    padding:22px;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
}

.experience-badge strong{
    display:block;
    font-size:38px;
    color:var(--red);
}

.experience-badge span{
    color:var(--grey);
    font-size:14px;
}

/* CONTENT */
.about-tag{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        rgba(227,6,45,0.18),
        rgba(31,78,168,0.16)
    );
    border:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:26px;
}

.about-content h2{
    font-size:56px;
    font-weight:900;
    line-height:1.05;
    margin-bottom:24px;
    letter-spacing:-2px;
}

.about-content h2 span{
    display:block;
    color:var(--red);
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:var(--grey);
    margin-bottom:35px;
}

/* FEATURES */
.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    background:rgba(255,255,255,0.05);
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.06);
}

.feature-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--red),var(--blue));
}

.feature-item span{
    font-weight:600;
    font-size:15px;
}

/* BUTTON */
.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:50px;
    font-weight:700;
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    color:white;
    box-shadow:0 18px 40px rgba(227,6,45,0.35);
    transition:0.3s;
}

.about-btn:hover{
    transform:translateY(-4px);
}

/* METRICS */
.about-metrics{
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.metric-box{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    padding:36px;
    border-radius:24px;
    text-align:center;
}

.metric-box h3{
    font-size:48px;
    color:var(--red);
    margin-bottom:10px;
}

.metric-box p{
    color:var(--grey);
    font-size:16px;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .about-content h2{
        font-size:48px;
    }
}

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-visual{
        height:520px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-metrics{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .about-content h2{
        font-size:36px;
    }

    .about-main-image{
        width:100%;
        height:340px;
        position:relative;
    }

    .about-small-image,
    .experience-badge{
        display:none;
    }

    .about-visual{
        height:auto;
    }

    .about-metrics{
        grid-template-columns:1fr;
    }
}

/* =========================================
   WHY SECTION
========================================= */
.why-section{
    padding:140px 0;
    background:
    radial-gradient(circle at top right, rgba(227,6,45,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(31,78,168,0.08), transparent 30%),
    #07111E;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */
.why-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:38px;
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transition:0.6s;
}

.why-card:hover::before{
    left:100%;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:rgba(227,6,45,0.22);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.35),
        0 10px 30px rgba(227,6,45,0.08);
}

/* ICON */
.why-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    font-size:28px;
    color:white;
    background:linear-gradient(135deg,var(--red),var(--blue));
    box-shadow:0 15px 35px rgba(227,6,45,0.18);
}

.why-card h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:18px;
    line-height:1.2;
}

.why-card p{
    color:var(--grey);
    font-size:16px;
    line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:28px;
    }

    .why-card h3{
        font-size:22px;
    }
}

/* =========================================
   STATS SECTION
========================================= */
.stats-section{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:
    linear-gradient(180deg,#09131F 0%, #07111E 100%);
}

/* GLOW */
.stats-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

.stats-glow-1{
    width:280px;
    height:280px;
    background:rgba(227,6,45,0.14);
    top:80px;
    left:80px;
}

.stats-glow-2{
    width:260px;
    height:260px;
    background:rgba(31,78,168,0.16);
    bottom:80px;
    right:80px;
}

/* GRID */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

/* CARD */
.stat-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:50px 30px;
    text-align:center;
    transition:all 0.35s ease;
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:rgba(227,6,45,0.22);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.35),
        0 10px 30px rgba(227,6,45,0.08);
}

.stat-card h3{
    font-size:64px;
    font-weight:900;
    line-height:1;
    margin-bottom:14px;
    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #1F4EA8 45%,
        #E3062D 100%
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.stat-card p{
    color:var(--grey);
    font-size:18px;
    font-weight:600;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card h3{
        font-size:48px;
    }

    .stat-card{
        padding:40px 25px;
    }
}

/* =========================================
   PROCESS SECTION
========================================= */
.process-section{
    padding:140px 0;
    background:
    radial-gradient(circle at top right, rgba(31,78,168,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(227,6,45,0.08), transparent 30%),
    #0A1422;
}

.process-timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */
.process-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:38px 28px;
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
    min-height:340px;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:rgba(227,6,45,0.22);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.35),
        0 10px 30px rgba(227,6,45,0.08);
}

/* NUMBER */
.process-number{
    width:84px;
    height:84px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:900;
    color:white;
    margin-bottom:28px;

    background:linear-gradient(
        135deg,
        var(--red),
        var(--blue)
    );

    box-shadow:
        0 20px 45px rgba(227,6,45,0.18),
        0 10px 30px rgba(31,78,168,0.12);
}

/* CONTENT */
.process-card h3{
    font-size:28px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.process-card p{
    font-size:16px;
    line-height:1.8;
    color:var(--grey);
}

/* RESPONSIVE */
@media(max-width:1200px){
    .process-timeline{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .process-timeline{
        grid-template-columns:1fr;
    }

    .process-card{
        min-height:auto;
        padding:30px 22px;
    }

    .process-card h3{
        font-size:24px;
    }

    .process-number{
        width:72px;
        height:72px;
        font-size:24px;
        border-radius:18px;
    }
}

/* CAMPAIGNS */
.campaigns-section{
    padding:140px 0;
    background:#07111E;
}

.campaign-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    grid-auto-rows:250px;
}

.campaign-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.campaign-card.tall{
    grid-row:span 2;
}

.campaign-card.wide{
    grid-column:span 2;
}

.campaign-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s ease;
}

.campaign-card:hover img{
    transform:scale(1.1);
}

.campaign-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:24px;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(7,17,30,0.92)
    );
}

.campaign-overlay span{
    display:inline-block;
    width:max-content;
    padding:8px 14px;
    border-radius:50px;
    background:rgba(227,6,45,0.16);
    border:1px solid rgba(255,255,255,0.08);
    font-size:12px;
    font-weight:800;
    margin-bottom:14px;
}

.campaign-overlay h3{
    font-size:28px;
    font-weight:900;
}

/* BUTTON */
.campaign-btn-wrap{
    text-align:center;
    margin-top:50px;
}

.view-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    color:white;
    font-weight:700;
    box-shadow:0 18px 40px rgba(227,6,45,0.35);
    transition:0.3s;
}

.view-all-btn:hover{
    transform:translateY(-4px);
}

/* MODAL */
.campaign-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.campaign-modal.active{
    display:flex;
}

.modal-image{
    max-width:85%;
    max-height:85%;
    border-radius:20px;
}

.modal-close,
.modal-prev,
.modal-next{
    position:absolute;
    background:rgba(255,255,255,0.08);
    border:none;
    color:white;
    font-size:34px;
    width:60px;
    height:60px;
    border-radius:50%;
    cursor:pointer;
    backdrop-filter:blur(12px);
}

.modal-close{
    top:30px;
    right:30px;
}

.modal-prev{
    left:40px;
}

.modal-next{
    right:40px;
}

/* MOBILE */
@media(max-width:992px){
    .campaign-grid{
        grid-template-columns:1fr;
        grid-auto-rows:320px;
    }

    .campaign-card.tall,
    .campaign-card.wide{
        grid-column:auto;
        grid-row:auto;
    }
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */
.testimonial-section{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:#0A1422;
}

/* GLOW */
.testimonial-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

.glow-red{
    width:260px;
    height:260px;
    background:rgba(227,6,45,0.12);
    top:80px;
    left:80px;
}

.glow-blue{
    width:260px;
    height:260px;
    background:rgba(31,78,168,0.14);
    bottom:80px;
    right:80px;
}

/* WRAP */
.testimonial-slider-wrap{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
}

.testimonial-slider{
    overflow:hidden;
    width:100%;
}

.testimonial-track{
    display:flex;
    transition:transform 0.5s ease;
}

/* CARD */
.testimonial-card{
    min-width:100%;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:32px;
    padding:50px;
    /*box-shadow:0 25px 60px rgba(0,0,0,0.28);*/
}

.stars{
    font-size:24px;
    color:#FFD700;
    margin-bottom:22px;
}

.testimonial-card p{
    font-size:22px;
    line-height:1.9;
    color:white;
    margin-bottom:35px;
    max-width:900px;
}

/* CLIENT */
.client-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,0.1);
}

.client-info h4{
    font-size:20px;
    font-weight:800;
    margin-bottom:4px;
}

.client-info span{
    color:var(--grey);
    font-size:15px;
}

/* NAV */
.testimonial-nav{
    width:62px;
    height:62px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
    flex-shrink:0;
}

.testimonial-nav:hover{
    background:linear-gradient(135deg,var(--red),var(--blue));
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:768px){

    .testimonial-card{
        padding:28px;
    }

    .testimonial-card p{
        font-size:16px;
        line-height:1.8;
    }

    .testimonial-nav{
        width:50px;
        height:50px;
        font-size:16px;
    }

    .client-info img{
        width:56px;
        height:56px;
    }

    .client-info h4{
        font-size:16px;
    }
}

/* =========================================
   LEAD SECTION
========================================= */
.lead-section{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:
    linear-gradient(180deg,#07111E 0%, #0A1422 100%);
}

.lead-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

.lead-glow-red{
    width:260px;
    height:260px;
    background:rgba(227,6,45,0.14);
    top:60px;
    left:60px;
}

.lead-glow-blue{
    width:260px;
    height:260px;
    background:rgba(31,78,168,0.14);
    bottom:60px;
    right:60px;
}

/* GRID */
.lead-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* LEFT */
.lead-tag{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        rgba(227,6,45,0.18),
        rgba(31,78,168,0.16)
    );
    border:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:26px;
}

.lead-content h2{
    font-size:52px;
    font-weight:900;
    line-height:1.05;
    margin-bottom:24px;
    letter-spacing:-2px;
}

.lead-content h2 span{
    display:block;
    color:var(--red);
}

.lead-content p{
    font-size:16px;
    line-height:1.9;
    color:var(--grey);
    margin-bottom:32px;
}

.lead-points{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:35px;
}

.lead-point{
    display:flex;
    align-items:center;
    gap:14px;
}

.lead-point i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--red),var(--blue));
}

.lead-point span{
    font-weight:600;
}

/* BUTTON */
.lead-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 30px;
    border-radius:50px;
    background:#25D366;
    color:white;
    font-weight:700;
    transition:0.3s;
}

.lead-whatsapp-btn:hover{
    transform:translateY(-4px);
}

/* FORM */
.lead-form-wrap{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border-radius:32px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,0.28);
}

.lead-form h3{
    font-size:32px;
    font-weight:900;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.05);
    color:white;
    font-size:15px;
    outline:none;
}

.form-group select option{
    background:#ffffff;
    color:#000000;
}

.form-group textarea{
    min-height:140px;
    resize:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:rgba(255,255,255,0.45);
}

.lead-submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,var(--red),#ff4a6d);
    color:white;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.lead-submit-btn:hover{
    transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:992px){
    .lead-grid{
        grid-template-columns:1fr;
    }

    .lead-content h2{
        font-size:46px;
    }
}

@media(max-width:768px){
    .lead-form-wrap{
        padding:28px;
    }

    .lead-content h2{
        font-size:34px;
    }
}

/* =========================================
   FOOTER
========================================= */
.main-footer{
    position:relative;
    background:#030A14;
    padding-top:0;
    overflow:hidden;
}

.footer-top-line{
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--red),
        var(--blue),
        var(--red)
    );
}

/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:50px;
    padding:90px 0 60px;
}

/* BRAND */
.footer-brand img{
    height:72px;
    margin-bottom:24px;
}

.footer-brand p{
    color:var(--grey);
    line-height:1.9;
    font-size:16px;
    margin-bottom:28px;
    max-width:420px;
}

/* SOCIAL */
.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    transition:0.3s ease;
}

.footer-social a:hover{
    background:linear-gradient(135deg,var(--red),var(--blue));
    transform:translateY(-4px);
}

/* HEADINGS */
.footer-col h4{
    font-size:22px;
    font-weight:800;
    margin-bottom:24px;
}

/* LINKS */
.footer-col ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-col a,
.footer-col span{
    color:var(--grey);
    transition:0.3s;
    font-size:15px;
}

.footer-col a:hover{
    color:white;
    padding-left:6px;
}

/* CONTACT */
.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.footer-contact i{
    color:var(--red);
    margin-top:3px;
    font-size:16px;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.06);
    padding:26px 0;
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,0.55);
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
        padding:70px 0 50px;
    }

    .footer-brand img{
        height:60px;
    }
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:68px;
    height:68px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:white;
    font-size:34px;
    z-index:9999;
    box-shadow:0 20px 45px rgba(37,211,102,0.35);
    animation:waPulse 2s infinite;
}

@keyframes waPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);}
    70%{box-shadow:0 0 0 18px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* BACK TO TOP */
.back-to-top{
    position:fixed;
    right:25px;
    bottom:110px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,var(--red),var(--blue));
    color:white;
    font-size:20px;
    cursor:pointer;
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:0.3s;
    box-shadow:0 20px 45px rgba(227,6,45,0.25);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* PRELOADER */
.preloader{
    position:fixed;
    inset:0;
    background:#07111E;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    transition:0.6s ease;
}

.preloader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-logo img{
    width:140px;
    animation:loaderZoom 1.6s infinite alternate;
}

@keyframes loaderZoom{
    from{
        transform:scale(0.9);
        opacity:0.6;
    }
    to{
        transform:scale(1.08);
        opacity:1;
    }
}

/* MOBILE CTA */
.mobile-cta-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:none;
    z-index:9999;
}

.mobile-cta-bar a{
    flex:1;
    padding:16px;
    text-align:center;
    font-weight:700;
    color:white;
    background:linear-gradient(135deg,var(--red),var(--blue));
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

@media(max-width:768px){
    .mobile-cta-bar{
        display:flex;
    }

    .floating-whatsapp{
        bottom:90px;
    }

    .back-to-top{
        bottom:170px;
    }
}

/* SCROLL REVEAL */
.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* CUSTOM CURSOR */
body{
    cursor:auto;
}

@media(min-width:992px){
    body{
        cursor:none;
    }
}

.custom-cursor{
    width:28px;
    height:28px;
    border-radius:50%;
    position:fixed;
    top:0;
    left:0;
    pointer-events:none;
    z-index:999999;
    background:radial-gradient(circle,var(--red),var(--blue));
    mix-blend-mode:screen;
    transform:translate(-50%,-50%);
    transition:transform 0.08s linear;
    box-shadow:
        0 0 25px rgba(227,6,45,0.4),
        0 0 35px rgba(31,78,168,0.25);
}

@media(max-width:768px){
    .custom-cursor{
        display:none;
    }

    body{
        cursor:auto;
    }
}

.magnetic{
    transition:transform 0.18s ease;
}

/* POPUP */
.quote-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.quote-popup.active{
    display:flex;
}

.popup-box{
    width:100%;
    max-width:520px;
    background:#07111E;
    padding:40px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.08);
    position:relative;
}

.popup-box h3{
    font-size:34px;
    margin-bottom:25px;
}

.popup-box input{
    width:100%;
    padding:18px;
    margin-bottom:16px;
    border-radius:16px;
    border:none;
    background:rgba(255,255,255,0.08);
    color:white;
}

.popup-box button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,var(--red),var(--blue));
    color:white;
    font-weight:700;
}

.popup-close{
    position:absolute;
    top:15px;
    right:15px;
    width:48px !important;
    height:48px;
    border-radius:50%;
}

/* =========================================
   INNER PAGE HERO
========================================= */
.inner-hero{
    position:relative;
    padding:180px 0 120px;
    overflow:hidden;
    background:
    linear-gradient(180deg, #07111E 0%, #0A1422 100%);
    text-align:center;
}

.inner-hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    pointer-events:none;
}

.inner-hero .glow-red{
    width:260px;
    height:260px;
    background:rgba(227,6,45,0.14);
    top:60px;
    left:80px;
}

.inner-hero .glow-blue{
    width:260px;
    height:260px;
    background:rgba(31,78,168,0.14);
    bottom:40px;
    right:80px;
}

.inner-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.inner-hero-content span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        rgba(227,6,45,0.18),
        rgba(31,78,168,0.16)
    );
    border:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:28px;
}

.inner-hero-content h1{
    font-size:72px;
    font-weight:900;
    line-height:1.05;
    margin-bottom:22px;
    letter-spacing:-2px;
}

.inner-hero-content h1 span{
    display:block;
    background:none;
    border:none;
    padding:0;
    margin:0;
    color:var(--red);
    font-size:inherit;
}

.inner-hero-content p{
    font-size:20px;
    line-height:1.8;
    color:var(--grey);
}

/* =========================================
   COMPANY STORY
========================================= */
.company-story{
    padding:140px 0;
    background:#07111E;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.story-content h2{
    font-size:58px;
    font-weight:900;
    line-height:1.08;
    margin-bottom:24px;
    letter-spacing:-2px;
}

.story-content h2 span{
    display:block;
    color:var(--red);
}

.story-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--grey);
    margin-bottom:18px;
}

.story-image{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,0.35);
    border:1px solid rgba(255,255,255,0.06);
}

.story-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* =========================================
   MISSION SECTION
========================================= */
.mission-section{
    padding:120px 0;
    background:#0A1422;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.mission-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:40px;
    transition:0.35s ease;
    text-align:center;
}

.mission-card:hover{
    transform:translateY(-10px);
    border-color:rgba(227,6,45,0.2);
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.mission-card i{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:24px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:white;
    background:linear-gradient(135deg,var(--red),var(--blue));
}

.mission-card h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:16px;
}

.mission-card p{
    color:var(--grey);
    line-height:1.8;
}

/* =========================================
   ABOUT CTA
========================================= */
.about-cta{
    padding:120px 0;
    background:#07111E;
}

.about-cta-box{
    background:
    linear-gradient(
        135deg,
        rgba(227,6,45,0.15),
        rgba(31,78,168,0.12)
    );
    border:1px solid rgba(255,255,255,0.08);
    border-radius:32px;
    padding:80px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,0.3);
}

.about-cta-box h2{
    font-size:56px;
    font-weight:900;
    margin-bottom:20px;
    letter-spacing:-2px;
}

.about-cta-box p{
    font-size:20px;
    color:var(--grey);
    margin-bottom:30px;
}

/* ACTIVE NAV */
.desktop-nav a.active{
    color:var(--red);
}

.desktop-nav a.active::after{
    width:100%;
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:1200px){
    .inner-hero-content h1{
        font-size:58px;
    }

    .story-content h2{
        font-size:48px;
    }
}

@media(max-width:992px){
    .story-grid{
        grid-template-columns:1fr;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .about-cta-box{
        padding:50px;
    }
}

@media(max-width:768px){
    .inner-hero{
        padding:150px 0 90px;
    }

    .inner-hero-content h1{
        font-size:40px;
    }

    .inner-hero-content p{
        font-size:16px;
    }

    .story-content h2{
        font-size:36px;
    }

    .about-cta-box h2{
        font-size:34px;
    }

    .about-cta-box p{
        font-size:16px;
    }

    .about-cta-box{
        padding:35px 25px;
    }
}

/* SERVICES PAGE */
.services-page-section{
    padding:140px 0;
    background:#07111E;
}

.service-benefits{
    padding:120px 0;
    background:#0A1422;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.benefit-box{
    text-align:center;
    padding:40px;
    border-radius:28px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.benefit-box i{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:24px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    background:linear-gradient(135deg,var(--red),var(--blue));
}

.benefit-box h3{
    font-size:26px;
    margin-bottom:14px;
}

.benefit-box p{
    color:var(--grey);
    line-height:1.8;
}

@media(max-width:992px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
}

/* CAMPAIGN PAGE */
.campaign-page-section{
    padding:140px 0;
    background:#07111E;
}

.campaign-filter{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.filter-btn{
    padding:14px 24px;
    border:none;
    border-radius:50px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    cursor:pointer;
    font-weight:700;
    transition:0.3s;
}

.filter-btn.active,
.filter-btn:hover{
    background:linear-gradient(135deg,var(--red),var(--blue));
}

.campaign-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    grid-auto-rows:250px;
}

@media(max-width:992px){
    .campaign-page-grid{
        grid-template-columns:1fr;
        grid-auto-rows:320px;
    }
}

/* CONTACT PAGE */
.contact-page-section{
    padding:140px 0;
    background:#07111E;
}

.contact-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:40px;
    align-items:start;
}

.contact-info-wrap{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

@media(max-width:768px){
    .contact-info-wrap{
        grid-template-columns:1fr;
    }
}

.contact-info-card{
    padding:35px;
    border-radius:28px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
}

.contact-info-card i{
    width:70px;
    height:70px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--red),var(--blue));
    font-size:26px;
    margin-bottom:22px;
}

.contact-info-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.contact-info-card a,
.contact-info-card p{
    color:var(--grey);
    line-height:1.8;
}

.contact-form-wrap{
    padding:40px;
    border-radius:32px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
}

.contact-form h3{
    font-size:34px;
    margin-bottom:28px;
}

/* MAP */
.map-section{
    height:500px;
    overflow:hidden;
}

.map-section iframe{
    width:100%;
    height:100%;
    border:none;
}

/* RESPONSIVE */
@media(max-width:992px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .contact-form-wrap{
        padding:25px;
    }

    .contact-form h3{
        font-size:26px;
    }

    .map-section{
        height:350px;
    }
}

.success-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;

    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:0.35s ease;
}

.success-popup.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.success-box{
    width:100%;
    max-width:520px;
    background:#07111E;
    padding:50px;
    border-radius:30px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    transform:translateY(30px);
    transition:0.35s ease;
}

.success-popup.active .success-box{
    transform:translateY(0);
}