@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#0d3b86;
    --primary-dark:#08275c;
    --secondary:#ef233c;
    --dark:#101828;
    --text:#475467;
    --muted:#667085;
    --light:#f5f8ff;
    --white:#ffffff;
    --border:#e6eaf2;
    --shadow:0 18px 50px rgba(16,24,40,.10);
    --radius:24px;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
}

.container{
    width:min(1180px, 92%);
    margin:auto;
}

/* LOADER */

.site-loader{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.45s ease;
}

.loader-card{
    text-align:center;
}

.loader-card img{
    width:180px;
    height:180px;
    object-fit:contain;
    animation:loaderPulse 1.4s infinite;
}

.loader-card h2{
    color:var(--primary);
    font-size:30px;
}

.loader-line{
    width:150px;
    height:5px;
    background:#e9efff;
    border-radius:30px;
    margin:22px auto 0;
    overflow:hidden;
    position:relative;
}

.loader-line::after{
    content:"";
    position:absolute;
    left:-50%;
    top:0;
    width:50%;
    height:100%;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    border-radius:30px;
    animation:loadingLine 1s infinite;
}

@keyframes loadingLine{
    to{left:100%;}
}

@keyframes loaderPulse{
    50%{transform:scale(1.08);}
}

/* TOPBAR */

.top-info-bar{
    background:#fff;
    border-bottom:1px solid var(--border);
    font-size:13px;
    color:var(--muted);
    padding:8px 0;
    transition:.35s ease;
}

.top-info-bar.hide{
    margin-top:-42px;
    opacity:0;
}

.top-info-content{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
}

.top-info-content span{
    margin-right:18px;
}

.top-info-content i{
    color:var(--secondary);
    margin-right:6px;
}

/* NAVBAR */

/* =========================
   NAVBAR CLEAN FIX
========================= */

.main-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    box-shadow:0 8px 28px rgba(16,24,40,.06);
}

.nav-wrapper{
    min-height:104px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.site-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--dark);
    width:330px;
    flex:none;
}

.site-brand img{
    width:110px;
    height:90px;
    object-fit:contain;
    flex:none;
}

.site-brand strong{
    display:block;
    font-size:17px;
    line-height:1.15;
    font-weight:900;
    color:var(--primary-dark);
}

.site-brand small{
    display:block;
    margin-top:4px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex:1;
}

.main-nav a{
    color:#344054;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    position:relative;
    white-space:nowrap;
    transition:.3s;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.3s;
}

.main-nav a:hover{
    color:var(--primary);
}

.main-nav a:hover::after{
    width:100%;
}

.nav-apply-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    padding:15px 26px;
    border-radius:999px;
    font-size:15px;
    font-weight:900;
    white-space:nowrap;
    box-shadow:0 14px 30px rgba(239,35,60,.24);
    flex:none;
    transition:.3s;
}

.nav-apply-btn:hover{
    transform:translateY(-2px);
    background:#d90429;
}

.mobile-menu-btn{
    display:none;
}

/* TABLET */
@media(max-width:1200px){
    .site-brand{
        width:290px;
    }

    .site-brand img{
        width:92px;
        height:76px;
    }

    .site-brand strong{
        font-size:15px;
    }

    .main-nav{
        gap:16px;
    }

    .main-nav a{
        font-size:13px;
    }

    .nav-apply-btn{
        padding:13px 20px;
        font-size:14px;
    }
}

/* MOBILE */
@media(max-width:992px){
    .nav-wrapper{
        min-height:88px;
    }

    .site-brand{
        width:auto;
        max-width:260px;
    }

    .site-brand img{
        width:76px;
        height:64px;
    }

    .site-brand strong{
        font-size:14px;
    }

    .site-brand small{
        font-size:10px;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:46px;
        height:46px;
        border:none;
        border-radius:14px;
        background:var(--primary);
        color:#fff;
        font-size:18px;
        cursor:pointer;
    }

    .main-nav{
        position:fixed;
        top:88px;
        left:-100%;
        width:300px;
        height:calc(100vh - 88px);
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:6px;
        padding:22px;
        box-shadow:25px 0 60px rgba(16,24,40,.18);
        transition:.35s ease;
        z-index:99999;
        border-radius:0 24px 24px 0;
    }

    .main-nav.active{
        left:0;
    }

    .main-nav a{
        display:flex;
        align-items:center;
        gap:12px;
        width:100%;
        padding:15px 16px;
        border-radius:16px;
        font-size:15px;
    }

    .main-nav a::after{
        display:none;
    }

    .main-nav a:hover{
        background:#f8fafc;
        color:var(--secondary);
    }

    .main-nav a i{
        display:inline-flex;
        width:36px;
        height:36px;
        align-items:center;
        justify-content:center;
        border-radius:12px;
        background:#eef4ff;
        color:var(--primary);
    }

    .nav-apply-btn{
        display:none;
    }
}

/* HERO */

.hero-section{
    position:relative;
    padding:82px 0 60px;
    background:
        radial-gradient(circle at 8% 20%, rgba(13,59,134,.08), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    overflow:hidden;
}

.hero-shape{
    position:absolute;
    border-radius:999px;
    filter:blur(2px);
    opacity:.7;
}

.shape-one{
    width:160px;
    height:160px;
    background:rgba(239,35,60,.08);
    left:-70px;
    top:120px;
}

.shape-two{
    width:220px;
    height:220px;
    background:rgba(13,59,134,.08);
    right:-90px;
    bottom:60px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:54px;
    align-items:center;
}

.eyebrow,
.section-label{
    display:inline-flex;
    color:var(--secondary);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.7px;
    margin-bottom:15px;
}

.hero-text h1{
    font-size:58px;
    line-height:1.05;
    letter-spacing:-1.8px;
    color:var(--primary-dark);
    max-width:680px;
}

.hero-text p{
    margin-top:20px;
    color:var(--text);
    font-size:17px;
    line-height:1.8;
    max-width:610px;
}

.hero-actions{
    display:flex;
    gap:14px;
    align-items:center;
    flex-wrap:wrap;
    margin-top:32px;
}

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:15px 23px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    transition:.3s;
}

.primary-btn{
    background:var(--secondary);
    color:#fff;
    box-shadow:0 16px 30px rgba(239,35,60,.22);
}

.primary-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    background:#fff;
    color:var(--primary);
    border:1px solid var(--border);
    box-shadow:0 12px 28px rgba(16,24,40,.06);
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    border-radius:26px;
    box-shadow:var(--shadow);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:800;
    color:var(--primary-dark);
    box-shadow:var(--shadow);
}

.floating-card i{
    color:var(--secondary);
}

.card-one{
    left:-22px;
    bottom:40px;
}

.card-two{
    right:-16px;
    top:35px;
}

/* STATS */

.stats-section{
    padding:38px 0;
    background:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:1.4fr repeat(3,1fr);
    gap:20px;
    align-items:stretch;
}

.experience-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
    position:relative;
}

.experience-box h2{
    font-size:62px;
    line-height:1;
    color:var(--secondary);
    font-weight:900;
}

.experience-box p{
    font-size:22px;
    font-weight:900;
    color:var(--primary-dark);
    margin-top:8px;
}

.stat-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
    text-align:center;
}

.stat-card h3{
    font-size:34px;
    color:var(--primary);
    margin-bottom:8px;
}

.stat-card p{
    color:var(--muted);
    font-weight:700;
    font-size:14px;
}

/* ABOUT */

.about-section{
    padding:95px 0;
    background:var(--light);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr .85fr;
    gap:60px;
    align-items:center;
}

.about-content h2,
.section-heading h2,
.apply-text h2{
    font-size:42px;
    line-height:1.15;
    letter-spacing:-.8px;
    color:var(--primary-dark);
}

.about-content p{
    color:var(--text);
    line-height:1.8;
    margin:18px 0 26px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:30px;
}

.about-points div{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:15px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:800;
    color:var(--primary-dark);
}

.about-points i{
    color:var(--secondary);
}

.about-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:var(--shadow);
}

/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:740px;
    margin:0 auto 48px;
}

.section-heading span{
    color:var(--secondary);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.7px;
}

.section-heading h2{
    margin-top:10px;
}

.section-heading p{
    color:var(--muted);
    line-height:1.8;
    margin-top:12px;
}

/* DESTINATIONS */

.destination-section{
    padding:95px 0;
    background:#fff;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.destination-card{
    position:relative;
    height:260px;
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.destination-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.destination-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 30%,rgba(8,39,92,.88));
}

.destination-card:hover img{
    transform:scale(1.08);
}

.destination-info{
    position:absolute;
    left:22px;
    right:22px;
    bottom:20px;
    z-index:2;
    color:#fff;
}

.destination-info h3{
    font-size:24px;
    margin-bottom:7px;
}

.destination-info p{
    color:#e8eefc;
    font-size:13px;
    line-height:1.5;
}

/* PARTNERS */

.partners-section{
    padding:70px 0;
    background:var(--light);
}

.partner-logos{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
    align-items:center;
}

.partner-logo{
    height:86px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
    box-shadow:0 10px 26px rgba(16,24,40,.05);
}

.partner-logo img{
    max-width:100%;
    max-height:52px;
    object-fit:contain;
}

.partner-logo span{
    font-size:12px;
    text-align:center;
    font-weight:800;
    color:var(--primary-dark);
}

/* SERVICES */

.services-section{
    padding:95px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-image{
    height:170px;
    background:linear-gradient(135deg,#eef4ff,#fff4f5);
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-image i{
    font-size:44px;
    color:var(--primary);
}

.service-content{
    padding:22px;
}

.service-content span{
    color:var(--secondary);
    font-weight:900;
    font-size:13px;
}

.service-content h3{
    margin:8px 0 10px;
    font-size:20px;
    color:var(--primary-dark);
}

.service-content p{
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}

/* SUCCESS */

.success-section{
    padding:90px 0;
    background:var(--light);
}

.success-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.success-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.success-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.success-card div{
    padding:20px;
}

.success-card h3{
    font-size:20px;
    color:var(--primary-dark);
}

.success-card p{
    color:var(--muted);
    margin-top:7px;
    font-size:14px;
}

/* APPLY */

.apply-section{
    padding:95px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(13,59,134,.08), transparent 28%),
        #fff;
}

.apply-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:50px;
    align-items:center;
}

.apply-text span{
    color:var(--secondary);
    text-transform:uppercase;
    font-size:13px;
    font-weight:900;
}

.apply-text p{
    color:var(--muted);
    line-height:1.8;
    margin-top:16px;
}

.quick-form{
    background:#fff;
    padding:34px;
    border-radius:28px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.quick-form input,
.quick-form textarea{
    width:100%;
    border:1px solid var(--border);
    height:54px;
    border-radius:16px;
    padding:0 18px;
    margin-bottom:16px;
    outline:none;
    font-family:inherit;
    font-size:14px;
    color:var(--dark);
}

.quick-form textarea{
    height:130px;
    padding:18px;
    resize:none;
}

.quick-form input:focus,
.quick-form textarea:focus{
    border-color:var(--primary);
}

.quick-form button{
    border:none;
    background:var(--secondary);
    color:#fff;
    border-radius:999px;
    height:54px;
    padding:0 26px;
    font-weight:900;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#0c254f;
    color:#cbd5e1;
    padding-top:70px;
}

.footer-content{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:45px;
    padding-bottom:45px;
}

.footer h3,
.footer h4{
    color:#fff;
    margin-bottom:16px;
}

.footer p{
    color:#d8e1f1;
    line-height:1.7;
    font-size:14px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px;
    color:#aab8ce;
    font-size:13px;
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:31px;
    text-decoration:none;
    z-index:99999;
    box-shadow:0 15px 30px rgba(37,211,102,.35);
}

/* SCROLL ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:.75s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1100px){
    .main-nav{
        gap:16px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .partner-logos{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:900px){
    .top-info-bar{
        display:none;
    }

    .nav-wrapper{
        height:74px;
    }

    .main-nav{
        position:absolute;
        top:74px;
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        background:#fff;
        padding:22px;
        box-shadow:0 20px 45px rgba(16,24,40,.12);
    }

    .main-nav.active{
        display:flex;
    }

    .nav-apply-btn{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
        width:46px;
        height:46px;
        border:none;
        border-radius:14px;
        background:var(--primary);
        color:#fff;
        align-items:center;
        justify-content:center;
        font-size:18px;
    }

    .hero-section{
        padding:60px 0;
    }

    .hero-grid,
    .about-grid,
    .apply-grid{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-image img,
    .about-image img{
        height:330px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .destination-grid,
    .success-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-content{
        grid-template-columns:1fr;
    }
}

@media(max-width:620px){
    .site-brand strong{
        font-size:14px;
    }

    .site-brand small{
        display:none;
    }

    .site-brand{
        min-width:auto;
    }

    .site-brand img{
        width:48px;
        height:48px;
    }

    .hero-text h1,
    .about-content h2,
    .section-heading h2,
    .apply-text h2{
        font-size:34px;
    }

    .hero-actions{
        align-items:stretch;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        justify-content:center;
    }

    .floating-card{
        display:none;
    }

    .stats-grid,
    .destination-grid,
    .services-grid,
    .success-grid,
    .partner-logos,
    .form-row,
    .about-points{
        grid-template-columns:1fr;
    }

    .experience-box h2{
        font-size:52px;
    }

    .section-heading{
        margin-bottom:34px;
    }

    .about-section,
    .destination-section,
    .services-section,
    .success-section,
    .apply-section{
        padding:70px 0;
    }
}

.mobile-nav-head{
    display:none;
}

.main-nav a i{
    display:none;
}

@media(max-width:900px){
    .main-nav{
        position:fixed;
        top:0;
        left:-310px;
        right:auto;
        width:300px;
        height:100vh;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        background:#fff;
        padding:22px;
        box-shadow:25px 0 60px rgba(16,24,40,.18);
        transition:.35s ease;
        z-index:99999;
        border-radius:0 26px 26px 0;
    }

    .main-nav.active{
        left:0;
    }

    .mobile-nav-head{
        display:flex;
        align-items:center;
        justify-content:space-between;
        margin-bottom:22px;
        padding-bottom:18px;
        border-bottom:1px solid var(--border);
    }

    .mobile-nav-head strong{
        font-size:22px;
        color:var(--primary-dark);
        font-weight:900;
    }

    .mobile-nav-head button{
        width:42px;
        height:42px;
        border:none;
        border-radius:14px;
        background:#f1f5f9;
        color:var(--primary-dark);
        font-size:18px;
    }

    .main-nav a{
        width:100%;
        display:flex;
        align-items:center;
        gap:13px;
        padding:15px 16px;
        border-radius:16px;
        color:var(--primary-dark);
        font-size:15px;
        font-weight:800;
    }

    .main-nav a i{
        display:inline-flex;
        width:36px;
        height:36px;
        align-items:center;
        justify-content:center;
        border-radius:12px;
        background:#eef4ff;
        color:var(--primary);
        font-size:15px;
    }

    .main-nav a:hover{
        background:#f8fafc;
        color:var(--secondary);
    }

    .main-nav a:hover i{
        background:#fff1f2;
        color:var(--secondary);
    }
}

.inner-hero{
    padding:90px 0;
    background:
        linear-gradient(rgba(8,39,92,.86),rgba(8,39,92,.86)),
        url('../images/hero/hero-1.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.inner-hero span{
    color:#ffccd3;
    font-size:13px;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:.8px;
}

.inner-hero h1{
    font-size:46px;
    margin:12px 0;
}

.inner-hero p{
    color:#e8eefc;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

.application-page{
    padding:95px 0;
    background:#f5f8ff;
}

.apply-page-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:50px;
    align-items:start;
}

.apply-info h2{
    font-size:40px;
    line-height:1.18;
    color:var(--primary-dark);
}

.apply-info p{
    color:var(--muted);
    line-height:1.8;
    margin:18px 0 26px;
}

.apply-info-list{
    display:grid;
    gap:15px;
}

.apply-info-list div{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:17px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
    color:var(--primary-dark);
    box-shadow:0 10px 25px rgba(16,24,40,.05);
}

.apply-info-list i{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef4ff;
    color:var(--primary);
}

.application-form-card{
    background:#fff;
    padding:36px;
    border-radius:30px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.application-form-card input,
.application-form-card select,
.application-form-card textarea{
    width:100%;
    height:56px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:0 18px;
    margin-bottom:16px;
    outline:none;
    font-family:inherit;
    font-size:14px;
    color:var(--dark);
    background:#fff;
}

.application-form-card textarea{
    height:135px;
    padding:18px;
    resize:none;
}

.application-form-card input:focus,
.application-form-card select:focus,
.application-form-card textarea:focus{
    border-color:var(--primary);
}

.application-form-card button{
    border:none;
    height:56px;
    padding:0 28px;
    border-radius:999px;
    background:var(--secondary);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.frontend-success{
    background:#dcfce7;
    color:#166534;
    padding:16px;
    border-radius:16px;
    margin-bottom:20px;
    font-weight:700;
}

.frontend-error{
    background:#fee2e2;
    color:#991b1b;
    padding:16px;
    border-radius:16px;
    margin-bottom:20px;
    font-weight:700;
}

@media(max-width:900px){
    .apply-page-grid{
        grid-template-columns:1fr;
    }

    .inner-hero h1{
        font-size:36px;
    }

    .apply-info h2{
        font-size:32px;
    }
}

.application-form-card select,
.quick-form select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--primary) 50%),
        linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 24px,
        calc(100% - 16px) 24px;
    background-size:6px 6px, 6px 6px;
    background-repeat:no-repeat;
    cursor:pointer;
}

.application-form-card select option,
.quick-form select option{
    color:#101828;
    background:#ffffff;
    padding:12px;
}

.application-form-card select:invalid{
    color:#667085;
}

/* FIX SERVICES SECTION */

.services-section{
    padding:95px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-image{
    height:170px;
    background:linear-gradient(135deg,#eef4ff,#fff4f5);
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-image i{
    width:72px;
    height:72px;
    border-radius:22px;
    background:#fff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 12px 28px rgba(16,24,40,.08);
}

.service-content{
    padding:24px;
}

.service-content span{
    color:var(--secondary);
    font-weight:900;
    font-size:13px;
}

.service-content h3{
    margin:10px 0;
    font-size:20px;
    color:var(--primary-dark);
    line-height:1.3;
}

.service-content p{
    color:var(--muted);
    font-size:14px;
    line-height:1.7;
}

/* FIX CTA SECTION */

.cta-section{
    padding:80px 0;
    background:#fff;
}

.cta-wrapper{
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    border-radius:32px;
    padding:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 24px 60px rgba(13,59,134,.22);
    position:relative;
    overflow:hidden;
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-90px;
    top:-90px;
}

.cta-content{
    position:relative;
    max-width:720px;
}

.cta-content span{
    color:#ffccd3;
    font-size:13px;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:.8px;
}

.cta-content h2{
    color:#fff;
    font-size:38px;
    line-height:1.2;
    margin:10px 0;
}

.cta-content p{
    color:#dbeafe;
    line-height:1.7;
}

.cta-action{
    position:relative;
    flex:none;
}

/* RESPONSIVE FIX */

@media(max-width:1100px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .cta-wrapper{
        flex-direction:column;
        align-items:flex-start;
        padding:34px 24px;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-action,
    .cta-action .primary-btn{
        width:100%;
    }

    .cta-action .primary-btn{
        justify-content:center;
    }
}

/* =========================
   ABOUT PAGE
========================= */

.page-hero{
    padding:120px 0 90px;
    background:
    linear-gradient(rgba(255,255,255,.9),rgba(255,255,255,.94)),
    url('../images/homepage/about-bg.jpg');
    background-size:cover;
    background-position:center;
}

.page-hero-content{
    max-width:820px;
    margin:auto;
    text-align:center;
}

.page-hero-content span{
    color:var(--secondary);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    font-size:13px;
}

.page-hero-content h1{
    font-size:62px;
    line-height:1.05;
    margin:16px 0;
    color:var(--primary-dark);
}

.page-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
}

.about-page-section{
    padding:100px 0;
    background:#fff;
}

.about-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-page-image{
    position:relative;
}

.about-page-image img{
    width:100%;
    border-radius:32px;
    box-shadow:0 30px 60px rgba(15,23,42,.12);
}

.experience-badge{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:#fff;
    padding:24px;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(15,23,42,.14);
}

.experience-badge h3{
    font-size:42px;
    color:var(--secondary);
}

.experience-badge span{
    color:var(--muted);
    font-weight:700;
}

.about-page-content h2{
    font-size:48px;
    line-height:1.12;
    color:var(--primary-dark);
    margin:12px 0 20px;
}

.about-page-content p{
    line-height:1.9;
    color:var(--muted);
}

.about-stats-grid{
    margin-top:34px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.about-stat-card{
    background:#f8fafc;
    border-radius:22px;
    padding:24px;
}

.about-stat-card h3{
    color:var(--secondary);
    font-size:28px;
    margin-bottom:6px;
}

.about-stat-card p{
    font-size:14px;
    font-weight:700;
}

.why-page-section{
    padding:100px 0;
    background:#f8fafc;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.why-card{
    background:#fff;
    border-radius:28px;
    padding:34px 28px;
    box-shadow:var(--shadow);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    width:72px;
    height:72px;
    border-radius:24px;
    background:#eef4ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}

.why-card h3{
    font-size:22px;
    color:var(--primary-dark);
    margin-bottom:14px;
}

.why-card p{
    color:var(--muted);
    line-height:1.8;
}

.about-services-section{
    padding:100px 0;
    background:#fff;
}

.about-testimonial-section{
    padding:100px 0;
    background:#f8fafc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow);
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}

.testimonial-top img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-top h3{
    color:var(--primary-dark);
}

.testimonial-top span{
    color:var(--secondary);
    font-weight:700;
    font-size:14px;
}

.testimonial-card p{
    line-height:1.9;
    color:var(--muted);
}

@media(max-width:1100px){

    .about-page-grid,
    .why-grid,
    .testimonial-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .page-hero{
        padding:90px 0 70px;
    }

    .page-hero-content h1{
        font-size:42px;
    }

    .about-page-grid,
    .why-grid,
    .testimonial-grid,
    .about-stats-grid{
        grid-template-columns:1fr;
    }

    .about-page-content h2{
        font-size:36px;
    }

    .experience-badge{
        right:10px;
        bottom:10px;
    }

}

/* =========================
   SERVICES PAGE
========================= */

.services-hero{
    background:
        linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.96)),
        url('../images/homepage/services-bg.jpg');
    background-size:cover;
    background-position:center;
}

.services-page-section{
    padding:100px 0;
    background:#fff;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.service-page-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:36px 30px;
    box-shadow:var(--shadow);
    overflow:hidden;
    transition:.35s ease;
}

.service-page-card:hover{
    transform:translateY(-8px);
}

.service-page-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:rgba(13,59,134,.06);
    border-radius:50%;
    right:-50px;
    top:-50px;
}

.service-page-number{
    position:absolute;
    right:26px;
    top:24px;
    color:#e2e8f0;
    font-size:42px;
    font-weight:900;
}

.service-page-icon{
    width:82px;
    height:82px;
    border-radius:26px;
    background:linear-gradient(135deg,#eef4ff,#fff4f5);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:26px;
    position:relative;
    z-index:2;
}

.service-page-icon img{
    width:100%;
    height:100%;
    border-radius:26px;
    object-fit:cover;
}

.service-page-card h3{
    position:relative;
    z-index:2;
    font-size:24px;
    color:var(--primary-dark);
    margin-bottom:14px;
}

.service-page-card p{
    position:relative;
    z-index:2;
    color:var(--muted);
    line-height:1.8;
}

.process-section{
    padding:100px 0;
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:32px 26px;
    box-shadow:var(--shadow);
}

.process-card span{
    display:inline-flex;
    width:54px;
    height:54px;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    align-items:center;
    justify-content:center;
    font-weight:900;
    margin-bottom:22px;
}

.process-card h3{
    font-size:21px;
    color:var(--primary-dark);
    margin-bottom:12px;
}

.process-card p{
    color:var(--muted);
    line-height:1.75;
}

@media(max-width:1100px){
    .services-page-grid,
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .services-page-grid,
    .process-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   DESTINATIONS PAGE
========================= */

.destinations-hero{
    background:
        linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.96)),
        url('../images/homepage/destinations-bg.jpg');
    background-size:cover;
    background-position:center;
}

.destinations-page-section{
    padding:100px 0;
    background:#fff;
}

.destinations-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.destination-page-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}

.destination-page-card:hover{
    transform:translateY(-8px);
}

.destination-page-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.destination-page-content{
    padding:28px;
}

.destination-page-content h3{
    font-size:26px;
    color:var(--primary-dark);
    margin-bottom:12px;
}

.destination-page-content p{
    color:var(--muted);
    line-height:1.7;
    margin-bottom:18px;
}

.destination-meta{
    display:flex;
    gap:10px;
    align-items:flex-start;
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:16px;
    padding:13px;
    margin-bottom:12px;
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
}

.destination-meta i{
    color:var(--secondary);
    margin-top:3px;
}

.destination-btn{
    margin-top:14px;
    display:inline-flex;
    align-items:center;
    gap:9px;
    text-decoration:none;
    background:var(--secondary);
    color:#fff;
    padding:13px 20px;
    border-radius:999px;
    font-weight:900;
    font-size:14px;
}

@media(max-width:1100px){
    .destinations-page-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .destinations-page-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   DESTINATION DETAIL PAGE
========================= */

.destination-detail-hero{
    position:relative;
    min-height:420px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.destination-detail-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(8,39,92,.88),rgba(8,39,92,.45));
}

.destination-detail-hero .container{
    position:relative;
    z-index:2;
}

.destination-detail-hero-content{
    max-width:760px;
}

.destination-detail-hero-content span{
    color:#ffccd3;
    text-transform:uppercase;
    font-size:14px;
    font-weight:900;
    letter-spacing:.8px;
}

.destination-detail-hero-content h1{
    font-size:68px;
    line-height:1;
    margin:14px 0;
}

.destination-detail-hero-content p{
    color:#e8eefc;
    font-size:18px;
    line-height:1.8;
}

.destination-detail-section{
    padding:100px 0;
    background:#fff;
}

.destination-detail-grid{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:45px;
    align-items:start;
}

.destination-main-content{
    background:#fff;
}

.destination-main-content h2{
    font-size:42px;
    color:var(--primary-dark);
    margin-bottom:18px;
}

.destination-main-content > p{
    color:var(--muted);
    line-height:1.9;
    font-size:16px;
    margin-bottom:28px;
}

.destination-detail-box{
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:26px;
    padding:28px;
    margin-top:22px;
}

.destination-detail-box h3{
    color:var(--primary-dark);
    font-size:22px;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.destination-detail-box h3 i{
    color:var(--secondary);
}

.destination-detail-box p{
    color:var(--muted);
    line-height:1.85;
}

.destination-sidebar{
    position:sticky;
    top:120px;
}

.destination-sidebar-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:28px;
    box-shadow:var(--shadow);
}

.destination-sidebar-card h3{
    font-size:24px;
    color:var(--primary-dark);
    margin-bottom:22px;
}

.quick-fact{
    padding:16px 0;
    border-bottom:1px solid var(--border);
}

.quick-fact span{
    display:block;
    color:var(--muted);
    font-size:13px;
    font-weight:800;
    margin-bottom:6px;
}

.quick-fact strong{
    color:var(--primary-dark);
    font-size:17px;
}

.destination-sidebar-card .primary-btn{
    width:100%;
    justify-content:center;
    margin-top:24px;
}

@media(max-width:900px){
    .destination-detail-grid{
        grid-template-columns:1fr;
    }

    .destination-sidebar{
        position:static;
    }

    .destination-detail-hero-content h1{
        font-size:46px;
    }
}

/* =========================
   UNIVERSITIES PAGE
========================= */

.universities-hero{
    background:
        linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.96)),
        url('../images/homepage/university-bg.jpg');
    background-size:cover;
    background-position:center;
}

.universities-page-section{
    padding:100px 0;
    background:#fff;
}

.universities-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.university-page-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
}

.university-page-card:hover{
    transform:translateY(-8px);
}

.university-logo-wrap{
    height:240px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:34px;
    border-bottom:1px solid var(--border);
}

.university-logo-wrap img{
    max-width:100%;
    max-height:140px;
    object-fit:contain;
}

.university-page-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.university-page-content h3{
    font-size:24px;
    line-height:1.25;
    color:var(--primary-dark);
    margin-bottom:12px;
}

.university-page-content span{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-weight:800;
    margin-bottom:18px;
    font-size:14px;
}

.university-page-content p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:28px;
    flex:1;
}

.university-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.uni-outline-btn{
    flex:1;
    min-width:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--border);
    height:52px;
    border-radius:999px;
    text-decoration:none;
    color:var(--primary-dark);
    font-weight:800;
    transition:.3s;
}

.uni-outline-btn:hover{
    background:#f8fafc;
}

.uni-primary-btn{
    flex:1;
    min-width:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:52px;
    border-radius:999px;
    text-decoration:none;
    background:var(--secondary);
    color:#fff;
    font-weight:800;
    transition:.3s;
}

.uni-primary-btn:hover{
    background:#d90429;
}

@media(max-width:1100px){

    .universities-page-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .universities-page-grid{
        grid-template-columns:1fr;
    }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero{
    background:
        linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.96)),
        url('../images/homepage/contact-bg.jpg');
    background-size:cover;
    background-position:center;
}

.contact-page-section{
    padding:100px 0;
    background:#f8fafc;
}

.contact-page-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:50px;
    align-items:start;
}

.contact-info-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:38px;
    box-shadow:var(--shadow);
}

.contact-info-box h2{
    font-size:40px;
    line-height:1.15;
    color:var(--primary-dark);
    margin:12px 0 16px;
}

.contact-info-box p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:28px;
}

.contact-info-list{
    display:grid;
    gap:16px;
}

.contact-info-list div{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px;
    border-radius:18px;
    background:#f8fafc;
    border:1px solid var(--border);
}

.contact-info-list i{
    width:44px;
    height:44px;
    border-radius:14px;
    background:#eef4ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.contact-info-list span{
    color:var(--primary-dark);
    font-weight:800;
    line-height:1.5;
}

.contact-form-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:38px;
    box-shadow:var(--shadow);
}

.contact-form-card input,
.contact-form-card textarea{
    width:100%;
    height:56px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:0 18px;
    margin-bottom:16px;
    outline:none;
    font-family:inherit;
    font-size:14px;
    color:var(--dark);
    background:#fff;
}

.contact-form-card textarea{
    height:160px;
    padding:18px;
    resize:none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
    border-color:var(--primary);
}

.contact-form-card button{
    border:none;
    height:56px;
    padding:0 28px;
    border-radius:999px;
    background:var(--secondary);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.map-section iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

@media(max-width:900px){
    .contact-page-grid{
        grid-template-columns:1fr;
    }

    .contact-info-box h2{
        font-size:32px;
    }
}

/* =========================
   DESTINATION DROPDOWN NAV
========================= */

.nav-dropdown{
    position:relative;
}

.dropdown-toggle{
    display:flex !important;
    align-items:center;
    gap:7px;
}

.dropdown-arrow{
    font-size:11px;
    transition:.3s;
}

.dropdown-menu{
    position:absolute;
    top:calc(100% + 18px);
    left:50%;
    transform:translateX(-50%) translateY(12px);
    width:250px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 22px 55px rgba(15,23,42,.14);
    padding:12px;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
    z-index:99999;
}

.dropdown-menu::before{
    content:"";
    position:absolute;
    top:-8px;
    left:50%;
    transform:translateX(-50%) rotate(45deg);
    width:16px;
    height:16px;
    background:#fff;
    border-left:1px solid var(--border);
    border-top:1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow{
    transform:rotate(180deg);
}

.dropdown-menu a{
    display:flex !important;
    align-items:center;
    gap:11px;
    padding:13px 14px !important;
    border-radius:15px;
    color:var(--primary-dark) !important;
    font-size:14px !important;
    font-weight:800 !important;
}

.dropdown-menu a::after{
    display:none !important;
}

.dropdown-menu a i{
    width:34px;
    height:34px;
    border-radius:12px;
    background:#eef4ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.dropdown-menu a:hover{
    background:#f8fafc;
    color:var(--secondary) !important;
}

.dropdown-menu a:hover i{
    background:#fff1f2;
    color:var(--secondary);
}

/* MOBILE DROPDOWN */

@media(max-width:992px){

    .nav-dropdown{
        width:100%;
    }

    .dropdown-toggle{
        width:100%;
        justify-content:space-between;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        transform:none;
        opacity:1;
        visibility:visible;
        box-shadow:none;
        border:none;
        border-radius:0;
        padding:6px 0 6px 14px;
        display:none;
        background:transparent;
    }

    .dropdown-menu::before{
        display:none;
    }

    .nav-dropdown.active .dropdown-menu{
        display:block;
    }

    .nav-dropdown.active .dropdown-arrow{
        transform:rotate(180deg);
    }

    .dropdown-menu a{
        padding:11px 12px !important;
        font-size:14px !important;
        background:#f8fafc;
        margin-bottom:7px;
        border-radius:14px;
    }

    .dropdown-menu a i{
        width:30px;
        height:30px;
        font-size:12px;
    }
}

.destination-card-btn{
    margin-top:18px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:var(--secondary);
    color:#fff;
    padding:12px 20px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    transition:.3s ease;
}

.destination-card-btn:hover{
    transform:translateY(-2px);
    background:#d90429;
}

/* =========================
   COMPACT PREMIUM FOOTER
========================= */

.footer{
    background:#071c49;
    color:#cbd5e1;
}

.footer-main{
    padding:45px 0 30px;
    display:grid;
    grid-template-columns:1.25fr .75fr 1fr 1fr;
    gap:28px;
}

.footer-brand-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    margin-bottom:14px;
}

.footer-brand-logo img{
    width:62px;
    height:62px;
    object-fit:contain;
    background:#fff;
    border-radius:14px;
    padding:4px;
}

.footer-brand-logo h3{
    color:#fff;
    font-size:18px;
    line-height:1.2;
    margin:0;
}

.footer-brand-logo span{
    color:#aebbd1;
    font-size:12px;
    font-weight:700;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.7;
    font-size:14px;
    margin-bottom:16px;
}

.footer-socials{
    display:flex;
    gap:10px;
    align-items:center;
}

.footer-socials a{
    width:38px;
    height:38px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.footer-socials a:hover{
    transform:translateY(-4px);
}

.footer-socials .fb{
    background:#1877f2;
}

.footer-socials .ig{
    background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
}

.footer-socials .tk{
    background:#000;
}

.footer-socials .yt{
    background:#ff0000;
}

.footer h4{
    color:#fff;
    font-size:17px;
    margin-bottom:15px;
}

.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:9px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:4px;
}

.footer-contact p{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.6;
    margin-bottom:11px;
}

.footer-contact i{
    width:32px;
    height:32px;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:none;
    font-size:13px;
}

.footer-map-box{
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
}

.footer-map-box iframe{
    width:100%;
    height:170px;
    border:0;
    display:block;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:14px 0;
    text-align:center;
}

.footer-bottom p{
    color:#aebbd1;
    font-size:13px;
    margin:0;
}

@media(max-width:1100px){
    .footer-main{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:700px){
    .footer-main{
        grid-template-columns:1fr;
        padding:38px 0 25px;
    }

    .footer-brand-logo img{
        width:56px;
        height:56px;
    }
}

/* =========================
   MOBILE NAV SUBMENU FIX
========================= */

@media(max-width:992px){

    .main-nav{
        left:-100%;
        right:auto;
        width:300px;
        max-width:86vw;
        overflow-y:auto;
        overflow-x:hidden;
    }

    .main-nav.active{
        left:0;
    }

    .nav-dropdown{
        width:100%;
        display:block;
    }

    .dropdown-toggle{
        width:100%;
        display:flex !important;
        align-items:center;
        justify-content:space-between;
        gap:12px;
    }

    .dropdown-toggle > i:first-child{
        flex:none;
    }

    .dropdown-arrow{
        margin-left:auto;
        flex:none;
    }

    .dropdown-menu{
        position:static !important;
        left:auto !important;
        top:auto !important;
        width:100% !important;
        min-width:0 !important;
        transform:none !important;
        opacity:1 !important;
        visibility:visible !important;
        display:none;
        box-shadow:none !important;
        border:none !important;
        background:transparent !important;
        padding:8px 0 4px 8px !important;
        margin:0 !important;
    }

    .nav-dropdown.active .dropdown-menu{
        display:grid !important;
        gap:8px;
    }

    .dropdown-menu a{
        width:100% !important;
        max-width:100% !important;
        display:flex !important;
        align-items:center;
        gap:10px;
        padding:12px 14px !important;
        margin:0 !important;
        border-radius:14px;
        background:#f8fafc;
        font-size:14px !important;
        white-space:normal !important;
        word-break:break-word;
    }

    .dropdown-menu a i{
        width:30px;
        height:30px;
        flex:none;
    }
}

/* =========================
   FINAL WORKING NAVBAR
========================= */

.main-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 8px 28px rgba(16,24,40,.06);
}

.nav-wrapper{
    min-height:104px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.site-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--dark);
    width:330px;
    flex:none;
}

.site-brand img{
    width:110px;
    height:90px;
    object-fit:contain;
    flex:none;
}

.site-brand strong{
    display:block;
    font-size:17px;
    line-height:1.15;
    font-weight:900;
    color:var(--primary-dark);
}

.site-brand small{
    display:block;
    margin-top:4px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex:1;
}

.main-nav > a,
.dropdown-toggle{
    color:#344054;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    position:relative;
    white-space:nowrap;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:7px;
}

.main-nav > a > i,
.dropdown-toggle > i{
    display:none;
}

.main-nav > a::after,
.dropdown-toggle::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.3s;
}

.main-nav > a:hover,
.dropdown-toggle:hover{
    color:var(--primary);
}

.main-nav > a:hover::after,
.dropdown-toggle:hover::after{
    width:100%;
}

.nav-apply-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--secondary);
    color:#fff !important;
    text-decoration:none;
    padding:14px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
    box-shadow:0 12px 26px rgba(239,35,60,.22);
    flex:none;
}

.mobile-menu-btn{
    display:none;
}

.mobile-nav-head{
    display:none;
}

.mobile-apply-btn{
    display:none !important;
}

/* Dropdown desktop */
.nav-dropdown{
    position:relative;
}

.dropdown-arrow{
    font-style:normal;
    font-size:11px;
    transition:.3s;
}

.dropdown-menu{
    position:absolute;
    top:calc(100% + 18px);
    left:50%;
    transform:translateX(-50%) translateY(12px);
    width:250px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 22px 55px rgba(15,23,42,.14);
    padding:12px;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
    z-index:99999;
}

.dropdown-menu::before{
    content:"";
    position:absolute;
    top:-8px;
    left:50%;
    transform:translateX(-50%) rotate(45deg);
    width:16px;
    height:16px;
    background:#fff;
    border-left:1px solid var(--border);
    border-top:1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow{
    transform:rotate(180deg);
}

.dropdown-menu a{
    display:flex;
    align-items:center;
    gap:11px;
    padding:13px 14px;
    border-radius:15px;
    color:var(--primary-dark);
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}

.dropdown-menu a i{
    width:34px;
    height:34px;
    border-radius:12px;
    background:#eef4ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    flex:none;
}

.dropdown-menu a:hover{
    background:#f8fafc;
    color:var(--secondary);
}

/* Tablet */
@media(max-width:1200px){
    .site-brand{
        width:290px;
    }

    .site-brand img{
        width:92px;
        height:76px;
    }

    .site-brand strong{
        font-size:15px;
    }

    .main-nav{
        gap:16px;
    }

    .main-nav > a,
    .dropdown-toggle{
        font-size:13px;
    }

    .nav-apply-btn{
        padding:13px 20px;
        font-size:14px;
    }
}

/* Mobile */
@media(max-width:992px){

    .top-info-bar{
        display:none;
    }

    .nav-wrapper{
        min-height:88px;
    }

    .site-brand{
        width:auto;
        max-width:260px;
    }

    .site-brand img{
        width:76px;
        height:64px;
    }

    .site-brand strong{
        font-size:14px;
    }

    .site-brand small{
        font-size:10px;
    }

    .nav-apply-btn{
        display:none !important;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:46px;
        height:46px;
        border:none;
        border-radius:14px;
        background:var(--primary);
        color:#fff;
        font-size:18px;
        cursor:pointer;
        flex:none;
    }

    .main-nav{
        position:fixed;
        top:0;
        left:-100%;
        width:310px;
        max-width:86vw;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:6px;
        padding:22px;
        box-shadow:25px 0 60px rgba(16,24,40,.18);
        transition:.35s ease;
        z-index:99999;
        border-radius:0 24px 24px 0;
        overflow-y:auto;
        overflow-x:hidden;
    }

    .main-nav.active{
        left:0;
    }

    .mobile-nav-head{
        display:flex;
        align-items:center;
        justify-content:space-between;
        margin-bottom:18px;
        padding-bottom:16px;
        border-bottom:1px solid var(--border);
    }

    .mobile-nav-head strong{
        font-size:22px;
        color:var(--primary-dark);
        font-weight:900;
    }

    .mobile-nav-head button{
        width:42px;
        height:42px;
        border:none;
        border-radius:14px;
        background:#f1f5f9;
        color:var(--primary-dark);
        font-size:18px;
        cursor:pointer;
    }

    .main-nav > a,
    .dropdown-toggle{
        width:100%;
        padding:14px 15px;
        border-radius:15px;
        font-size:15px;
        color:var(--primary-dark);
        text-decoration:none;
        display:flex;
        align-items:center;
        gap:12px;
        justify-content:flex-start;
    }

    .main-nav > a::after,
    .dropdown-toggle::after{
        display:none;
    }

    .main-nav > a > i,
    .dropdown-toggle > i{
        display:flex;
        width:36px;
        height:36px;
        border-radius:12px;
        background:#eef4ff;
        color:var(--primary);
        align-items:center;
        justify-content:center;
        flex:none;
        font-size:14px;
    }

    .main-nav > a:hover,
    .dropdown-toggle:hover{
        background:#f8fafc;
        color:var(--secondary);
    }

    .nav-dropdown{
        width:100%;
    }

    .dropdown-toggle{
        justify-content:flex-start;
    }

    .dropdown-arrow{
        margin-left:auto;
        flex:none;
    }

    .dropdown-menu{
        position:static !important;
        width:100% !important;
        transform:none !important;
        opacity:1 !important;
        visibility:visible !important;
        display:none;
        box-shadow:none !important;
        border:none !important;
        background:transparent !important;
        padding:6px 0 6px 14px !important;
        margin:0 !important;
    }

    .dropdown-menu::before{
        display:none;
    }

    .nav-dropdown.active .dropdown-menu{
        display:grid !important;
        gap:8px;
    }

    .dropdown-menu a{
        width:100%;
        display:flex;
        align-items:center;
        gap:10px;
        padding:11px 12px;
        border-radius:14px;
        background:#f8fafc;
        font-size:14px;
        white-space:normal;
        word-break:break-word;
        color:var(--primary-dark);
    }

    .dropdown-menu a i{
        width:30px;
        height:30px;
        font-size:12px;
    }

    .mobile-apply-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
        gap:10px;
        width:100%;
        min-height:54px;
        margin-top:14px;
        padding:14px 18px !important;
        border-radius:16px;
        background:var(--secondary) !important;
        color:#fff !important;
        font-size:15px !important;
        font-weight:900 !important;
        text-decoration:none !important;
        box-shadow:0 12px 25px rgba(239,35,60,.2);
    }

    .mobile-apply-btn i{
        display:inline-flex !important;
        background:transparent !important;
        color:#fff !important;
        width:auto !important;
        height:auto !important;
        font-size:15px !important;
    }
}/* =========================
   FINAL APPLY BUTTON FIX
========================= */

/* Desktop apply button visible */
.nav-apply-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--secondary);
    color:#fff !important;
    text-decoration:none;
    padding:14px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
    box-shadow:0 12px 26px rgba(239,35,60,.22);
    flex:none;
}

/* Hide mobile apply on desktop */
.mobile-apply-btn{
    display:none !important;
}

/* Mobile */
@media(max-width:992px){

    /* hide desktop button on mobile */
    .nav-apply-btn{
        display:none !important;
    }

    .mobile-apply-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
        gap:10px;
        width:100%;
        min-height:52px;
        margin-top:12px;
        padding:14px 18px !important;
        border-radius:16px;
        background:var(--secondary) !important;
        color:#fff !important;
        font-size:15px !important;
        font-weight:900 !important;
        text-decoration:none;
        box-shadow:none;
    }

    .mobile-apply-btn i{
        display:inline-flex !important;
        width:auto !important;
        height:auto !important;
        background:transparent !important;
        color:#fff !important;
        font-size:15px !important;
    }

    .mobile-apply-btn::after{
        display:none !important;
    }
}