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

:root{

    --navy:#0B2D5E;
    --navy-deep:#071C3C;

    --blue:#1565C0;
    --blue-light:#42A5F5;

    --accent:#E8401C;
    --orange:#FF7B57;

    --white:#ffffff;
    --bg:#F7FAFF;

    --border:#E3E8F2;

    --text:#1F2B3D;
    --text-light:#667085;

}

/* =========================================================
GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    letter-spacing:-1px;
}

.container-fluid{
    width:100%;
    max-width: 2500px;
    margin:auto;
    padding-inline:30px !important;
}

@media(max-width:991px){

    .container-fluid{
        padding-inline:20px !important;
    }

}

/* =========================================================
SCROLL PROGRESS
========================================================= */

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:3px;
    background:var(--orange);
    z-index:99999;
}

/* =========================================================
BACK TO TOP
========================================================= */

.btt{
    position:fixed;
    right:30px;
    bottom:30px;
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;
    opacity:0;
    transform:translateY(20px);
    transition:.35s ease;
    box-shadow:0 18px 40px rgba(232,64,28,.25);
}

.btt.vis{
    opacity:1;
    transform:translateY(0);
}

.btt:hover{
    transform:translateY(-5px);
}


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

.hero{
    min-height:950px;
    position:relative;
    overflow:hidden;
    background:var(--navy);
    display:flex;
    align-items:center;
    padding-top:130px;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.55;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(7,27,52,.45) 0%,
        rgba(7,27,52,.35) 50%,
        rgba(7,27,52,.55) 100%
    );
}

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

.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:60px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
}

.hero-eyebrow span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--orange);
}

.hero h1{
    line-height:.95;
    max-width: 1000px;
    font-size: clamp(1.5rem, 3.2vw, 5.5rem);
    line-height: 1.03;
    color: #fff;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero h1 em{
    color:#7CC8FF;
    font-style:italic;
}

.hero-sub{
    max-width: 1400px;
    color:rgba(255,255,255,.88);
    font-size: 1.4rem;
    line-height:1.9;
    margin-bottom:50px;
}

.hero-chips{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.hero-chip{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 26px;
    border-radius:60px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    backdrop-filter:blur(10px);
    transition:.35s ease;
}

.hero-chip:hover{
    transform:translateY(-5px);
    background:rgba(28,134,255,.18);
}

.hero-chip i{
    color:#7CC8FF;
}

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

.stats-strip{
    background:linear-gradient(135deg,#1565C0,#0B2D5E);
    padding:60px 0;
}

.stat-item{
    text-align:center;
}

.stat-num{
    font-size:clamp(2.5rem,5vw,4rem);
    color:#fff;
    line-height:1;
    margin-bottom:10px;
}

.stat-label{
    color:rgba(255,255,255,.75);
}

.stat-divider{
    width:1px;
    height:70px;
    background:rgba(255,255,255,.15);
}

/* =========================================================
SECTION
========================================================= */

.section-space{
    padding:120px 0;
}

.section-eyebrow{
    display:block;
    color:var(--orange);
    font-size:.82rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-title{
    font-size:clamp(2.8rem,5vw,5rem);
    line-height:1;
    margin-bottom:24px;
    color:var(--navy);
}

.section-title em{
    color:var(--blue);
    font-style:italic;
}

.section-sub{
    max-width:760px;
    margin:auto;
    color:var(--text-light);
    font-size:1.1rem;
    line-height:1.9;
}

/* =========================================================
SEARCH
========================================================= */

.country-search-wrap{
    position:relative;
    max-width:520px;
    margin:0 auto 42px;
}

.country-search{
    width:100%;
    height:68px;
    border-radius:70px;
    border:1px solid rgba(21,101,192,.12);
    background:#F7FBFF;
    padding:0 65px 0 28px;
    outline:none;
    transition:.3s ease;
}

.country-search:focus{
    background:#fff;
    border-color:var(--blue);
    box-shadow:0 0 0 6px rgba(21,101,192,.08);
}

.country-search-icon{
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    color:#8EA8C7;
}

/* =========================================================
FILTER
========================================================= */

.filter-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-bottom:70px;
}

.ftab{
    border:none;
    border-radius:60px;
    padding:14px 26px;
    background:#F5F9FF;
    border:1px solid rgba(21,101,192,.1);
    color:var(--text);
    font-weight:600;
    transition:.3s ease;
}

.ftab:hover{
    transform:translateY(-3px);
}

.ftab.active{
    background:var(--blue);
    color:#fff;
    border-color:var(--blue);
    box-shadow:0 12px 30px rgba(21,101,192,.28);
}

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

.countries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.country-card{
    background:#fff;
    border-radius:34px;
    padding:40px 28px;
    border:1px solid rgba(21,101,192,.08);
    box-shadow:0 10px 40px rgba(11,37,69,.05);
    transition:.4s ease;
    text-align:center;
}

.country-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 28px 70px rgba(11,37,69,.14);
}

.flag-wrap{
    width:180px;
    height:180px;
    border-radius:50%;
    overflow:hidden;
    margin:auto auto 28px;
    background:#EFF6FF;
}

.flag-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.country-card h5{
    font-size:1.6rem;
    margin-bottom:18px;
    color:var(--navy);
}

.country-region{
    display:inline-flex;
    padding:8px 18px;
    border-radius:60px;
    background:#EEF5FF;
    color:var(--blue);
    font-size:.76rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* =========================================================
OFFICES
========================================================= */

.office-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.office-box{
    background:#F8FBFF;
    border:1px solid rgba(21,101,192,.08);
    border-radius:24px;
    padding:24px;
    height:100%;
}

.office-text ul{
    margin:10px 0 0;
    padding-left:18px;
}

.office-text li{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:4px;
}

@media(max-width:768px){

    .office-grid{
        grid-template-columns:1fr;
    }

}



.offices-section{
    background:#F7FAFF;
}

.office-card{
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    border:1px solid rgba(21,101,192,.08);
    box-shadow:0 10px 40px rgba(11,37,69,.05);
    transition:.4s ease;
    height:100%;
}

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

.office-top{
    background:linear-gradient(135deg,var(--navy),#123862);
    padding:36px;
    display:flex;
    align-items:center;
    gap:22px;
}

.office-flag{
    width:80px;
    height:80px;
    border-radius:20px;
    overflow:hidden;
}

.office-flag img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.office-title h4{
    color:#fff;
    margin-bottom:6px;
}

.office-title span{
    color:rgba(255,255,255,.7);
    font-size:.8rem;
    letter-spacing:1px;
    text-transform:uppercase;
}

.office-body{
    padding:34px;
}

.office-info{
    display:flex;
    gap:18px;
    margin-bottom:24px;
}

.office-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#EEF6FF;
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
}

.office-text{
    color:var(--text-light);
    line-height:1.8;
}

.office-text strong{
    display:block;
    margin-bottom:6px;
    color:var(--navy);
}

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

.cta-section{
    padding:120px 0;
}

.cta-box{
    border-radius:40px;
    background:linear-gradient(135deg,var(--navy),#123862);
    padding:90px;
}

.cta-box h2{
    color:#fff;
    font-size:clamp(2.8rem,5vw,5rem);
    line-height:1;
    margin-bottom:24px;
}

.cta-box h2 em{
    color:#7CC8FF;
}

.cta-box p{
    color:rgba(255,255,255,.72);
    line-height:1.9;
    max-width:650px;
}

.btn-main{
    height:62px;
    padding:0 34px;
    border:none;
    border-radius:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    font-weight:700;
    transition:.35s ease;
}

.btn-white{
    background:#fff;
    color:var(--navy);
}

.btn-orange{
    background:linear-gradient(135deg,#FF7B57,#E8401C);
    color:#fff;
}

.btn-main:hover{
    transform:translateY(-4px);
}

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

@media(max-width:1200px){

    .countries-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:991px){

    .countries-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-box{
        padding:60px 32px;
    }

}

@media(max-width:768px){

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:3.3rem;
    }

    .countries-grid{
        grid-template-columns:1fr;
    }

    .hero-chip{
        width:100%;
        justify-content:center;
    }

}
