@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Light Theme (True Crimson) */
    --primary: #dc2626;
    /* Red 600 - Bold & Professional */
    --primary-light: #ef4444;
    /* Red 500 */
    --primary-dark: #b91c1c;
    /* Red 700 */
    --secondary: #0f172a;
    /* Slate 900 */
    --accent: #f97316;
    /* Orange 500 */
    --background: #f8fafc;
    /* Slate 50 */
    --surface: #ffffff;
    --text-primary: #1e293b;
    /* Slate 800 */
    --text-secondary: #475569;
    /* Slate 600 */
    --border: #e2e8f0;
    /* Slate 200 */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(226, 232, 240, 0.6);
    --radius: 16px;
    --radius-lg: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Background Elements Logic */
    --grid-opacity: 0.04;
    --grid-color: 0, 0, 0;
}

[data-theme="dark"] {
    /* Premium Dark Theme Tokens - "Midnight Elite" */
    --background: #020617;
    /* Slate 950 - Deepest Blue-Black */
    --surface: #0f172a;
    /* Slate 900 */
    --text-primary: #f8fafc;
    /* Slate 50 - High Contrast */
    --text-secondary: #cbd5e1;
    /* Slate 300 - Readable */
    --border: #1e293b;
    /* Slate 800 */
    --secondary: #f1f5f9;
    /* Slate 100 */
    --glass: rgba(15, 23, 42, 0.85);
    /* Dark Glass */
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);

    /* Highlight tweaks for dark mode */
    --primary: #ef4444;
    /* Red 500 - Bright for dark bg */
    --primary-light: #f87171;
    --primary-dark: #dc2626;

    /* Background Elements Logic */
    --grid-opacity: 0.03;
    --grid-color: 255, 255, 255;
}

/* Typewriter Cursor */
.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--primary);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    vertical-align: middle;
    height: 1.2em;
    opacity: 0.7;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-down {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.float-anim-up {
    animation: float-up 5s ease-in-out infinite;
}

.float-anim-down {
    animation: float-down 6s ease-in-out infinite;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    --card-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --card-shadow: 0 10px 30px -5px rgba(220, 38, 38, 0.4);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding: 130px 20px 20px;
    /* Reduced top padding as requested */
    min-height: 100vh;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Professional Background Styling */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--background);
    transition: background 0.6s ease;
}

[data-theme="dark"] body::before {
    /* "Deep Void" Base for Aurora */
    background: #020617;
}

/* Fluid Aurora Background (Replaces Grid) */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    /* No more static grid image */
    background-image: none;
}

/* Light Mode Wave (Default) */
.bg-grid::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Soft Pastel Wave for Light Mode */
    background:
        radial-gradient(circle at 80% 20%, rgba(244, 114, 182, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.08) 0%, transparent 60%);
    animation: rotate-glow 25s linear infinite;
    filter: blur(40px);
}

[data-theme="dark"] .bg-grid::after {
    /* "Fluid Crimson Aurora" */
    background:
        radial-gradient(circle at 80% 0%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        /* Top Right Red */
        radial-gradient(circle at 0% 50%, rgba(185, 28, 28, 0.1) 0%, transparent 50%),
        /* Left Dark Red */
        radial-gradient(circle at 50% 100%, rgba(124, 45, 18, 0.1) 0%, transparent 60%);
    /* Bottom Orange tint */
    filter: blur(80px);
    animation: pulse-glow 10s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Clean Professional Layout - No Frame */
body::after {
    display: none;
}


/* Theme Toggle Floating Styles */
.theme-toggle-float {
    position: fixed;
    right: 30px;
    bottom: 110px;
    /* Above WhatsApp button */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-md);
}

.theme-toggle-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--border);
}

.theme-toggle-float .fa-sun {
    display: none;
}

.theme-toggle-float .fa-moon {
    display: block;
}

[data-theme="dark"] .theme-toggle-float .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle-float .fa-moon {
    display: none;
}

/* Premium "Technical" Frame */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 20px solid var(--background);
    outline: 1px solid var(--border);
    /* Internal Hairline Border */
    outline-offset: -20px;
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.02);
    transition: border-color 0.4s ease, outline-color 0.4s ease;
}

@media (max-width: 768px) {
    body {
        padding: 90px 20px 20px;
        /* Ensure enough top padding for fixed header */
    }

    body::after {
        border-width: 10px;
        outline-offset: -10px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Brand Logo Styles --- */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

/* Main Text "CAMPUSORA" - Red Serif */
.brand-text {
    font-family: 'Cinzel', serif !important;
    font-size: 26px;
    /* Tweaked Specific Request */
    font-weight: 800;
    color: var(--primary) !important;
    /* Solid Red */
    background: none;
    -webkit-text-fill-color: initial;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.1));
}

/* Tagline "Global Education" - Black Serif */
.brand-tagline {
    font-family: 'Cinzel', serif !important;
    /* Switch to Serif */
    font-size: 15px;
    /* Tweaked Specific Request */
    color: var(--text-primary) !important;
    /* Black/Dark */
    font-weight: 700;
    text-transform: uppercase;
    /* Explicitly Uppercase as per "GLOBAL EDUCATION" text in prompt */
    letter-spacing: 0.05em;
    margin-top: 5px;
    margin-left: 2px;
}

/* Brand Text Override for Black Header - REMOVED */
/* .nav-top .brand-text { ... } */
/* .nav-top .brand-tagline { ... } */

.brand-logo:hover .brand-tagline {
    letter-spacing: 0.35em;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

/* --- Premium Effects (3D Tilt Only) --- */

/* 3D Tilt & Spotlight Base */
.step-card,
.service-card,
.uni-card {
    /* Enable 3D space */
    transform-style: preserve-3d;
    transform: perspective(1000px);
    /* For Spotlight */
    position: relative;
    overflow: hidden;
    /* Make sure spotlight doesn't bleed */
}

/* The Spotlight Glow Element (Added via JS, but styled here) */
.spotlight-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
    /* Click through */
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

[data-theme="dark"] .spotlight-glow {
    background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.06), transparent 40%);
}

.step-card:hover .spotlight-glow,
.service-card:hover .spotlight-glow,
.uni-card:hover .spotlight-glow {
    opacity: 1;
}

/* Tilt Content Layering (Optional: Pop things out) */
.step-card h3,
.step-card p,
.step-card i,
.service-card h3,
.service-card p,
.service-icon {
    transform: translateZ(20px);
    /* Subtle pop */
}





img {
    max-width: 100%;
    display: block;
}

/* Glassy Icon Badges */
/* Glassy Icon Badges */
.service-icon i,
.fa-circle-check {
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
    /* Gold Glow */
    transition: var(--transition);
}

/* Professional Card Design */
.step-card {
    background: #fff;
    /* Reset background */
    border: none;
    /* Remove standard border */
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: visible;
    /* Allow pseudo-element to show outside if needed, but inset approach keeps it inside visually */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
    z-index: 1;
    /* Ensure content is above ::before */
}

/* Gradient Border Pseudo-element */
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 3px;
    /* Border width */
    background: linear-gradient(45deg, #e5e7eb, #e5e7eb);
    /* Default Gray Border */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.3s ease;
}


.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(220, 38, 38, 0.3);
    background: linear-gradient(135deg, var(--primary) 0%, #ef4444 100%);
    /* Red Fill */
}

.step-card:hover::before {
    background: linear-gradient(45deg, #f97316, #ef4444, #f59e0b);
    /* Gradient Border on Hover */
    filter: brightness(1.2);
}

.step-card:hover h3,
.step-card:hover p {
    color: #fff;
}

/* Icon Box Badge */
.step-card .icon-box {
    width: 72px;
    /* Increased from 64px */
    height: 72px;
    /* Increased from 64px */
    background: #fef2f2;
    /* Light Red Background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-card:hover .icon-box {
    background: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Professional Icon Styling (No Blur) */
.step-card i {
    font-size: 2.25rem !important;
    /* Increased from 1.75rem */
    color: var(--primary);
    filter: none !important;
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary) !important;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0;
}

.step-card:hover i {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
    filter: none !important;
    transform: scale(1.1);
}

/* Remove old pseudo-elements */
.step-card::before,
.step-card::after {
    display: none;
}

.step-card:hover::before {
    transform: scale(1.5);
}

@keyframes heart-beat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.1);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1);
    }
}

.step-card:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(220, 38, 38, 0.8));
}

/* Service Icons - Glassy Circle Container */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-icon i {
    font-size: 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    /* Fixed: Should be text-primary, not secondary */
}

/* Universal Form Styling - CRITICAL for visibility */
input,
select,
textarea {
    background-color: var(--input-bg);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 1.0rem;
    transition: var(--transition);
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

option {
    background-color: var(--surface);
    color: var(--text-primary);
}


.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-link {
    transition: var(--transition);
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 5;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Destination Cards */
.dest-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.dest-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img-wrap img {
    transform: scale(1.1);
}

.dest-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    padding: 3px;
}

.dest-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.dest-info {
    padding: 2.5rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dest-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.dest-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.dest-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: gap 0.3s;
}

.dest-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

/* Button Pulse Animation */
@keyframes pulse-glow-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Continuous "Awesome" Pulse */
    animation: pulse-glow-red 2s infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

/* Shiny Sweep Effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    /* Brighter on hover */
    transform: translateY(-4px) scale(1.05);
    /* Increased lift and scale */
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.5);
    /* Deep glow */
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

/* Professional Two-Tier Header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.4s ease;
}

/* Hide Mobile Toggle on Desktop */
.mobile-toggle {
    display: none;
}

.nav-top {
    background: var(--surface);
    /* White/Theme Background */
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    color: var(--text-primary);
}

/* Brand Text Override for Black Header - REMOVED */
/* .nav-top .brand-text { ... } */
/* .nav-top .brand-tagline { ... } */

.nav-bottom {
    background: rgba(0, 0, 0, 0.9);
    /* 10% Transparency */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Stronger shadow for dark mode */
    transition: background-color 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bottom .open-enquiry {
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    /* Tighter gap */
    align-items: center;
}

.nav-link {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    /* Slightly smaller for better fit */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.6rem 0.8rem;
    /* Open padding but tighter gap */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    white-space: nowrap;
    /* Strict no-wrap */
}

/* Red Hover Effect */
.nav-link:hover {
    color: #fff;
    background: var(--primary);
    /* Red Background */
    box-shadow: 0 0 15px var(--primary);
    /* Red Glow */
    transform: translateY(-2px);
    /* Slight lift */
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Remove old pseudo-elements */
.nav-link::after {
    display: none;
}

.header-wrapper.scrolled .nav-top {
    height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
}

.header-wrapper.scrolled .nav-bottom {
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

/* Partner Grid Styling */
.partner-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.filter-pill:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.uni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.uni-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
}

.uni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px -5px rgba(220, 38, 38, 0.3);
    background: linear-gradient(135deg, var(--primary) 0%, #ef4444 100%);
    border-color: transparent;
}

.uni-card:hover h3,
.uni-card:hover .uni-loc,
.uni-card:hover .uni-desc {
    color: #fff !important;
}

.uni-card:hover .featured-badge {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.uni-card-thumb {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.uni-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uni-card .featured-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--background);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.featured-badge span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.uni-card-content {
    padding: 2rem;
}

.uni-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.uni-logo {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border: none;
    transition: var(--transition);
}

.uni-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.uni-loc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.uni-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 80px;
    /* Fixed min-height for alignment */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uni-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
    height: 100%;
    /* Ensure card takes full height of grid cell */
    display: flex;
    flex-direction: column;
}

.uni-card-content {
    padding: 2rem;
    flex: 1;
    /* Push content to fill space */
    display: flex;
    flex-direction: column;
}

.uni-brand {
    margin-bottom: auto;
    /* Push description to bottom if needed, or keep top */
    margin-bottom: 1.5rem;
}

/* Hero Badge Repositioning to prevent overlap */
.badge-stories {
    top: 25% !important;
    /* Lowered from 8% */
    right: 5% !important;
}

/* Developer Badge Styling */
.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.developer-badge:hover {
    color: var(--text-primary);
}

.developer-badge i {
    color: #25d366 !important;
    /* WhatsApp Green */
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy Popup */
}

.developer-badge:hover i {
    transform: scale(1.4) rotate(10deg);
    filter: drop-shadow(0 4px 6px rgba(37, 211, 102, 0.4));
}

.badge-visa {
    top: 35% !important;
    left: 5% !important;
}

@media (max-width: 1300px) {
    .badge-stories {
        right: 2% !important;
        transform: scale(0.9);
    }
}

/* Hero Section */
.hero {
    padding-top: 80px;
    padding-bottom: 120px;
    background: transparent;
    text-align: center;
    position: relative;
}

/* Clean Professional Hero Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Very subtle gradient for depth without distraction */
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.03), transparent 60%);
    z-index: 0;
}

.hero-content {
    max-width: 1000px;
    /* Increased to prevent text wrapping */
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge-tag {
    background: var(--surface);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.typing-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Search Bar */
.search-hero {
    margin-bottom: 3rem;
}

/* Stylish Glass Pill Search Bar */
.search-container {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem;
    border-radius: 9999px;
    /* Full pill */
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

[data-theme="light"] .search-container {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-container:focus-within {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(var(--primary), 0.3);
    border-color: var(--primary);
}

.search-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-left: 1.25rem;
}

.search-input {
    flex: 1;
    border: none !important;
    /* Override universal */
    background: transparent !important;
    /* Override universal */
    padding: 0.8rem 1rem !important;
    /* Override universal */
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
    color: var(--text-primary);
    box-shadow: none !important;
    /* Override universal */
}

.search-btn {
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    white-space: nowrap;
}

.hero-trust {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-trust i {
    color: #10B981;
    /* Success Green */
    margin-right: 0.25rem;
}

/* Step Cards */
/* Global Card Component Redesign */
.step-card,
.service-card,
.uni-card,
.stat-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Text Colors - Force White */
/* Default Text Colors - Dark */
.step-card h3,
.step-card h4,
.service-card h3,
.service-card h4,
.uni-card h3,
.stat-item h3 {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.step-card p,
.service-card p,
.uni-card p,
.stat-item p {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* Icon Badge Styling - White Circle with Red Icon */
/* Icon Badge Styling - Default Pale Red */
.step-card .icon-box,
.service-card .service-icon,
.service-icon,
.uni-card .icon-wrapper {
    background: rgba(220, 38, 38, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    margin-bottom: 0 !important;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Icon itself */
/* Icon itself - Red by default */
.step-card .icon-box i,
.service-card .service-icon i,
.service-icon i,
.uni-card i {
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

/* Hover Effect - Simple Lift */
/* Hover Effect - Red Gradient & White Text */
.step-card:hover,
.service-card:hover,
.uni-card:hover,
.stat-item:hover {
    background: var(--card-gradient);
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
}

/* Hover - Force Text White */
.step-card:hover h3,
.step-card:hover h4,
.step-card:hover p,
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover p,
.uni-card:hover h3,
.uni-card:hover p,
.stat-item:hover h3,
.stat-item:hover p {
    color: #fff !important;
}

/* Hover - Icon Badge turns White */
.step-card:hover .icon-box,
.service-card:hover .service-icon,
.uni-card:hover .icon-wrapper {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hover - Icon stays Red (or ensures it's red against white badge) */
.step-card:hover .icon-box i,
.service-card:hover .service-icon i,
.uni-card:hover i {
    color: var(--primary);
}

/* Remove old specific styles that clash */
.step-card::before,
.service-card::before {
    display: none !important;
}

.step-num {
    color: rgba(255, 255, 255, 0.1) !important;
}

/* Fix Stats Grid specifics if needed */
.stat-item {
    align-items: center;
    text-align: center;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Beautiful Hover Effect for Step Cards */


/* Services Grid */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Specific Service Card Styles Removed - Now using Global Card Component Redesign */

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Modern Stats Section - Refined Height */
.stats {
    background: linear-gradient(135deg, #050816 0%, #111827 100%);
    color: #fff;
    padding: 60px 0;
    /* Reduced from 100px */
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 92, 53, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1.5rem;
    /* Slightly reduced */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Interactive Spotlight Effect */
.stat-item::before {
    content: '';
    position: absolute;
    top: var(--y, -100%);
    left: var(--x, -100%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3,
.stat-item p {
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-item h3 {
    font-size: 3rem;
    /* Slightly reduced from 3.5rem */
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.stat-item p {
    font-size: 1rem;
    color: #9CA3AF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Destinations Section */
.destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    z-index: 2;
}

.destination-overlay h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
}

/* Enquiry Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: var(--transition);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 95%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    overflow: hidden;
}

.modal-side {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e1b4b 100%);
    /* Deep purple gradient */
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-side h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.modal-side-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.modal-side-item i {
    font-size: 1.25rem;
    opacity: 0.8;
}

.modal-form-area {
    flex: 1.5;
    padding: 4rem;
}

/* Modal Specific Polish */

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-side {
        padding: 2rem;
    }

    .modal-form-area {
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Responsiveness */

/* Responsiveness */
/* --- MOBILE LAYOUT OVERHAUL (Vertical Stack) --- */
@media (max-width: 768px) {

    /* 1. Global Reset for Mobile */
    body {
        padding: 80px 15px 15px !important;
        /* Top padding for fixed header */
        overflow-x: hidden;
    }

    .container {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section {
        padding: 40px 0 !important;
        /* Visual breathing room but compact */
    }

    /* 2. Header & Navigation (Solid & Sticky) */
    /* 2. Header & Navigation (Solid & Sticky) */
    .header-wrapper,
    .header-wrapper.scrolled {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: var(--surface) !important;
        /* White Background for Mobile to match Top Bar */
        height: 70px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        transition: none !important;
    }

    .nav-top {
        display: block !important;
        padding: 0.5rem 0 !important;
        border-bottom: none !important;
    }

    /* Force Nav Top to stay visible on scroll for Mobile (Logo + Toggle) */
    .header-wrapper.scrolled .nav-top {
        height: auto !important;
        padding: 0.5rem 0 !important;
        overflow: visible !important;
        opacity: 1 !important;
        display: block !important;
        border-bottom: none !important;
    }

    /* Hide the contact info (phone/email) in nav-top on mobile */
    .nav-top .container>div:last-child {
        display: none !important;
    }

    .nav-bottom {
        background: transparent !important;
        padding: 1rem 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Fix Nav Container Layout for Mobile */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Mobile Toggle Styling */
    .mobile-toggle {
        display: block !important;
        background: transparent;
        border: none;
        font-size: 1.8rem;
        color: var(--text-primary) !important;
        /* Dark Toggle for White Header */
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .brand-logo img {
        height: 2.5rem !important;
        /* Smaller logo */
    }

    .nav-links {
        background: #000000 !important;
        /* Black Menu */
        width: 100%;
        top: 70px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 1rem;

        display: none;
        /* Hidden by default */
        flex-direction: column;
        position: fixed;
        left: 0;
        right: 0;
    }

    /* Active State (Toggled by JS) */
    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 3. Hero Section (Vertical Stack) */
    .hero {
        padding-top: 20px !important;
        padding-bottom: 40px !important;
        display: flex;
        flex-direction: column;
        height: auto !important;
        min-height: auto !important;
        text-align: center;
        align-items: center !important;
        /* Center children like buttons */
    }

    .hero-content {
        margin: 0 auto !important;
        position: static !important;
        /* Remove absolute overlap potential */
        transform: none !important;
        width: 100% !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        /* Readable size */
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* Hide decorative overlapping blobs/elements */
    .hero::before,
    .hero::after {
        display: none !important;
    }

    /* Disable floating badges completely */
    .badge-stories,
    .badge-visa,
    .hero-badge {
        display: none !important;
    }

    /* 4. Grids & Cards (Linear Flow) */
    .grid,
    .uni-grid,
    .services-grid,
    .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* Card Styling Reset */
    .step-card,
    .service-card,
    .uni-card,
    .stat-item {
        width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        /* Kill 3D effects */
        perspective: none !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
        border: 1px solid var(--border) !important;
    }

    .step-card:hover,
    .service-card:hover,
    .uni-card:hover {
        transform: none !important;
        /* No hover movements on mobile */
    }

    /* 5. Search Bar */
    .search-container {
        flex-direction: column !important;
        width: 100% !important;
        background: var(--surface) !important;
        border: 1px solid var(--border) !important;
    }

    .search-input {
        width: 100% !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .search-btn {
        width: 100% !important;
        border-radius: 0 0 20px 20px !important;
    }

    /* 6. Footer */
    .site-footer {
        padding: 40px 0 !important;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    /* 7. Modal (Full Screen) */
    .modal-content {
        flex-direction: column !important;
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
        margin: 0 !important;
    }

    .modal-side {
        padding: 1.5rem !important;
        flex: 0 0 auto !important;
        /* Natural height */
    }

    .modal-form-area {
        padding: 1.5rem !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    /* Mobile Toggle */
    .mobile-toggle {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
    }

    /* Hide Booking Button on Mobile Nav */
    /* Hide Booking Button on Mobile Nav */
    .nav-bottom .btn-primary {
        display: none !important;
    }
}

/* Footer Contact Icons - Red with White */
.contact-icon-red {
    background: var(--primary);
    color: #fff !important;
    /* Force white icon */
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.8rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(220, 38, 38, 0.3);
    transition: var(--transition);
}

.contact-icon-red:hover {
    transform: scale(1.1) rotate(10deg);
    background: #fff;
    color: var(--primary) !important;
}

/* Card Styling Consistency */
.step-card:hover,
.service-card:hover,
.uni-card:hover,
.stat-item:hover,
.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-card i,
.service-card i,
.uni-card i {
    color: var(--primary);
    /* Ensure consistent red icon color */
}

/* Footer Modernization */
.site-footer {
    background: #000000 !important;
    position: relative;
    padding: 80px 0 40px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Fix for long email address in footer */
.site-footer ul li {
    font-size: 0.85rem !important;
}

/* Top Gradient Line */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.5;
    box-shadow: 0 0 10px var(--primary);
}

/* Developer Credit - Clean & Professional */
.developer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.developer-credit:hover {
    opacity: 1;
    color: #fff;
    transform: translateY(-1px);
}

.developer-credit i {
    color: #25D366;
    /* WhatsApp Green */
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.developer-credit:hover i {
    transform: scale(1.2);
}

/* Developer Credit - Red Border Pill Style */
/* Developer Credit - Red Border Pill Style (State Based) */
.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #050505;
    /* Deep Black */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Subtle Border Default */
    border-radius: 50px;
    /* Pill Shape */
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.developer-badge span {
    color: #6B7280;
    /* Grey for "Developed by" */
    font-size: 0.85rem;
    font-weight: 400;
}

.developer-name {
    color: #ffffff !important;
    /* White Name */
    background: none;
    -webkit-text-fill-color: initial;
    font-weight: 600;
    font-size: 0.9rem;
}

.developer-badge:hover,
.developer-badge:focus,
.developer-badge:active {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    /* Strong Red Glow */
    border-color: #ff0000;
    /* Red Border on Hover */
}

.developer-badge i {
    color: #25D366;
    /* WhatsApp Green */
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.developer-badge:hover i {
    transform: scale(1.1) rotate(10deg);
}

/* Leadership Card Hover Fix */
.leadership-card {
    transition: all 0.3s ease;
}

.leadership-card:hover {
    background: #000 !important;
    /* User requested Black */
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.leadership-card:hover h3,
.leadership-card:hover p {
    color: #fff !important;
    /* Ensure text is visible (White) on Black BG */
}

/* Leadership Specific Hover Effects */
.leadership-title {
    transition: all 0.3s ease;
    cursor: default;
}

.leadership-title:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 1px var(--primary);
    /* Simulated Boldness/Glow */
}

/* Fix for Footer Icons Visibility */
.site-footer i {
    background: #fff;
    color: #000 !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem !important;
    /* Override inline margin */
    font-size: 1rem !important;
}

.site-footer ul li {
    display: flex;
    align-items: center;
}

/* Override the white text on card hover for the Role/Title */
.leadership-card:hover .leadership-role {
    color: var(--primary) !important;
    /* Stay Red */
    font-weight: 800 !important;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    display: inline-block;
}

/* Premium Developer Badge Styling */
.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #d1d5db;
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: #111827;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.developer-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #10b981, transparent);
    background-size: 200% 100%;
    animation: premium-border-sweep 3s linear infinite;
    z-index: -1;
    border-radius: 9999px;
}

.developer-badge::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #111827;
    border-radius: 9999px;
    z-index: -1;
    transition: background 0.3s ease;
}

@keyframes premium-border-sweep {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.developer-badge:hover,
.developer-badge:focus,
.developer-badge:active {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.developer-badge:hover::after {
    background: #1f2937;
}

.developer-badge span {
    display: inline-flex;
    gap: 0.35rem;
}

.developer-badge i {
    color: #25d366;
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.developer-badge:hover i {
    transform: scale(1.15) rotate(10deg);
}

/* Fix for long email address in Header */
.nav-top span {
    font-size: 0.85rem !important;
    letter-spacing: 0.02em;
}

/* Destination Detail Page Styles */
.dest-header-area {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    padding: 120px 0 160px;
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
}

.dest-header-area::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--background);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}

.dest-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.dest-header-area h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0;
    font-weight: 700;
}

.dest-image-overlap {
    position: relative;
    z-index: 3;
    margin-top: -120px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

.dest-image-overlap img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--surface);
}

.dest-intro {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
}

.dest-orange-btn {
    background: linear-gradient(135deg, #FF8C5A 0%, #FF5A5A 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 20px -5px rgba(255, 90, 90, 0.4);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    margin: 1rem auto 4rem;
}

.dest-orange-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(255, 90, 90, 0.5);
    color: white;
}

.dest-divider-line {
    height: 1px;
    background: var(--border);
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.dest-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.dest-content-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.dest-content-col p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-fact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.quick-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quick-fact-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quick-fact-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.dest-table-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.dest-table-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.dest-table {
    width: 100%;
    border-collapse: collapse;
}

.dest-table th {
    background: rgba(239, 68, 68, 0.3);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid white;
}

.dest-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.dest-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.02);
}

.dest-table tr:last-child td {
    background: rgba(239, 68, 68, 0.15);
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .dest-image-overlap {
        flex-direction: column;
        align-items: center;
        margin-top: -80px;
    }

    .dest-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dest-header-area h1 {
        font-size: 2.5rem;
    }
}