/*==================================================
GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
ROOT
==================================================*/

:root{

    --primary:#071E3D;

    --secondary:#0B3C6F;

    --emerald:#00C853;

    --emerald-dark:#009944;

    --mint:#EAF8EF;

    --white:#ffffff;

    --light:#F7F9FC;

    --text:#243447;

    --gray:#6B7280;

    --shadow:0 25px 70px rgba(0,0,0,.15);

    --radius:24px;

    --transition:.35s ease;

}

/*==================================================
GENERAL
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

section{

    padding:110px 0;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*==================================================
BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:17px 36px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--emerald);

    color:#fff;

    box-shadow:

    0 18px 45px rgba(0,200,83,.28);

}

.btn-primary:hover{

    background:var(--emerald-dark);

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid rgba(255,255,255,.30);

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#08231B;

}

/*==================================================
CONTACT HERO
==================================================*/

.contact-hero{

    position:relative;

    overflow:hidden;

    padding-top:180px;

    padding-bottom:120px;

    background:

    linear-gradient(

    rgba(7,30,61,.88),

    rgba(5,26,46,.92)

    ),

    url("../images/contact/contact-bg.jpg")

    center center/cover;

}

/* Background Glow */

.contact-hero::before{

    content:"";

    position:absolute;

    width:850px;

    height:850px;

    border-radius:50%;

    left:-250px;

    top:-350px;

    background:

    radial-gradient(circle,

    rgba(0,200,83,.18),

    transparent 72%);

}
/*==================================================
HERO GRID
==================================================*/

.contact-hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

    position:relative;

    z-index:2;

}


/*==================================================
LEFT CONTENT
==================================================*/

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(0,200,83,.12);

    border:1px solid rgba(0,200,83,.22);

    color:#6CF596;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:28px;

}

.hero-tag i{

    color:#00C853;

}

.contact-content h1{

    color:#fff;

    font-size:4rem;

    line-height:1.1;

    font-weight:800;

    margin-bottom:28px;

}

.contact-content h1 span{

    color:#00C853;

}

.contact-content p{

    color:#DCE7E2;

    font-size:1.15rem;

    line-height:1.9;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


/*==================================================
CONTACT CARD
==================================================*/

.contact-card{

    position:relative;

    background:rgba(9,36,27,.94);

    border:1px solid rgba(0,200,83,.18);

    border-radius:30px;

    padding:45px;

    backdrop-filter:blur(12px);

    box-shadow:

        0 30px 80px rgba(0,0,0,.35),

        0 0 40px rgba(0,200,83,.10);

    overflow:hidden;

}

/* Green glow */

.contact-card::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    right:-180px;

    top:-180px;

    background:

    radial-gradient(circle,

    rgba(0,200,83,.18),

    transparent 72%);

}

.contact-card h3{

    color:#fff;

    font-size:1.8rem;

    margin-bottom:35px;

    position:relative;

}

.contact-card h3::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    margin-top:14px;

    background:#00C853;

    border-radius:30px;

}

.contact-card ul{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.contact-card li{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-card li i{

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#00C853;

    color:#fff;

    font-size:1.2rem;

    flex-shrink:0;

}

.contact-card strong{

    display:block;

    color:#fff;

    margin-bottom:6px;

    font-size:1rem;

}

.contact-card span{

    color:#D8E8DE;

    line-height:1.8;

    font-size:.98rem;

}


/*==================================================
HOVER
==================================================*/

.contact-card{

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:

        0 40px 90px rgba(0,0,0,.45),

        0 0 50px rgba(0,200,83,.18);

}
/*==================================================
CONTACT FORM SECTION
==================================================*/

.contact-form-section{

    background:linear-gradient(
    180deg,
    #F5FCF7 0%,
    #FFFFFF 100%);

}

/*==================================================
GRID
==================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:55px;

    align-items:start;

}

/*==================================================
LEFT FORM
==================================================*/

.contact-form-card{

    background:#fff;

    padding:55px;

    border-radius:32px;

    box-shadow:0 30px 80px rgba(0,0,0,.08);

}

.section-tag{

    display:inline-block;

    color:#00C853;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.contact-form-card h2{

    font-size:2.6rem;

    color:#08231B;

    margin-bottom:18px;

}

.contact-form-card p{

    color:#68796F;

    line-height:1.8;

    margin-bottom:40px;

}

/*==================================================
FORM GRID
==================================================*/

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.input-group{

    position:relative;

    margin-bottom:22px;

}

.input-group i{

    position:absolute;

    left:22px;

    top:50%;

    transform:translateY(-50%);

    color:#00C853;

    font-size:1rem;

}

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    border:2px solid #E6F3EB;

    background:#fff;

    border-radius:18px;

    padding:18px 22px 18px 58px;

    font-size:1rem;

    font-family:inherit;

    outline:none;

    transition:.35s ease;

}

.input-group textarea{

    resize:none;

    padding-top:22px;

}

.input-group.textarea i{

    top:28px;

    transform:none;

}

.input-group.full{

    grid-column:1/-1;

}

/*==================================================
FOCUS
==================================================*/

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#00C853;

    box-shadow:

    0 0 0 5px rgba(0,200,83,.10);

}

/*==================================================
BUTTON
==================================================*/

.contact-form-card .btn{

    margin-top:10px;

}

/*==================================================
BUSINESS CARD
==================================================*/

.business-card{

    background:#0B2A22;

    border-radius:32px;

    padding:50px 40px;

    color:#fff;

    box-shadow:

    0 35px 80px rgba(0,0,0,.20);

    position:sticky;

    top:120px;

}

.business-card h3{

    font-size:2rem;

    margin-bottom:35px;

}

.business-item{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

.business-item:last-child{

    margin-bottom:0;

}

.business-item i{

    width:58px;

    height:58px;

    background:#00C853;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:1.2rem;

    flex-shrink:0;

}

.business-item h4{

    margin-bottom:8px;

    color:#fff;

}

.business-item p{

    color:#D8E8DE;

    line-height:1.8;

}
/*==================================================
GLOBAL OFFICES
==================================================*/

.global-offices{

    background:#EAF8EF;

}

.section-title{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:#00C853;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.section-title h2{

    font-size:3rem;

    color:#08231B;

    margin-bottom:22px;

}

.section-title p{

    color:#68796F;

    line-height:1.9;

}

.office-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.office-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:

    0 25px 70px rgba(0,0,0,.08);

    transition:.35s ease;

}

.office-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 35px 90px rgba(0,0,0,.16);

}

.office-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.office-content{

    padding:35px;

}

.office-country{

    display:inline-block;

    padding:8px 18px;

    background:#EAF8EF;

    border-radius:50px;

    color:#00A844;

    font-weight:600;

    margin-bottom:20px;

}

.office-content h3{

    color:#08231B;

    margin-bottom:18px;

}

.office-content p{

    color:#68796F;

    line-height:1.8;

    margin-bottom:25px;

}

.office-content ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.office-content li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#123529;

    font-weight:500;

}

.office-content li i{

    color:#00C853;

}


/*==================================================
FINAL CTA
==================================================*/

.contact-cta{

    background:

    linear-gradient(
    135deg,
    #07281D,
    #0C3528);

}

.contact-cta-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(0,200,83,.15);

    border-radius:34px;

    padding:80px;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

    backdrop-filter:blur(10px);

}

.cta-content span{

    display:inline-block;

    color:#69F090;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.cta-content h2{

    color:#fff;

    font-size:3.2rem;

    margin-bottom:25px;

}

.cta-content p{

    color:#D9E7DE;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


/*==================================================
STATS
==================================================*/

.cta-stats{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.stat-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:30px;

    text-align:center;

}

.stat-card h3{

    color:#00C853;

    font-size:2rem;

    margin-bottom:10px;

}

.stat-card p{

    color:#fff;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.contact-hero-grid,
.contact-grid,
.contact-cta-box{

grid-template-columns:1fr;

}

.office-grid{

grid-template-columns:repeat(2,1fr);

}

.business-card{

position:relative;

top:0;

}

}

@media(max-width:768px){

.contact-content h1{

font-size:2.8rem;

}

.form-grid{

grid-template-columns:1fr;

}

.office-grid{

grid-template-columns:1fr;

}

.contact-form-card,
.business-card,
.contact-cta-box{

padding:35px;

}

.hero-buttons,
.cta-buttons{

flex-direction:column;

}

.btn{

justify-content:center;

width:100%;

}

}
/*=========================================
FIX CONTACT PAGE HEADER
=========================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#071E3D !important;

    backdrop-filter:none !important;

    -webkit-backdrop-filter:none !important;

    border-bottom:2px solid rgba(0,200,83,.45);

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

/* Keep hero below fixed header */

.contact-hero{

    padding-top:170px;

}
/*=========================================
FINAL HEADER FIX
=========================================*/

/* Hero stays below header */
.contact-hero{
    position:relative;
    z-index:1;
}

/* Background glow stays behind everything */
.contact-hero::before{
    z-index:0;
    pointer-events:none;
}

/* Hero content */
.contact-hero .container{
    position:relative;
    z-index:2;
}

/* Header always on top */
.header{
    z-index:99999 !important;
    background:#071C2C !important;
    opacity:1 !important;
}

.header *{
    opacity:1 !important;
}
/*=========================================
FORCE HEADER TEXT TO WHITE
=========================================*/

.header .logo-text h2{
    color:#ffffff !important;
}

.header .logo-text span{
    color:#A8E5BC !important;
}

.header nav a{
    color:#ffffff !important;
}

.header nav a:hover,
.header nav a.active{
    color:#69F090 !important;
}

.header .consult-btn{
    color:#ffffff !important;
}
/*==========================================
ANIMATED HERO PARTICLES
==========================================*/

.contact-hero::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(circle,rgba(0,200,83,.18) 1px,transparent 2px);

    background-size:90px 90px;

    opacity:.35;

    animation:heroParticles 18s linear infinite;

    pointer-events:none;

}

@keyframes heroParticles{

from{

transform:translateY(0);

}

to{

transform:translateY(-90px);

}

}
.contact-card{

animation:contactFloat 7s ease-in-out infinite;

}

@keyframes contactFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}
.office-card{

overflow:hidden;

position:relative;

}

.office-card img{

transition:.8s ease;

}

.office-card:hover img{

transform:scale(1.08);

}

.office-card::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:70%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.28),

transparent);

transition:.8s;

z-index:3;

}

.office-card:hover::before{

left:140%;

}
.business-card{

position:relative;

overflow:hidden;

}

.business-card::before{

content:"";

position:absolute;

width:380px;

height:380px;

border-radius:50%;

background:

radial-gradient(circle,

rgba(0,200,83,.16),

transparent 72%);

right:-160px;

bottom:-160px;

}
.input-group input,
.input-group textarea,
.input-group select{

transition:.35s;

}

.input-group:hover input,
.input-group:hover textarea,
.input-group:hover select{

border-color:#00C853;

}
.contact-cta{

position:relative;

overflow:hidden;

}

.contact-cta::before{

content:"";

position:absolute;

width:700px;

height:700px;

border-radius:50%;

background:

radial-gradient(circle,

rgba(0,200,83,.12),

transparent 72%);

right:-260px;

top:-260px;

}
.btn{

position:relative;

overflow:hidden;

}

.btn::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.25),

transparent);

transition:.7s;

}

.btn:hover::before{

left:100%;

}
.contact-card li i,
.business-item i{

transition:.35s;

}

.contact-card li:hover i,
.business-item:hover i{

transform:scale(1.12) rotate(8deg);

box-shadow:0 0 20px rgba(0,200,83,.45);

}
.global-offices{

position:relative;

overflow:hidden;

}

.global-offices::before{

content:"";

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(0,200,83,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(0,200,83,.03) 1px,transparent 1px);

background-size:80px 80px;

pointer-events:none;

}
/*==================================================
NEXUS CONTACT — PREMIUM DESKTOP POLISH
DO NOT DELETE EXISTING CSS
PASTE THIS AT THE VERY BOTTOM
==================================================*/

/*==================================================
1. CONTACT HERO — PREMIUM DEPTH
==================================================*/

.contact-hero{
    min-height:720px;
    display:flex;
    align-items:center;
    padding-top:175px;
    padding-bottom:120px;

    background:
        linear-gradient(
            115deg,
            rgba(4,18,31,.96) 0%,
            rgba(5,29,45,.88) 45%,
            rgba(4,35,34,.78) 100%
        ),
        url("../images/contact/contact-bg.jpg")
        center center/cover no-repeat;

    border-bottom:1px solid rgba(0,200,83,.14);
}


/* subtle technical grid */

.contact-hero .container{
    position:relative;
    z-index:5;
}

.contact-hero-grid{
    gap:90px;
}


/*==================================================
2. HERO TEXT
==================================================*/

.contact-content h1{
    font-size:clamp(3.4rem,5vw,5.3rem);
    letter-spacing:-2.5px;
    text-shadow:
        0 12px 40px rgba(0,0,0,.35);
}

.contact-content h1 span{
    display:block;
    background:linear-gradient(
        90deg,
        #00C853,
        #42F58A
    );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-content p{
    max-width:650px;
    font-size:1.08rem;
    color:#C9D9D4;
}


/*==================================================
3. HERO BADGE
==================================================*/

.hero-tag{
    position:relative;
    overflow:hidden;
    box-shadow:
        0 0 30px rgba(0,200,83,.08);
    transition:.35s ease;
}

.hero-tag:hover{
    transform:translateY(-3px);
    border-color:rgba(0,200,83,.5);
    box-shadow:
        0 0 30px rgba(0,200,83,.18);
}


/*==================================================
4. PREMIUM BUTTONS
==================================================*/

.contact-hero .btn,
.contact-form-card .btn,
.contact-cta .btn{
    min-height:58px;
    padding:16px 30px;
    font-weight:700;
    letter-spacing:.1px;
    position:relative;
    overflow:hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.contact-hero .btn-primary,
.contact-form-card .btn-primary,
.contact-cta .btn-primary{
    background:linear-gradient(
        135deg,
        #00C853,
        #00E676
    );

    box-shadow:
        0 14px 35px rgba(0,200,83,.25);
}

.contact-hero .btn-primary:hover,
.contact-form-card .btn-primary:hover,
.contact-cta .btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:
        0 20px 50px rgba(0,200,83,.38);
}

.contact-hero .btn-outline,
.contact-cta .btn-outline{
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(10px);
}

.contact-hero .btn-outline:hover,
.contact-cta .btn-outline:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.09);
    border-color:rgba(0,200,83,.55);
    color:#fff;
}


/*==================================================
5. CONTACT CENTER CARD
==================================================*/

.contact-card{
    background:
        linear-gradient(
            145deg,
            rgba(14,49,54,.94),
            rgba(5,28,39,.96)
        );

    border:1px solid rgba(0,200,83,.25);

    box-shadow:
        0 35px 90px rgba(0,0,0,.42),
        inset 0 1px 0 rgba(255,255,255,.05);

    transform:translateY(0);
}

.contact-card:hover{
    transform:translateY(-12px);
    border-color:rgba(0,200,83,.45);
}

.contact-card h3{
    letter-spacing:.5px;
}

.contact-card li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
}

.contact-card li:last-child{
    border-bottom:none;
}

.contact-card li i{
    box-shadow:
        0 8px 25px rgba(0,200,83,.18);
    transition:.35s ease;
}

.contact-card li:hover i{
    transform:scale(1.1) rotate(5deg);
    box-shadow:
        0 0 30px rgba(0,200,83,.35);
}


/*==================================================
6. FORM SECTION
==================================================*/

.contact-form-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0,200,83,.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F4FBF7 0%,
            #FFFFFF 70%
        );
}

.contact-form-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(
            rgba(0,100,70,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,100,70,.035) 1px,
            transparent 1px
        );

    background-size:70px 70px;
    pointer-events:none;
}


/*==================================================
7. FORM CARD
==================================================*/

.contact-form-card{
    position:relative;
    z-index:2;

    border:1px solid rgba(0,120,80,.08);

    box-shadow:
        0 30px 80px rgba(4,40,25,.09),
        0 4px 15px rgba(0,0,0,.03);

    transition:.4s ease;
}

.contact-form-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 40px 100px rgba(4,40,25,.13);
}

.contact-form-card h2{
    letter-spacing:-1px;
}


/*==================================================
8. INPUTS — PREMIUM INTERACTION
==================================================*/

.input-group{
    transition:.3s ease;
}

.input-group input,
.input-group select,
.input-group textarea{
    background:#FBFEFC;
    border:1px solid #DDEDE4;
    box-shadow:inset 0 1px 2px rgba(0,0,0,.02);
}

.input-group input:hover,
.input-group select:hover,
.input-group textarea:hover{
    border-color:#A9DCC0;
    background:#fff;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    background:#fff;
    border-color:#00C853;

    box-shadow:
        0 0 0 4px rgba(0,200,83,.09),
        0 10px 30px rgba(0,80,45,.05);
}

.input-group:focus-within i{
    color:#00E676;
    transform:translateY(-50%) scale(1.12);
}


/*==================================================
9. BUSINESS INFORMATION
==================================================*/

.business-card{
    background:
        linear-gradient(
            145deg,
            #0A3027,
            #061D27
        );

    border:1px solid rgba(0,200,83,.17);

    box-shadow:
        0 30px 80px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.04);

    transition:.4s ease;
}

.business-card:hover{
    transform:translateY(-6px);

    border-color:rgba(0,200,83,.32);

    box-shadow:
        0 40px 100px rgba(0,0,0,.32),
        0 0 45px rgba(0,200,83,.07);
}

.business-item{
    padding:18px 0;
    margin-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.055);
}

.business-item:last-child{
    border-bottom:none;
}

.business-item i{
    box-shadow:
        0 8px 25px rgba(0,200,83,.18);
}


/*==================================================
10. GLOBAL OFFICES
==================================================*/

.global-offices{
    background:
        linear-gradient(
            180deg,
            #EAF8EF 0%,
            #F6FCF8 100%
        );
}

.section-title span{
    padding:8px 18px;
    border-radius:50px;

    background:rgba(0,200,83,.08);
    border:1px solid rgba(0,200,83,.12);
}

.section-title h2{
    letter-spacing:-1.5px;
}


/*==================================================
11. OFFICE CARDS
==================================================*/

.office-card{
    border:1px solid rgba(0,80,50,.07);

    box-shadow:
        0 25px 65px rgba(0,50,30,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.office-card:hover{
    transform:translateY(-14px);

    border-color:rgba(0,200,83,.3);

    box-shadow:
        0 35px 90px rgba(0,50,30,.15);
}

.office-card img{
    height:260px;
    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}

.office-card:hover img{
    transform:scale(1.06);
    filter:saturate(1.08);
}

.office-content{
    background:#fff;
}

.office-country{
    transition:.35s ease;
}

.office-card:hover .office-country{
    background:#00C853;
    color:#fff;
}

.office-content li{
    transition:.3s ease;
}

.office-content li:hover{
    color:#00A844;
    transform:translateX(4px);
}


/*==================================================
12. FINAL CTA
==================================================*/

.contact-cta{
    position:relative;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(0,200,83,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #041B2A 0%,
            #072C28 55%,
            #061D2A 100%
        );
}

.contact-cta-box{
    position:relative;
    overflow:hidden;

    border:1px solid rgba(0,200,83,.22);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.contact-cta-box::after{
    content:"";
    position:absolute;

    width:300px;
    height:300px;

    right:-120px;
    bottom:-150px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(0,200,83,.16),
            transparent 70%
        );

    pointer-events:none;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content h2{
    letter-spacing:-1.5px;
}

.cta-stats{
    position:relative;
    z-index:2;
}

.stat-card{
    transition:.35s ease;
    backdrop-filter:blur(8px);
}

.stat-card:hover{
    transform:translateY(-7px);
    border-color:rgba(0,200,83,.28);

    background:rgba(0,200,83,.08);

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);
}


/*==================================================
13. PREMIUM SECTION TRANSITIONS
==================================================*/

.contact-form-section,
.global-offices,
.contact-cta{
    border-top:1px solid rgba(0,0,0,.035);
}


/*==================================================
14. REDUCE MOTION FOR ACCESSIBILITY
==================================================*/

@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        animation:none !important;
        transition:none !important;
    }

}
/*==================================================
CONTACT HERO — COMPACT FULL-VIEW VERSION
==================================================*/

.contact-hero{
    min-height:calc(100vh - 105px);
    height:auto;

    padding-top:70px;
    padding-bottom:70px;

    display:flex;
    align-items:center;
}


/* Keep the two sides balanced */

.contact-hero-grid{
    align-items:center;
    gap:70px;
}


/*==================================================
HERO LEFT SIDE
==================================================*/

.contact-content h1{
    font-size:clamp(3rem,4.5vw,4.6rem);
    line-height:1.02;
    letter-spacing:-2px;

    margin-bottom:22px;
}

.contact-content p{
    font-size:1rem;
    line-height:1.7;

    max-width:600px;

    margin-bottom:28px;
}


/* smaller badge */

.hero-tag{
    padding:10px 20px;
    margin-bottom:25px;
}


/* buttons */

.contact-hero .hero-buttons{
    gap:14px;
}

.contact-hero .btn{
    min-height:52px;
    padding:14px 25px;
}


/*==================================================
CONTACT CENTER — COMPACT
==================================================*/

.contact-card{
    padding:34px 38px;

    max-height:none;
}

.contact-card h3{
    font-size:2rem;
    margin-bottom:24px;
}


/* Contact information */

.contact-card li{
    padding:11px 0;
}

.contact-card li i{
    width:52px;
    height:52px;
    min-width:52px;
    font-size:18px;
}

.contact-card li strong{
    font-size:1rem;
}

.contact-card li span,
.contact-card li a{
    font-size:.95rem;
    line-height:1.55;
}


/*==================================================
MAKE THE HERO FIT A NORMAL LAPTOP SCREEN
==================================================*/

@media (min-width:1200px){

    .contact-hero{
        min-height:calc(100vh - 105px);
        max-height:760px;
    }

    .contact-hero-grid{
        transform:translateY(-5px);
    }

    .contact-card{
        padding:30px 34px;
    }

    .contact-card h3{
        font-size:1.8rem;
        margin-bottom:18px;
    }

    .contact-card li{
        padding:9px 0;
    }

    .contact-card li i{
        width:48px;
        height:48px;
        min-width:48px;
    }
}


/*==================================================
EXTRA LARGE SCREENS
==================================================*/

@media (min-width:1400px){

    .contact-hero{
        min-height:calc(100vh - 105px);
        max-height:780px;
    }

    .contact-content h1{
        font-size:4.7rem;
    }

    .contact-content p{
        max-width:620px;
    }
}
/*==================================================
CONTACT HERO — LOWER CONTENT SLIGHTLY
==================================================*/

@media (min-width: 992px){

    .contact-hero-grid{
        transform: translateY(35px);
    }

}
/*==================================================
CONTACT PAGE — MOBILE RESPONSIVE
==================================================*/

@media (max-width: 991px){

    /* HERO */

    .contact-hero{
        min-height:auto;
        height:auto;

        padding-top:120px;
        padding-bottom:70px;
    }

    .contact-hero-grid{
        grid-template-columns:1fr;
        gap:45px;

        transform:none;
    }

    /* LEFT CONTENT */

    .contact-content{
        text-align:center;
    }

    .contact-content h1{
        font-size:clamp(2.7rem,8vw,4rem);
        line-height:1.05;
        letter-spacing:-1px;

        margin-bottom:22px;
    }

    .contact-content p{
        font-size:16px;
        line-height:1.75;

        max-width:620px;
        margin:0 auto 28px;
    }

    .hero-tag{
        display:inline-flex;
        margin-bottom:25px;
    }

    /* BUTTONS */

    .contact-hero .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

}


/*==================================================
TABLET
==================================================*/

@media (max-width:768px){

    .contact-hero{
        padding-top:105px;
        padding-bottom:60px;
    }

    .contact-hero-grid{
        gap:35px;
    }

    .contact-content h1{
        font-size:42px;
        line-height:1.08;
    }

    .contact-content p{
        font-size:15px;
        line-height:1.7;
    }

    .contact-hero .hero-buttons{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    .contact-hero .hero-buttons .btn{
        width:100%;
        max-width:340px;
    }


    /* CONTACT CENTER */

    .contact-card{
        width:100%;
        padding:30px 25px;

        border-radius:24px;
    }

    .contact-card h3{
        font-size:28px;
        margin-bottom:22px;
    }

    .contact-card li{
        padding:15px 0;
    }

    .contact-card li i{
        width:48px;
        height:48px;
        min-width:48px;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .contact-hero{
        padding-top:95px;
        padding-bottom:50px;
    }

    .contact-content h1{
        font-size:34px;
        line-height:1.1;
        letter-spacing:-.5px;
    }

    .contact-content p{
        font-size:15px;
        line-height:1.75;
    }

    .hero-tag{
        font-size:11px;
        padding:9px 16px;
    }


    /* BUTTONS */

    .contact-hero .hero-buttons{
        gap:12px;
    }

    .contact-hero .hero-buttons .btn{
        min-height:52px;
        padding:14px 20px;
    }


    /* CONTACT CARD */

    .contact-card{
        padding:25px 20px;
        border-radius:20px;
    }

    .contact-card h3{
        font-size:25px;
    }

    .contact-card li{
        gap:15px;
        padding:14px 0;
    }

    .contact-card li i{
        width:44px;
        height:44px;
        min-width:44px;
        font-size:16px;
    }

    .contact-card li strong{
        font-size:15px;
    }

    .contact-card li span,
    .contact-card li a{
        font-size:14px;
        line-height:1.6;
    }

}


/*==================================================
VERY SMALL PHONES
==================================================*/

@media (max-width:400px){

    .contact-hero{
        padding-top:90px;
    }

    .contact-content h1{
        font-size:30px;
    }

    .contact-content p{
        font-size:14px;
    }

    .contact-card{
        padding:22px 17px;
    }

    .contact-card h3{
        font-size:23px;
    }

    .contact-card li i{
        width:40px;
        height:40px;
        min-width:40px;
    }
}