/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (PREMIUM LIGHT THEME)
   ========================================================================== */
:root {
    --bg-light: #FFFFFF;          /* Crisp White Base */
    --bg-alt: #F8FAFC;            /* Clean Cool Light Slate */
    --bg-card: rgba(255, 255, 255, 0.85); /* Premium Light Glassmorphism */
    --bg-card-hover: #FFFFFF;
    --border-glass: rgba(0, 82, 255, 0.08);
    --border-electric: rgba(0, 82, 255, 0.25);
    
    --color-primary: #0A1128;     /* Brand Navy Blue */
    --color-electric: #00D2FF;    /* Bright Electric Cyan */
    --color-blue-deep: #0052FF;   /* Brand Royal Blue */
    --color-text-main: #0F172A;   /* Deep Slate Navy for high contrast readability */
    --color-text-muted: #475569;  /* Muted Slate Gray for descriptions */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-glow: 0 4px 20px rgba(0, 82, 255, 0.12);
    --shadow-glow-strong: 0 8px 30px rgba(0, 82, 255, 0.25);
    --shadow-glass: 0 10px 30px -10px rgba(0, 82, 255, 0.08);
    --shadow-card-hover: 0 20px 40px -15px rgba(0, 82, 255, 0.16);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 82, 255, 0.15);
    border-radius: 10px;
    border: 2px solid var(--bg-alt);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-blue-deep);
    box-shadow: var(--shadow-glow);
}

/* Selection Highlight */
::selection {
    background: rgba(0, 82, 255, 0.15);
    color: var(--color-primary);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.section-padding {
    padding: 90px 0;
}

.section-bg-alt {
    position: relative;
    background: var(--bg-alt);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 20%, var(--color-blue-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-electric {
    color: var(--color-blue-deep);
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-electric);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-primary) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 82, 255, 0.05);
    color: var(--color-blue-deep);
    border: 1px solid rgba(0, 82, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(0, 82, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-blue-deep);
    border: 1px solid var(--color-blue-deep);
}

.btn-outline:hover {
    background: var(--color-blue-deep);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
}

.btn-glowing {
    background: transparent;
    color: var(--color-blue-deep);
    border: 1px solid var(--color-blue-deep);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-glowing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.15), transparent);
    transition: 0.5s;
}

.btn-glowing:hover::before {
    left: 100%;
}

.btn-glowing:hover {
    background: rgba(0, 82, 255, 0.05);
    box-shadow: var(--shadow-glow-strong);
    transform: scale(1.03);
}

/* Sections Global Headers */
.section-header {
    margin-bottom: 55px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-blue-deep);
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-weight: 800;
    color: var(--color-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

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

/* ==========================================================================
   GLOBAL LIGHT BACKGROUND ELEMENTS
   ========================================================================== */
.bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.8;
    background-image: radial-gradient(rgba(0, 82, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-repeat: repeat;
}

.bg-glow-1 {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}

.bg-glow-2 {
    position: fixed;
    bottom: -15%;
    left: -10%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, rgba(255, 255, 255, 0) 75%);
    filter: blur(120px);
    z-index: -2;
    pointer-events: none;
}

.floating-bg-airplane {
    position: fixed;
    font-size: 1.4rem;
    color: rgba(0, 82, 255, 0.08);
    z-index: -1;
    pointer-events: none;
    transform: rotate(45deg);
    top: 30%;
    left: -50px;
    animation: driftPlane 25s linear infinite;
}

@keyframes driftPlane {
    0% {
        left: -50px;
        top: 30%;
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    85% {
        opacity: 0.6;
    }
    100% {
        left: 105%;
        top: 65%;
        opacity: 0;
    }
}

/* ==========================================================================
   CUSTOM CURSOR (Desktops Only)
   ========================================================================== */
.custom-cursor {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--color-blue-deep);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.15);
    opacity: 0;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-blue-deep);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

body:hover .custom-cursor,
body:hover .custom-cursor-dot {
    opacity: 1;
}

.custom-cursor.active {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 82, 255, 0.05);
    border-color: var(--color-blue-deep);
}

/* ==========================================================================
   HEADER / NAVIGATION (LIGHT THEME)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 82, 255, 0.06);
    box-shadow: 0 4px 25px rgba(0, 82, 255, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Setup matching brand blue */
/* Logo Styling for Brand Image */
.logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 85px; /* Large and clearly visible */
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.main-header.scrolled .brand-logo-img {
    height: 65px; /* Adjust slightly on scroll for header fit */
}

.footer-logo-container {
    background: #FFFFFF;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.footer-logo-img {
    height: 75px; /* Large and clearly visible in footer */
    width: auto;
    display: block;
}

/* Nav Menu */
.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-deep);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Mobile Toggle Animation */
.nav-toggle.open .hamburger {
    background: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   HERO SECTION (LIGHT MULTI-PAGE DESIGN)
   ========================================================================== */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-light) 100%);
}

.hero-container {
    align-items: center;
}

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

.hero-tag {
    margin-bottom: 24px;
}

.tag-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-blue-deep);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 82, 255, 0.03);
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.35;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-blue-deep);
    padding-left: 16px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Right Globe Canvas */
.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.globe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-globe-map-container {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.hero-globe-text-overlay {
    position: absolute;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 82, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.1);
    z-index: 10;
    pointer-events: none;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.hero-globe-map-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 82, 255, 0.16);
    border: 1.5px solid rgba(0, 82, 255, 0.1);
    animation: rotateGlobeFlat 35s linear infinite;
    object-fit: cover;
}

@keyframes rotateGlobeFlat {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-globe-orbit {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border: 1.5px dashed rgba(0, 82, 255, 0.18);
    border-radius: 50%;
    animation: orbitPlane 14s linear infinite;
    pointer-events: none;
}

.hero-globe-orbit i {
    position: absolute;
    top: -10px;
    left: 50%;
    color: var(--color-blue-deep);
    font-size: 1.25rem;
    transform: rotate(45deg);
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.4);
}

@keyframes orbitPlane {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating flags container (Light styling) */
.floating-flag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 82, 255, 0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px rgba(0, 82, 255, 0.08);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-flag img {
    width: 22px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.floating-flag span {
    color: var(--color-primary);
}

/* Flag Coordinates */
.uk-flag {
    top: 15%;
    left: 10%;
    animation: floatingMotion 6s ease-in-out infinite alternate;
}

.usa-flag {
    bottom: 15%;
    left: 5%;
    animation: floatingMotion 8s ease-in-out infinite alternate;
}

.canada-flag {
    top: 20%;
    right: 5%;
    animation: floatingMotion 7s ease-in-out infinite alternate;
}

.europe-flag {
    bottom: 20%;
    right: 10%;
    animation: floatingMotion 9s ease-in-out infinite alternate;
}

@keyframes floatingMotion {
    0% {
        transform: translateY(0) rotate(-1deg);
    }
    100% {
        transform: translateY(-18px) rotate(1.5deg);
    }
}

/* ==========================================================================
   PAGE HERO / HEADER (For inner pages: About, Services, etc.)
   ========================================================================== */
.page-hero {
    padding-top: 160px;
    padding-bottom: 70px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-light) 100%);
    border-bottom: 1px solid rgba(0, 82, 255, 0.05);
}

.page-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-blue-deep);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.75rem;
}

/* ==========================================================================
   STATS SECTION (LIGHT THEME)
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 82, 255, 0.05);
    border-bottom: 1px solid rgba(0, 82, 255, 0.05);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 20px 10px;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -15px;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 82, 255, 0.1), transparent);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-blue-deep);
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-number-wrapper {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix {
    color: var(--color-blue-deep);
    font-weight: 700;
}

.stat-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ==========================================================================
   WHY CHOOSE US / ABOUT COMPONENTS (LIGHT THEME)
   ========================================================================== */
.about-grid {
    margin-top: 40px;
}

.about-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 82, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 229, 255, 0.04) 100%);
    border: 1px solid rgba(0, 82, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-blue-deep);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0, 82, 255, 0.03);
}

.about-card:hover .about-card-icon {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-electric) 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-strong);
    transform: scale(1.08) rotate(-5deg);
    border-color: transparent;
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

.about-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   SERVICES (3D TILT CARDS - LIGHT THEME)
   ========================================================================== */
.services-grid {
    margin-top: 50px;
}

.service-card {
    padding: 45px 35px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.service-icon {
    font-size: 2.4rem;
    color: var(--color-blue-deep);
    margin-bottom: 28px;
    transform: translateZ(30px);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: translateZ(50px) scale(1.05);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-weight: 700;
    transform: translateZ(25px);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    transform: translateZ(20px);
}

.service-bullets {
    margin-bottom: 30px;
    transform: translateZ(15px);
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    transform: translateZ(25px);
    margin-top: auto;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translate(3px, -3px);
}

/* ==========================================================================
   COUNTRIES SECTION (LIGHT THEME)
   ========================================================================== */
.countries-grid {
    margin-top: 50px;
}

.country-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    background: #FFFFFF;
}

.country-flag-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.98) 100%);
}

.country-badge-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.country-badge-flag img {
    width: 30px;
    height: 18px;
    object-fit: cover;
    display: block;
}

.country-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.country-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.country-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.55;
    flex-grow: 1;
}

.country-card:hover .flag-img {
    transform: scale(1.1);
}

/* ==========================================================================
   VISA PROCESS TIMELINE (LIGHT THEME)
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 82, 255, 0.06);
    transform: translateX(-50%);
    border-radius: 10px;
    overflow: hidden;
}

.timeline-progress {
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--color-electric), var(--color-blue-deep));
    box-shadow: var(--shadow-glow);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-right {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 40px;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: 2px solid rgba(0, 82, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-text-muted);
    z-index: 5;
    transition: var(--transition-smooth);
}

.timeline-left .timeline-icon {
    right: -22px;
}

.timeline-right .timeline-icon {
    left: -22px;
}

.timeline-item:hover .timeline-icon {
    border-color: var(--color-blue-deep);
    color: var(--color-blue-deep);
    box-shadow: var(--shadow-glow-strong);
    transform: scale(1.15);
}

.timeline-content {
    padding: 30px;
    position: relative;
}

.timeline-content .step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(0, 82, 255, 0.08);
    position: absolute;
    top: 15px;
}

.timeline-left .timeline-content .step-num {
    left: 20px;
}

.timeline-right .timeline-content .step-num {
    right: 20px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   TESTIMONIALS SLIDER SECTION (LIGHT THEME)
   ========================================================================== */
.slider-wrapper {
    max-width: 850px;
    margin: 40px auto 0;
    padding: 60px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.testimonials-slider {
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-rating {
    color: #FFB300;
    font-size: 0.95rem;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-text-main);
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-blue-deep) 100%);
    padding: 2px;
}

.avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.author-destination {
    margin-left: auto;
}

.author-destination img {
    width: 32px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 82, 255, 0.06);
    padding-top: 25px;
}

.slider-btn {
    background: rgba(0, 82, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--color-blue-deep);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--color-blue-deep);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
    border-color: var(--color-blue-deep);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-blue-deep);
    width: 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   FAQ ACCORDION SECTION (LIGHT THEME)
   ========================================================================== */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: #FFFFFF;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    color: var(--color-primary);
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--color-blue-deep);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--border-electric);
    box-shadow: var(--shadow-glow);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 30px 24px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   CONTACT SECTION & FORM (LIGHT THEME)
   ========================================================================== */
.contact-grid {
    margin-top: 50px;
    align-items: stretch;
}

.contact-info-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
}

.contact-info-panel h3,
.inquiry-form-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(0, 82, 255, 0.04);
    border: 1px solid rgba(0, 82, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-deep);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-text a,
.detail-text p {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
}

.detail-text a:hover {
    color: var(--color-blue-deep);
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.1);
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    line-height: 0;
}

/* Inquiry Form */
.inquiry-form-panel {
    padding: 40px;
    background: #FFFFFF;
}

.inquiry-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label .required {
    color: #FF4B4B;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-alt);
    border: 1px solid rgba(0, 82, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group select option {
    background-color: #FFFFFF;
    color: var(--color-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-blue-deep);
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.1);
    background: #FFFFFF;
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   FOOTER (KEPT ELEGANT DARK NAVY FOR LUXURY BRANDING)
   ========================================================================== */
.main-footer {
    background: #050b18; /* Anchor footer in classic deep dark navy */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
    color: #FFFFFF;
}

.main-footer .logo-text .brand-name {
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h3 {
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-blue-deep);
    border-radius: 2px;
}

.brand-col .logo {
    margin-bottom: 18px;
}

.brand-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-electric);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.brand-desc {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 0.95rem;
}

.social-links a:hover {
    color: #FFFFFF;
    background: var(--color-blue-deep);
    border-color: var(--color-blue-deep);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #94A3B8;
}

.footer-links a:hover {
    color: var(--color-electric);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.5;
}

.footer-contact-info i {
    color: var(--color-electric);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-info a:hover {
    color: var(--color-electric);
}

.footer-bottom {
    padding: 30px 0;
    color: #64748B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   FLOATING ELEMENTS (BACK-TO-TOP & WHATSAPP)
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 82, 255, 0.08);
    color: var(--color-blue-deep);
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.08);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--color-blue-deep);
    border-color: var(--color-blue-deep);
    box-shadow: var(--shadow-glow-strong);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.1s;
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #FFFFFF;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition-smooth);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.4;
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-badge {
    position: absolute;
    right: 65px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 82, 255, 0.12);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.08);
}

.whatsapp-float:hover .whatsapp-badge {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ==========================================================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

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

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-visual {
        height: 440px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-left {
        text-align: left;
    }

    .timeline-right {
        left: 0;
    }

    .timeline-left .timeline-icon,
    .timeline-right .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
        right: auto;
    }

    .timeline-left .timeline-content .step-num {
        right: 20px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-subtitle {
        border-left: none;
        padding-left: 0;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid rgba(0, 82, 255, 0.08);
        padding: 100px 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 82, 255, 0.05);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .header-cta {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }
    
    .stat-card:nth-child(even)::after {
        display: none;
    }

    .slider-wrapper {
        padding: 40px 24px;
    }

    .contact-info-panel,
    .inquiry-form-panel {
        padding: 30px 20px;
    }

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card::after {
        display: none !important;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .faq-trigger {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-content-inner {
        padding: 0 20px 20px;
    }
}

/* ==========================================================================
   BACKGROUND TRAVEL LANDMARKS WATERMARK SLIDER
   ========================================================================== */
.bg-travel-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -4;
    pointer-events: none;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    filter: grayscale(30%) contrast(90%);
}

.bg-slide.active {
    opacity: 0.045; /* Faded transparent background watermark */
}

/* ==========================================================================
   MISSION & VISION SECTION
   ========================================================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mission-card, .vision-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--color-blue-deep);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ==========================================================================
   FOUNDER MESSAGE SECTION
   ========================================================================== */
.founder-section {
    position: relative;
    padding: 80px 0;
    background: var(--bg-alt);
}

.founder-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-glass);
}

.founder-img-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 420px;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 82, 255, 0.1);
    text-align: center;
}

.founder-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.founder-badge span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.founder-message-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-signature {
    margin-top: 20px;
}

.founder-sig-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.founder-sig-title {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 82, 255, 0.08);
}

.team-img-container {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(0, 82, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-fallback {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-blue-deep);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: var(--shadow-glow-strong);
}

.team-info {
    padding: 30px 20px;
}

.team-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-info span {
    font-size: 0.88rem;
    color: var(--color-blue-deep);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   OFFICE GALLERY SECTION
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-glass);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 25px 30px;
    color: #FFFFFF;
}

.gallery-caption h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ==========================================================================
   VISA PROCESS AND DETAILS (SERVICES EXPANSION)
   ========================================================================== */
.visa-categories-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.visa-category-panel {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 24px;
}

.visa-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visa-meta-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 82, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-blue-deep);
}

.visa-panel-meta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.visa-panel-meta .visa-countries {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.visa-panel-meta .visa-countries strong {
    color: var(--color-primary);
}

.visa-panel-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 1px solid rgba(0, 82, 255, 0.08);
    padding-left: 40px;
}

.visa-panel-body p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.visa-process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.visa-step {
    position: relative;
}

.visa-step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-blue-deep);
    background: rgba(0, 82, 255, 0.05);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}

.visa-step h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.visa-step p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   VISA STAMPS SHOWCASE (TESTIMONIALS)
   ========================================================================== */
.visa-stamps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.visa-stamp-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
    background: #FFFFFF;
}

.visa-stamp-img-container {
    height: 160px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.02), rgba(0, 82, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 82, 255, 0.05);
}

.visa-stamp-icon {
    font-size: 3.5rem;
    color: rgba(0, 82, 255, 0.15);
}

.visa-stamp-info {
    padding: 20px;
}

.visa-stamp-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.visa-stamp-info span {
    font-size: 0.8rem;
    color: var(--color-blue-deep);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.visa-stamp-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.stamp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   VIDEO TESTIMONIAL MOCK
   ========================================================================== */
.video-testimonials-section {
    padding: 80px 0;
}

.video-mock-container {
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--border-glass);
    position: relative;
    cursor: pointer;
    background: #000000;
}

.video-mock-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
    opacity: 0.75;
    transition: var(--transition-smooth);
    display: block;
}

.video-mock-container:hover .video-mock-thumbnail {
    transform: scale(1.02);
    opacity: 0.65;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-strong);
    transition: var(--transition-smooth);
}

.video-mock-container:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-electric);
}

.video-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px;
    color: #FFFFFF;
}

.video-caption-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.video-caption-overlay p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ==========================================================================
   APPLY ONLINE FORM STYLING
   ========================================================================== */
.apply-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.apply-form-container {
    max-width: 850px;
    margin: 0 auto 80px;
}

.apply-glass-card {
    padding: 50px;
    border-radius: 28px;
}

.apply-glass-card h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.apply-glass-card .form-subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .founder-img-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    .visa-category-panel {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .visa-panel-body {
        border-left: none;
        padding-left: 0;
    }
    .visa-process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .visa-process-flow {
        grid-template-columns: 1fr;
    }
    .visa-stamps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .apply-glass-card {
        padding: 30px 20px;
    }
    .video-mock-thumbnail {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .visa-stamps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DROPDOWN MENU STYLING (NAVBAR CLEANUP)
   ========================================================================== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 82, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #FFFFFF transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted) !important;
    border-radius: 8px;
    transition: var(--transition-fast);
    text-align: left;
}

.dropdown-menu li a::after {
    display: none !important; /* Remove nav-link underline effect in dropdowns */
}

.dropdown-menu li a:hover {
    background: rgba(0, 82, 255, 0.05);
    color: var(--color-blue-deep) !important;
    padding-left: 18px;
}

/* Mobile Dropdown Overrides */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 5px 0 5px 15px;
        display: none;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        transition: none;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown.active-mobile .dropdown-menu {
        display: flex;
    }
    
    .dropdown.active-mobile .nav-chevron {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li a {
        padding: 8px 12px;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 14px;
        background: transparent;
        color: var(--color-blue-deep) !important;
    }
}

/* ==========================================================================
   IMMERSIVE MOTION DESIGN & SCROLL PROGRESS
   ========================================================================== */

/* Immersive Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-blue-deep) 0%, var(--color-electric) 100%);
    box-shadow: 0 2px 10px rgba(0, 82, 255, 0.35);
}

