/* ===========================================
   HEAVEN ABROAD CONSULTANCY SERVICES
   Premium Corporate Stylesheet
   Theme: Dark Navy · Gold · White
=========================================== */

/* ========== 1. CSS VARIABLES ========== */
:root {
    --navy-dark:    #0A1628;
    --navy:         #0F1F3D;
    --navy-mid:     #142035;
    --blue-mid:     #1B3459;
    --blue:         #1E3A5F;
    --blue-light:   #254D7F;

    --gold-dark:    #A87C2A;
    --gold:         #C9A84C;
    --gold-mid:     #D4AF37;
    --gold-light:   #E8C97A;
    --gold-pale:    #F5E8C0;

    --white:        #FFFFFF;
    --off-white:    #F8F9FA;
    --light:        #EEF2F7;
    --gray-100:     #F0F4F8;
    --gray-200:     #E1E8F0;
    --gray-400:     #9AAEBF;
    --gray-600:     #5A7080;
    --text:         #2D3748;
    --text-light:   #718096;

    --grad-dark:    linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    --grad-navy:    linear-gradient(180deg, #0A1628 0%, #142035 100%);
    --grad-gold:    linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
    --grad-hero:    linear-gradient(125deg, rgba(6,14,28,0.98) 0%, rgba(20,32,60,0.95) 50%, rgba(30,58,95,0.88) 100%);
    --grad-overlay: linear-gradient(to bottom, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.85) 100%);

    --font-body:    'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --header-h:     80px;
    --container-w:  1240px;

    --radius-xs:    4px;
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    30px;
    --radius-full:  9999px;

    --shadow-xs:    0 1px 3px rgba(10,22,40,0.12);
    --shadow-sm:    0 2px 8px rgba(10,22,40,0.15);
    --shadow-md:    0 5px 20px rgba(10,22,40,0.18);
    --shadow-lg:    0 10px 40px rgba(10,22,40,0.22);
    --shadow-xl:    0 20px 60px rgba(10,22,40,0.30);
    --shadow-gold:  0 5px 25px rgba(201,168,76,0.40);

    --trans:        0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    --trans-slow:   0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ========== 2. BASE RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
::selection { background: var(--gold); color: var(--navy-dark); }

/* ========== 3. LOADING SCREEN ========== */
.loader-overlay {
    position: fixed; inset: 0;
    background: var(--navy-dark);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
    width: 100px; height: 100px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--gold);
    margin-bottom: 28px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar { width: 200px; height: 3px; background: rgba(201,168,76,0.2); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--grad-gold); border-radius: 2px; animation: loaderFill 1.5s ease-in-out infinite; }
.loader-text { color: var(--gold-light); margin-top: 14px; font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes loaderFill { 0% { width: 0; } 50% { width: 100%; } 100% { width: 0; transform: translateX(100%); } }

/* ========== 4. TYPOGRAPHY ========== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: inherit; font-weight: 700; }
.section-tag {
    display: inline-block;
    background: var(--grad-gold);
    color: var(--navy-dark);
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 18px; border-radius: var(--radius-full);
    margin-bottom: 14px;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--navy-dark); margin-bottom: 14px; }
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; line-height: 1.75; }
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.section-divider { width: 56px; height: 3px; background: var(--grad-gold); border-radius: 2px; margin: 18px 0; }
.section-divider.centered { margin-inline: auto; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* ========== 5. LAYOUT ========== */
.container { width: 100%; max-width: min(var(--container-w), calc(100% - 120px)); margin-inline: auto; padding-inline: 20px; }
section { padding: 80px 0; }
.text-center { text-align: center; }
.bg-dark  { background: var(--grad-dark); color: var(--white); }
.bg-navy  { background: var(--navy-dark); color: var(--white); }
.bg-light { background: var(--gray-100); }
.bg-white { background: var(--white); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 24px; } .mt-lg { margin-top: 40px; }

/* ========== 6. BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-full);
    font-size: 0.9rem; font-weight: 600; font-family: var(--font-body);
    letter-spacing: 0.3px; cursor: pointer; white-space: nowrap;
    transition: var(--trans); text-align: center;
}
.btn-primary { background: var(--grad-dark); color: var(--white); border: 2px solid transparent; }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--grad-gold); color: var(--navy-dark); border: 2px solid transparent; font-weight: 700; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); filter: brightness(1.08); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--grad-gold); color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 46px; font-size: 1rem; }
.btn-sm { padding: 9px 22px; font-size: 0.8rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== 7. NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-h); z-index: 1000;
    transition: var(--trans-slow);
    background: linear-gradient(to bottom, rgba(10,22,40,0.95) 0%, transparent 100%);
}
.navbar.scrolled {
    background: var(--navy-dark);
    box-shadow: 0 4px 30px rgba(0,0,0,0.45);
    height: 68px;
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand a { display: flex; align-items: center; gap: 12px; }
.nav-logo {
    width: 52px; height: 52px; object-fit: cover;
    border-radius: 50%; border: 2px solid var(--gold);
    transition: var(--trans); flex-shrink: 0;
}
.navbar.scrolled .nav-logo { width: 44px; height: 44px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.brand-tagline { font-size: 0.62rem; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
    color: rgba(255,255,255,0.88); font-size: 0.87rem; font-weight: 500;
    padding: 7px 13px; border-radius: var(--radius-sm); transition: var(--trans);
    position: relative; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.nav-links > li > a.active::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%); width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%;
}
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--navy-dark);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius-md);
    padding: 8px; min-width: 220px;
    opacity: 0; visibility: hidden; transition: var(--trans);
    box-shadow: var(--shadow-xl); z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 16px; color: rgba(255,255,255,0.78); font-size: 0.84rem; border-radius: var(--radius-sm); transition: var(--trans); }
.dropdown-menu li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.08); padding-left: 22px; }
.arrow { font-size: 0.68rem; transition: var(--trans); display: inline-block; }
.dropdown:hover .arrow { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: var(--radius-sm); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 100vw;
    max-width: 330px; height: 100vh; background: var(--navy-dark);
    border-left: 1px solid rgba(201,168,76,0.12);
    z-index: 999; transition: var(--trans-slow);
    overflow-y: auto; padding: 90px 12px 24px;
    display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.open { right: 0; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 998; opacity: 0; visibility: hidden; transition: var(--trans-slow); }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-label {
    color: var(--gold); font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 700; padding: 10px 18px 4px;
    font-family: var(--font-body); display: flex; align-items: center;
    justify-content: space-between; cursor: pointer; user-select: none;
}
.mobile-nav-label::after {
    content: '▾'; font-size: 0.88rem; transition: var(--trans);
}
.mobile-nav-label.open::after {
    transform: rotate(180deg);
}
.mobile-nav a {
    color: rgba(255,255,255,0.82); font-size: 1rem; padding: 13px 18px;
    border-radius: var(--radius-md); border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--trans); display: block;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold-light); background: rgba(201,168,76,0.07); }
.mobile-nav-sub {
    overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.28s ease, opacity 0.28s ease;
}
.mobile-nav-sub.open { max-height: 900px; opacity: 1; }
.mobile-nav-sub a { padding-left: 30px; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.mobile-nav-sub a.active { color: var(--gold-light); background: rgba(201,168,76,0.07); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ========== 8. HERO SECTIONS ========== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: var(--navy-dark); padding-top: var(--header-h);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: var(--grad-hero); z-index: 1; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%); top: -150px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(30,58,95,0.45) 0%, transparent 70%); bottom: -80px; left: -60px; }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: var(--gold); animation: floatParticle linear infinite; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 660px; padding-left: 16px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.28);
    color: var(--gold-light); padding: 8px 18px; border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
    margin-bottom: 18px; animation: fadeInDown 0.6s ease forwards;
}
.hero-title {
    font-size: clamp(2.4rem,5.5vw,3.8rem); color: var(--white); line-height: 1.1;
    margin-bottom: 22px;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.73); margin-bottom: 36px; line-height: 1.75; animation: fadeInUp 0.7s ease 0.2s both; }
.hero-actions { animation: fadeInUp 0.7s ease 0.3s both; }
.hero-stats { display: flex; gap: 0; margin-top: 44px; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.4s both; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { padding-right: 32px; margin-right: 32px; position: relative; }
.hero-stat + .hero-stat::before { content: ''; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 1px; height: 32px; background: rgba(255,255,255,0.14); }
.hero-stat .number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px; }
.scroll-ind { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; z-index: 2; animation: bounceDown 2s ease-in-out infinite; }
.scroll-ind span { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes bounceDown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ========== HERO 2-COLUMN VISUAL ========== */
.hero .container { z-index: 3 !important; }
.hero-grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 55px 55px; pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center; width: 100%; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 520px; }

/* Rings */
.hero-ring { position: absolute; border-radius: 50%; pointer-events: none; top: 50%; left: 50%; }
.hero-ring-1 { width: 280px; height: 280px; border: 1.5px solid rgba(201,168,76,0.28); animation: hSpin 28s linear infinite; transform: translate(-50%,-50%); }
.hero-ring-1::before { content: ''; position: absolute; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; top: -5px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 14px var(--gold), 0 0 28px var(--gold-light); }
.hero-ring-2 { width: 210px; height: 210px; border: 1px dashed rgba(201,168,76,0.2); animation: hSpin2 18s linear infinite; transform: translate(-50%,-50%); }
.hero-ring-2::after { content: ''; position: absolute; width: 7px; height: 7px; background: rgba(201,168,76,0.6); border-radius: 50%; bottom: -3px; left: 35%; box-shadow: 0 0 10px var(--gold); }
.hero-ring-3 { width: 370px; height: 370px; border: 1px solid rgba(201,168,76,0.1); animation: hSpin 44s linear infinite; transform: translate(-50%,-50%); }

/* Logo center */
.hero-logo-wrap { width: 185px; height: 185px; background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, rgba(10,22,40,0.9) 100%); border-radius: 50%; border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; position: relative; z-index: 4; animation: hLogoPulse 4s ease-in-out infinite; box-shadow: 0 0 50px rgba(201,168,76,0.28), 0 0 100px rgba(201,168,76,0.12); }
.hero-logo-img { width: 155px; height: 155px; border-radius: 50%; object-fit: cover; }

/* Floating cards */
.float-card { position: absolute; background: rgba(8,18,36,0.84); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(201,168,76,0.26); border-radius: 14px; padding: 13px 17px; z-index: 5; min-width: 128px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.float-card .fc-icon { font-size: 1.5rem; margin-bottom: 5px; display: block; }
.float-card .fc-text { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); white-space: nowrap; font-family: var(--font-body); }
.float-card .fc-sub { font-size: 0.64rem; color: rgba(255,255,255,0.5); margin-top: 2px; font-family: var(--font-body); }
.fc-1 { top: 15%;    right: 3%; animation: fCardFloat 3s   ease-in-out       infinite; }
.fc-2 { bottom: 6%; right: 7%; animation: fCardFloat 3.5s ease-in-out 1s    infinite; }
.fc-3 { top: 15%;    left:  0%; animation: fCardFloat 4s   ease-in-out 0.5s  infinite; }
.fc-4 { bottom: 5%;  left:  7%; animation: fCardFloat 3.2s ease-in-out 1.5s  infinite; }

@keyframes hSpin  { from { transform: translate(-50%,-50%) rotate(0deg);    } to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes hSpin2 { from { transform: translate(-50%,-50%) rotate(0deg);    } to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes hLogoPulse {
    0%,100% { box-shadow: 0 0 50px rgba(201,168,76,0.28), 0 0 100px rgba(201,168,76,0.12); }
    50%     { box-shadow: 0 0 70px rgba(201,168,76,0.45), 0 0 140px rgba(201,168,76,0.20); }
}
@keyframes fCardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Collapse visual on smaller screens */
@media (max-width: 1050px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
}

/* Page Hero (inner pages) */
.page-hero {
    min-height: 400px; background: var(--grad-dark);
    display: flex; align-items: center; position: relative; overflow: hidden;
    padding: calc(var(--header-h) + 50px) 0 60px;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(30,58,95,0.35) 0%, transparent 55%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem,4vw,3rem); color: var(--white); margin-bottom: 14px; }
.page-hero h1 .highlight { color: var(--gold-light); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto 22px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.48); }
.breadcrumb a { color: var(--gold-light); transition: var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ========== 9. STATS SECTION ========== */
.stats-section { background: var(--grad-dark); padding: 60px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 65%); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 28px 16px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }

/* ========== 10. SERVICE CARDS ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 26px; }
.service-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px 28px;
    text-align: center; transition: var(--trans-slow);
    position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-dark); opacity: 0; transition: var(--trans-slow); z-index: 0; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-icon { width: 72px; height: 72px; background: linear-gradient(135deg,rgba(201,168,76,0.1),rgba(201,168,76,0.04)); border: 2px solid rgba(201,168,76,0.22); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 2.2rem; transition: var(--trans); position: relative; z-index: 1; }
.service-card:hover .service-card-icon { border-color: var(--gold); transform: scale(1.1) rotate(5deg); background: rgba(201,168,76,0.15); }
.service-card h3 { font-size: 1.13rem; color: var(--navy-dark); margin-bottom: 10px; transition: var(--trans); position: relative; z-index: 1; }
.service-card:hover h3 { color: var(--gold-light); }
.service-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; transition: var(--trans); position: relative; z-index: 1; margin-bottom: 18px; }
.service-card:hover p { color: rgba(255,255,255,0.7); }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.82rem; font-weight: 600; transition: var(--trans); position: relative; z-index: 1; }
.card-link:hover { gap: 10px; }

/* ========== 11. WHY CHOOSE US ========== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 22px; display: flex; align-items: flex-start; gap: 16px; transition: var(--trans); }
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; background: var(--grad-gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.why-card h4 { font-family: var(--font-body); font-size: 0.93rem; color: var(--navy-dark); margin-bottom: 4px; font-weight: 600; }
.why-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

/* ========== 12. ABOUT SECTION ========== */
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image-wrapper { position: relative; flex-shrink: 0; }
.about-image-main { width: 100%; aspect-ratio: 4/5; height: auto; object-fit: cover; object-position: center top; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); display: block; max-height: 560px; }
.about-image-secondary { position: absolute; width: 155px; height: 195px; object-fit: cover; object-position: center top; top: -20px; left: -20px; border-radius: var(--radius-md); border: 4px solid var(--white); box-shadow: var(--shadow-lg); }
.about-image-badge { position: absolute; bottom: -18px; right: -18px; background: var(--grad-gold); color: var(--navy-dark); padding: 18px 22px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-gold); }
.about-image-badge .num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.about-image-badge .txt { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.about-features { margin: 20px 0; }
.about-feature { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.about-feature:last-child { border: none; }
.feature-check { width: 22px; height: 22px; background: var(--grad-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--navy-dark); font-weight: 700; flex-shrink: 0; }
.about-feature span { font-size: 0.88rem; color: var(--text); }

/* ========== 13. TEAM SECTION ========== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--trans-slow); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.team-img-wrapper { position: relative; overflow: hidden; height: 320px; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: var(--trans-slow); }
.team-card:hover .team-img { transform: scale(1.06); }
.team-overlay { position: absolute; inset: 0; background: var(--grad-overlay); opacity: 0; transition: var(--trans); display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
.team-card:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: 10px; }
.team-social a { width: 36px; height: 36px; background: rgba(201,168,76,0.9); color: var(--navy-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--trans); }
.team-social a:hover { background: var(--white); }
.team-info { padding: 22px; text-align: center; }
.team-name { font-size: 1.1rem; color: var(--navy-dark); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-body); }

/* ========== 14. TESTIMONIALS ========== */
.testimonials-section { background: var(--grad-dark); position: relative; overflow: hidden; }
.testimonials-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%); }
.testimonials-slider { position: relative; z-index: 1; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { flex: 0 0 33.33%; padding: 0 12px; }
.testimonial-inner { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.14); border-radius: var(--radius-xl); padding: 32px; height: 100%; transition: var(--trans); }
.testimonial-inner:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.32); transform: translateY(-5px); }
.testimonial-quote { font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 10px; font-family: serif; }
.testimonial-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.72; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--gold); }
.author-name { font-weight: 600; color: var(--gold-light); font-size: 0.88rem; }
.author-title { font-size: 0.76rem; color: rgba(255,255,255,0.48); margin-top: 2px; }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; position: relative; z-index: 1; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(201,168,76,0.3); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--trans); background: transparent; cursor: pointer; }
.slider-btn:hover { background: var(--grad-gold); color: var(--navy-dark); border-color: transparent; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; position: relative; z-index: 1; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.22); cursor: pointer; transition: var(--trans); border: none; }
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ========== 15. FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--trans); }
.faq-item:hover { border-color: rgba(201,168,76,0.38); }
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 26px; cursor: pointer; background: var(--white); transition: var(--trans); }
.faq-item.active .faq-question { background: var(--navy-dark); }
.faq-q-text { font-size: 0.97rem; font-weight: 600; color: var(--navy-dark); font-family: var(--font-body); transition: var(--trans); }
.faq-item.active .faq-q-text { color: var(--gold-light); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: var(--trans); line-height: 1; font-weight: 300; }
.faq-item.active .faq-icon { background: var(--gold); color: var(--navy-dark); transform: rotate(45deg); font-weight: 700; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--gray-100); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 20px 26px; color: var(--text-light); font-size: 0.88rem; line-height: 1.72; }

/* ========== 16. GALLERY ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: var(--grad-overlay); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--trans); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { width: 50px; height: 50px; background: rgba(201,168,76,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 1.3rem; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 9998; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--trans); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); }
.lightbox-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.1); color: var(--white); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: var(--trans); border: 1px solid rgba(255,255,255,0.2); }
.lightbox-close:hover { background: var(--gold); color: var(--navy-dark); }

/* ========== 17. BLOG ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans-slow); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-category { position: absolute; top: 14px; left: 14px; background: var(--grad-gold); color: var(--navy-dark); font-size: 0.7rem; font-weight: 700; padding: 5px 13px; border-radius: var(--radius-full); letter-spacing: 0.5px; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 12px; font-size: 0.76rem; color: var(--text-light); }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-title { font-size: 1.08rem; color: var(--navy-dark); margin-bottom: 10px; line-height: 1.35; transition: var(--trans); }
.blog-card:hover .blog-title { color: var(--gold-dark); }
.blog-excerpt { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.82rem; font-weight: 600; transition: var(--trans); }
.blog-read-more:hover { gap: 10px; color: var(--gold-dark); }

/* ========== 18. FORMS ========== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.84rem; font-weight: 600; color: var(--navy-dark); }
.required { color: #e53e3e; }
.form-control { width: 100%; padding: 12px 18px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text); background: var(--white); transition: var(--trans); outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-control.error { border-color: #e53e3e !important; }
.error-msg { display: none; font-size: 0.76rem; color: #e53e3e; margin-top: 4px; }
.form-control.error + .error-msg { display: block; }
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; color: var(--navy-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

/* ========== 19. CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(10,22,40,0.03); border: 1px solid var(--gray-200); border-radius: var(--radius-md); transition: var(--trans); }
.contact-info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-icon { width: 48px; height: 48px; background: var(--grad-gold); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail h4 { font-family: var(--font-body); font-size: 0.84rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.88rem; color: var(--text); line-height: 1.55; }
.contact-detail a:hover { color: var(--gold-dark); }

/* ========== 20. CTA SECTION ========== */
.cta-section { background: var(--grad-dark); padding: 90px 0; position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 65%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem,3.5vw,2.7rem); color: var(--white); margin-bottom: 10px; }
.cta-title .highlight { color: var(--gold-light); }
.cta-subtitle { font-size: 1.03rem; color: rgba(255,255,255,0.68); max-width: 560px; margin: 0 auto 36px; line-height: 1.72; }
.cta-divider { width: 70px; height: 2px; background: var(--grad-gold); margin: 18px auto 28px; border-radius: 2px; }

/* ========== 21. PROGRAM / COUNTRY CARDS ========== */
.program-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 26px; }
.program-card { background: var(--white); border-radius: var(--radius-xl); padding: 32px; border: 1px solid var(--gray-200); transition: var(--trans-slow); position: relative; overflow: hidden; }
.program-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--grad-gold); transform: scaleX(0); transition: var(--trans); transform-origin: left; }
.program-card:hover::after { transform: scaleX(1); }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.28); }
.program-flag { font-size: 2.6rem; margin-bottom: 16px; }
.program-card h3 { font-size: 1.18rem; color: var(--navy-dark); margin-bottom: 10px; }
.program-card p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.62; }
.program-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.prog-feature { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text); }
.prog-feature::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; min-width: 18px; background: var(--grad-gold); border-radius: 50%; font-size: 0.62rem; color: var(--navy-dark); font-weight: 700; }
.country-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: var(--trans-slow); box-shadow: var(--shadow-sm); }
.country-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }
.country-card-header { background: var(--grad-dark); padding: 30px; display: flex; align-items: center; gap: 20px; }
.country-flag { font-size: 3rem; }
.country-card-header h3 { color: var(--gold-light); font-size: 1.25rem; margin-bottom: 4px; }
.country-card-header p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.country-card-body { padding: 28px; }
.country-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.highlight-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text); }
.highlight-item .check { color: var(--gold); font-size: 0.9rem; }

/* ========== 22. PROCESS STEPS ========== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 24px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: 8%; right: 8%; height: 2px; background: var(--grad-gold); opacity: 0.25; z-index: 0; }
.step-card { text-align: center; padding: 20px 14px; position: relative; z-index: 1; }
.step-number { width: 66px; height: 66px; background: var(--grad-dark); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--gold); box-shadow: var(--shadow-gold); }
.step-card h4 { font-family: var(--font-body); font-size: 0.93rem; color: var(--navy-dark); margin-bottom: 8px; font-weight: 600; }
.step-card p { font-size: 0.81rem; color: var(--text-light); line-height: 1.55; }

/* ========== 23. APPLICATION FORM ========== */
.apply-form-wrapper { max-width: 860px; margin: 0 auto; background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.apply-form-header { background: var(--grad-dark); padding: 50px 40px; text-align: center; position: relative; }
.apply-form-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 65%); }
.apply-form-header h2 { color: var(--gold-light); font-size: 1.8rem; margin-bottom: 8px; position: relative; z-index: 1; }
.apply-form-header p { color: rgba(255,255,255,0.7); font-size: 0.88rem; position: relative; z-index: 1; }
.apply-form-body { padding: 44px; }
.form-section-title { font-family: var(--font-body); font-size: 1.03rem; color: var(--navy-dark); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: 10px; font-weight: 700; }
.form-step-num { width: 28px; height: 28px; min-width: 28px; background: var(--grad-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.76rem; font-weight: 700; color: var(--navy-dark); }
.form-section-block { margin-bottom: 36px; }

/* ========== 24. INFO BOX ========== */
.info-box { background: linear-gradient(135deg,rgba(201,168,76,0.05),rgba(201,168,76,0.02)); border: 1px solid rgba(201,168,76,0.22); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 20px; margin: 20px 0; }
.info-box h4 { color: var(--navy-dark); font-size: 0.9rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; }
.info-box p, .info-box li { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }
.info-box ul { padding-left: 16px; list-style: disc; display: flex; flex-direction: column; gap: 4px; }

/* ========== 25. VIDEO EMBED ========== */
.video-wrapper { position: relative; padding-bottom: 56.25%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ========== 26. FOOTER ========== */
.footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-logo { width: 78px; height: 78px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(201,168,76,0.38); margin-bottom: 16px; }
.footer-brand h3 { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 10px; line-height: 1.3; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 20px; max-width: 270px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1px solid rgba(201,168,76,0.22); border-radius: var(--radius-full); color: rgba(255,255,255,0.65); font-size: 0.76rem; transition: var(--trans); }
.social-link:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold-light); }
.footer-col h4 { font-size: 0.84rem; color: var(--gold-light); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--grad-gold); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.83rem; transition: var(--trans); display: flex; align-items: center; gap: 7px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; line-height: 1; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.fci-icon { color: var(--gold); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; min-width: 18px; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.58); font-size: 0.83rem; line-height: 1.55; transition: var(--trans); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.36); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.36); transition: var(--trans); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ========== 27. WHATSAPP FLOAT ========== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 997; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--trans); animation: waPulse 2.5s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,0.72); animation: none; }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip { position: absolute; right: calc(100% + 12px); background: var(--navy-dark); color: var(--white); font-size: 0.76rem; padding: 7px 12px; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--trans); pointer-events: none; font-family: var(--font-body); box-shadow: var(--shadow-md); }
.wa-tooltip::after { content: ''; position: absolute; top: 50%; left: 100%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy-dark); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; visibility: visible; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 35px rgba(37,211,102,0.82); } }

/* ========== 28. BACK TO TOP ========== */
.back-to-top { position: fixed; bottom: 98px; right: 28px; width: 44px; height: 44px; background: var(--navy-dark); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 996; box-shadow: var(--shadow-md); border: 1.5px solid rgba(201,168,76,0.3); transition: var(--trans); opacity: 0; visibility: hidden; transform: translateY(16px); font-size: 1.1rem; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-4px); }

/* ========== 29. SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-38px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(38px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========== 30. HERO KEYFRAMES ========== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatParticle { 0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; } 10% { opacity: 0.12; } 90% { opacity: 0.12; } 100% { transform: translateY(-20px) translateX(80px) rotate(360deg); opacity: 0; } }

/* ========== 31. RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-links > li > a { padding: 7px 10px; font-size: 0.82rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .stat-item:last-child { border-bottom: none; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-content-grid { gap: 40px; }
}
@media (max-width: 900px) {
    .about-content-grid { grid-template-columns: 1fr; }
    .about-image-wrapper { display: none; }
    .testimonial-card { flex: 0 0 50%; }
}
@media (max-width: 768px) {
    :root { --header-h: 68px; }
    section { padding: 60px 0; }
    .container { width: 100%; max-width: 100%; padding-inline: 18px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-actions .btn-gold { display: none; }
    .hero-title { font-size: clamp(2rem,8vw,2.8rem); }
    .hero-stats { gap: 24px; }
    .hero-stat .number { font-size: 1.7rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-top { padding: 50px 0 40px; }
    .process-steps::before { display: none; }
    .apply-form-body { padding: 26px; }
    .apply-form-header { padding: 36px 26px; }
    .testimonial-card { flex: 0 0 100%; }
    .page-hero { min-height: 320px; }
    .back-to-top { bottom: 88px; right: 20px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
    .container { width: 100%; max-width: 100%; padding-inline: 14px; }
    .hero-stats { flex-direction: column; gap: 14px; }
    .btn-group { flex-direction: column; align-items: flex-start; }
    .btn-group .btn { justify-content: center; width: 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .brand-tagline { display: none; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

.youtube-banner{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.35s ease;
}

.youtube-banner img{
    width:100%;
    display:block;
    transition:transform .5s ease;
}

.youtube-banner:hover img{
    transform:scale(1.05);
}

.youtube-banner:hover{
    transform:translateY(-6px);
}

.youtube-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px;
    color:#fff;
}

.play-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#ff0000;
    color:#fff;
    font-size:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.3s;
}

.youtube-banner:hover .play-icon{
    transform:scale(1.1);
}

.youtube-content h3{
    margin:0 0 10px;
    font-size:2rem;
    font-weight:700;
}

.youtube-content p{
    margin:0 0 20px;
    font-size:1rem;
    opacity:.95;
}

.watch-btn{
    display:inline-block;
    padding:12px 28px;
    background:#ff0000;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.youtube-banner:hover .watch-btn{
    background:#d60000;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.social-icon{
    width: 40px;;
    height: 40px;;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    transition:.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.social-icon:hover{
    transform:translateY(-5px) scale(1.08);
}

.youtube{
    background:#FF0000;
}

.instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.facebook{
    background:#1877F2;
}

.whatsapp{
    background:#25D366;
}