/* 
 * VISTARA Global Education Limited
 * Premium Mobile-First Design — Dark & Solid Palette
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors extracted from logo */
    --clr-navy: #19366B;
    --clr-navy-dark: #0D2146;
    --clr-gold: #D7A640;
    --clr-gold-light: #EBC368;
    --clr-blue: #2E5CA8;
    --clr-teal: #3B8DBA;
    --clr-white: #ffffff;
    --clr-light: #f4f6f9;
    --clr-gray: #6c757d;
    --clr-dark: #111827;

    /* Typography */
    --font-sans: 'DM Sans', 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing & Layout */
    --nav-height: 80px;
    --section-pad: 6rem 0;
    --section-pad-mobile: 4rem 0;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 60px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 20px rgba(215,166,64,0.35);
    --shadow-navy: 0 8px 20px rgba(25,54,107,0.35);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--clr-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

/* ==========================================================================
   Typography — Multicolor Animated Headings
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--clr-navy-dark);
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
}

/* Multicolor gradient text animation for all headings */
@keyframes headingColorShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 50% 0%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

.heading-premium,
.section-title {
    font-family: var(--font-serif);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(270deg, 
        var(--clr-navy-dark), 
        var(--clr-blue), 
        var(--clr-gold), 
        var(--clr-teal), 
        var(--clr-navy-dark)
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headingColorShift 6s ease infinite;
    margin-bottom: 1.5rem;
}

.heading-premium span,
.section-title span {
    -webkit-text-fill-color: transparent;
}

/* Feature card titles also get animated color */
.feature-title {
    font-family: var(--font-serif);
    background: linear-gradient(270deg, var(--clr-navy), var(--clr-gold), var(--clr-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headingColorShift 5s ease infinite;
}

/* Footer titles get gold glow */
.footer-title {
    font-family: var(--font-serif);
    background: linear-gradient(270deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headingColorShift 4s ease infinite;
}

.text-gold { color: var(--clr-gold); }
.text-navy { color: var(--clr-navy); }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: var(--section-pad);
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-pad-mobile);
        text-align: center; /* Default centering for mobile sections */
    }
    
    .section-tag, .section-title, .heading-premium, h1, h2, h3 {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-tag {
    color: var(--clr-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons — Solid Dark Colors Only
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--clr-navy-dark);
    color: var(--clr-white);
    box-shadow: var(--shadow-navy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(25,54,107,0.5);
    background: #000;
    color: var(--clr-white);
}

.btn-gold {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(215,166,64,0.5);
    background: #c4932e;
    color: var(--clr-navy-dark);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--clr-white);
}

.btn-outline-white:hover {
    background: var(--clr-white);
    color: var(--clr-navy-dark);
    border-color: var(--clr-white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-container img {
    height: 48px;
    width: auto;
}

/* Desktop Nav (Hidden on Mobile) */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--clr-navy-dark);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--clr-gold);
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    padding: 0 0.5rem;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--clr-gray);
    flex: 1;
    height: 100%;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    transition: var(--transition);
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 600;
    transition: var(--transition);
}

.bottom-nav-item.active {
    color: var(--clr-navy-dark);
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
    color: var(--clr-gold);
}

.fab-wrapper {
    position: relative;
    top: -20px;
}

.fab-btn {
    width: 56px;
    height: 56px;
    background: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-navy-dark);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    border: 4px solid var(--clr-white);
    transition: var(--transition);
}

.fab-btn:hover {
    transform: scale(1.08);
    background: #c4932e;
}

/* ==========================================================================
   Hero Slider — NO GRADIENT, Solid Dark Overlay
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    padding-top: 0;
    margin-top: 0;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

/* Solid dark overlay — NO gradient */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 33, 70, 0.65);
    z-index: -1;
}

.slide-content {
    color: var(--clr-white);
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease 0.3s;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 3.5rem; /* Increased as per previous model */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
    font-weight: 700;
}

.slide-desc {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.swiper-pagination-bullet {
    background: var(--clr-white);
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--clr-gold);
    width: 30px;
    border-radius: 5px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--clr-white);
    background: rgba(13,33,70,0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.1rem;
}

/* ==========================================================================
   Course Search Bar Section — Premium Design
   ========================================================================== */
.course-search-section {
    position: relative;
    z-index: 15;
    background: linear-gradient(135deg, #0a1a3a 0%, #0D2146 40%, #122c5c 100%);
    padding: 3rem 0 4rem;
    overflow: hidden;
}

/* Decorative elements */
.course-search-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(215, 166, 64, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.course-search-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(215, 166, 64, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* Tabs */
.search-tabs {
    display: inline-flex;
    gap: 0;
    margin-bottom: 0;
    position: relative;
}

.search-tab {
    padding: 0.9rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid rgba(215, 166, 64, 0.5);
    border-bottom: none;
    background: rgba(215, 166, 64, 0.05);
    color: rgba(215, 166, 64, 0.7);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 14px 14px 0 0;
    position: relative;
    top: 2px;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.search-tab:first-child {
    border-right: none;
    border-radius: 14px 0 0 0;
}

.search-tab:last-child {
    border-radius: 0 14px 0 0;
}

.search-tab.active {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    border-color: var(--clr-gold);
    box-shadow: 0 -4px 15px rgba(215, 166, 64, 0.3);
}

.search-tab:not(.active):hover {
    background: rgba(215, 166, 64, 0.15);
    color: var(--clr-gold);
    border-color: var(--clr-gold);
}

/* Search Bar Wrapper */
.search-bar-wrapper {
    background: #ffffff;
    border-radius: 0 16px 16px 16px;
    padding: 6px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(215, 166, 64, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid var(--clr-gold);
    position: relative;
}

/* Gold accent line at top */
.search-bar-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
    border-radius: 16px 16px 0 0;
}

.search-fields {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 82px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.search-field {
    flex: 1;
    padding: 1rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: background 0.25s ease;
}

.search-field:hover {
    background: rgba(215, 166, 64, 0.04);
}

.search-field label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-style: italic;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--clr-navy-dark);
    cursor: pointer;
    padding: 4px 28px 4px 0;
    width: 100%;
    line-height: 1.4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D7A640' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}

.search-field select:focus {
    color: var(--clr-navy);
}

.search-field select option {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 10px 14px;
    color: var(--clr-navy-dark);
    background: #ffffff;
}

/* Vertical dividers */
.search-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent 10%, rgba(215, 166, 64, 0.25) 50%, transparent 90%);
    align-self: stretch;
    margin: 14px 0;
    flex-shrink: 0;
}

/* Search Button */
.search-btn {
    min-width: 72px;
    height: auto;
    align-self: stretch;
    background: linear-gradient(135deg, var(--clr-gold) 0%, #c4932e 100%);
    border: none;
    border-radius: 10px;
    margin: 6px;
    color: var(--clr-navy-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(215, 166, 64, 0.35);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

.search-btn:hover::after {
    left: 100%;
}

.search-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 25px rgba(215, 166, 64, 0.5);
}

.search-btn:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 992px) {
    .course-search-section {
        padding: 2.5rem 0 3rem;
    }

    .search-tabs {
        display: flex;
        width: 100%;
    }

    .search-tab {
        flex: 1;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }

    .search-tab:first-child {
        border-right: none;
        border-radius: 14px 0 0 0;
    }

    .search-tab:last-child {
        border-radius: 0 14px 0 0;
    }

    .search-fields {
        flex-direction: column;
        min-height: auto;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 0 1.25rem;
        background: linear-gradient(to right, transparent 5%, rgba(215, 166, 64, 0.2) 50%, transparent 95%);
    }

    .search-field {
        padding: 1rem 1.5rem;
    }

    .search-btn {
        min-width: 100%;
        min-height: 54px;
        margin: 6px;
        border-radius: 10px;
        font-size: 1.3rem;
    }

    .search-bar-wrapper {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .course-search-section {
        padding: 2rem 0 2.5rem;
    }

    .search-tab {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .search-field {
        padding: 0.85rem 1.25rem;
    }

    .search-field label {
        font-size: 0.62rem;
    }

    .search-field select {
        font-size: 0.85rem;
    }

    .course-search-section::before,
    .course-search-section::after {
        display: none;
    }
}

/* ==========================================================================
   Features Section — Premium Single Line Design
   ========================================================================== */
.features-section {
    position: relative;
    z-index: 10;
    margin-top: -45px;
    padding-bottom: 3rem;
}

.features-grid {
    display: flex; /* Unified line feel */
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(13, 33, 70, 0.05); /* Navy-tinted shadow */
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(13, 33, 70, 0.03);
    flex: 1;
    min-width: 250px; /* Better for wrapping */
    max-width: 300px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(215, 166, 64, 0.15); /* Gold-tinted shadow */
    border-color: var(--clr-gold);
    background: var(--clr-white);
}

.feature-icon {
    font-size: 1.8rem; /* Smarter, more compact size */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Use brand-aligned "Good Colors" */
.icon-blue { color: var(--clr-navy); }
.icon-orange { color: var(--clr-gold); }

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    color: var(--clr-gold); /* All turn gold on hover for elegance */
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 0.9rem; /* Compact font */
    font-weight: 700;
    color: var(--clr-navy-dark);
    margin-bottom: 0;
    line-height: 1.2;
    font-family: var(--font-sans);
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
    letter-spacing: -0.2px;
}

@media (max-width: 768px) {
    .features-section {
        margin-top: 0;
        padding-top: 2rem;
    }
    .feature-card {
        min-width: calc(50% - 1rem); /* 2 per line on mobile tablet */
    }
}

@media (max-width: 480px) {
    .feature-card {
        min-width: 100%; /* Stack on small mobile */
    }
}

/* ==========================================================================
   Stats Counter Section
   ========================================================================== */
.stats-section {
    background: var(--clr-navy-dark) !important;
    padding: 5rem 0;
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
}

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

.stat-item {
    padding: 1.5rem;
    transition: var(--transition);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--clr-gold) !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 4rem 0;
    }
    .stats-grid {
        gap: 2.5rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--clr-gold);
    padding: 2rem;
    border-radius: var(--radius-md);
    color: var(--clr-navy-dark);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

@media (max-width: 768px) {
    .about-grid {
        gap: 2rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content ul {
        text-align: left;
        display: inline-block;
        margin: 0 auto 2rem;
    }
    
    .about-content .btn {
        display: inline-flex;
        margin: 0 auto;
    }
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--clr-navy-dark);
    -webkit-text-fill-color: var(--clr-navy-dark);
}

.experience-badge p {
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-sans);
}

.about-list {
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-list i {
    color: var(--clr-gold);
    font-size: 1.25rem;
}

/* ==========================================================================
   Destinations Grid Section
   ========================================================================== */
.destinations-grid-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.destinations-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.dest-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.dest-img-box {
    position: relative;
    height: 180px;
    overflow: visible; /* To allow flag to sit half-out if needed, but we'll use relative overflow hidden elsewhere */
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.dest-flag {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--clr-white);
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: var(--clr-white);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.dest-info {
    padding: 2.5rem 1.25rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--clr-navy-dark);
    font-weight: 700;
}

.dest-desc {
    font-size: 0.8rem;
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.dest-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-details-premium {
    width: 100%;
    background: var(--clr-navy-dark);
    color: var(--clr-white);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--clr-navy-dark);
}

.btn-details-premium:hover {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    border-color: var(--clr-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(215, 166, 64, 0.3);
}

.btn-details-premium i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-details-premium:hover i {
    transform: translateX(5px);
}

.see-more-container {
    text-align: center;
    margin-top: 3.5rem;
}

.btn-outline-gold {
    border: 2px solid var(--clr-gold);
    color: var(--clr-gold);
    background: transparent;
    padding: 1rem 3rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.btn-outline-gold:hover {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .destinations-main-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .destinations-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destinations-main-grid {
        grid-template-columns: 1fr;
    }
    .destinations-grid-section {
        padding: 4rem 0;
    }
}

/* ==========================================================================
   Premium Testimonials
   ========================================================================== */
.testimonials-section {
    background: var(--clr-navy-dark);
    padding: 3.5rem 0; /* Reduced top/bottom */
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(215, 166, 64, 0.08) 0%, rgba(13, 33, 70, 0) 70%);
    z-index: 0;
}

.testimonials-section .section-title {
    color: var(--clr-white);
    -webkit-text-fill-color: var(--clr-white);
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    padding: 2.5rem 0 3.5rem !important;
    overflow: hidden !important; /* Clip partial slides on left/right */
    position: relative;
}

.slider-outside-wrapper {
    position: relative;
    width: 100%;
    max-width: 1350px; /* Container (1200px) + space for large arrows */
    margin: 0 auto;
    padding: 0 70px;
}

/* Premium Navigation Arrows - Clean Chevron Style Outside */
.testimonials-next, .testimonials-prev,
.google-next, .google-prev {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: var(--transition) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.testimonials-next::after, .testimonials-prev::after {
    font-size: 2rem !important; /* Reduced size */
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: normal;
    line-height: 1;
    color: var(--clr-gold) !important;
    font-weight: 200 !important; /* Thinner weight */
}

.google-next::after, .google-prev::after {
    font-size: 2rem !important; /* Reduced size */
    color: var(--clr-navy-dark) !important;
    font-weight: 200 !important; /* Thinner weight */
}

.testimonials-next:hover, .testimonials-prev:hover,
.google-next:hover, .google-prev:hover {
    transform: translateY(-50%) translateX(0); /* Subtle */
    opacity: 1;
    color: var(--clr-gold) !important;
}

.testimonials-prev, .google-prev { left: 15px !important; } /* Brought in slightly */
.testimonials-next, .google-next { right: 15px !important; }

/* Exact Requested Testimonial Model (Dark Navy + Gold) */
.testimonials-section {
    background: var(--clr-navy-dark);
    padding: 5rem 0;
}

.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    transition: var(--transition);
    position: relative;
    margin-top: 40px;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--clr-gold);
}

.testimonial-img-wrapper {
    position: absolute;
    top: -40px;
    left: 2rem; /* Positioned to the left as per image */
    z-index: 5;
}

.testimonial-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.testimonial-rating {
    color: var(--clr-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.9rem; /* Reduced */
    color: var(--clr-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    font-family: var(--font-serif);
    opacity: 0.9;
}

.author-info h4 {
    font-size: 1rem; /* Reduced */
    color: var(--clr-gold);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-info p {
    font-size: 0.75rem; /* Slightly smaller */
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Thin Large Arrows - Color updated to match Name (Gold) */
.testimonials-next::after, .testimonials-prev::after {
    font-size: 3rem !important; /* Slightly more compact */
    font-weight: 100 !important;
    color: var(--clr-gold) !important;
    opacity: 0.7;
    transition: var(--transition);
}

.testimonials-next:hover::after, .testimonials-prev:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.slider-outside-wrapper {
    padding: 0 80px; /* Adjusted padding */
}

/* ==========================================================================
   Premium Google Reviews
   ========================================================================== */
.google-reviews-section {
    background: #f8fafc;
    padding: 3rem 0; /* Reduced top/bottom */
    position: relative;
    overflow: hidden;
}

/* Add a sleek modern background pattern */
.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.google-reviews-section .container {
    position: relative;
    z-index: 1;
}

.google-reviews-slider {
    padding: 1rem 0 3.5rem !important;
    overflow: hidden !important;
    position: relative;
}

/* Classic Google Reviews Model (White) */
.google-reviews-section {
    background: #f8fafc;
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.google-review-badge {
    display: inline-flex;
    align-items: center;
    background: var(--clr-white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    gap: 1rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--clr-dark);
}

.google-logo i {
    color: transparent;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.5rem;
}

.google-rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-dark);
    border-left: 2px solid #e2e8f0;
    padding-left: 1rem;
}

.google-review-card {
    background: var(--clr-white) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-md) !important;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.google-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
    z-index: 2;
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.google-reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.google-reviewer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--clr-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.google-review-text {
    font-size: 0.95rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem;
    font-style: normal !important;
    flex-grow: 1;
    opacity: 1 !important;
}

.google-reviewer-info h4 {
    font-size: 1rem;
    color: var(--clr-navy-dark) !important;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.google-reviewer-info p {
    font-size: 0.75rem;
    color: #64748b;
}

.google-next::after, .google-prev::after {
    color: var(--clr-navy-dark) !important;
}

/* Section spacing and transitions */
.section-premium {
    padding: var(--section-pad);
    background: var(--clr-white);
}

/* ==========================================================================
   Mobile Menu Button & Premium Overlay
   ========================================================================== */
.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(215, 166, 64, 0.4);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(13, 33, 70, 0.98), rgba(25, 54, 107, 0.98));
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
}

.close-menu {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--clr-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-links a {
    color: var(--clr-white);
    font-size: 1.1rem; /* App-like font size */
    font-weight: 600;
    font-family: var(--font-sans); /* Cleaner sans-serif for app feel */
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    letter-spacing: 0.3px;
}

.mobile-menu-links a i {
    color: var(--clr-gold);
    width: 24px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Global Mobile Typography Overhaul (App-like Sizes)
   ========================================================================== */
@media (max-width: 768px) {
    html { font-size: 14px; } /* Slightly smaller base */

    h1, .hero-title { font-size: 2rem !important; line-height: 1.2; }
    h2, .section-title { font-size: 1.6rem !important; line-height: 1.3; }
    h3 { font-size: 1.3rem !important; }
    
    body, p { font-size: 0.9rem !important; line-height: 1.6; }
    
    .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
    
    .section { padding: 3rem 0; }
    
    /* Footer mobile text */
    .footer-title { font-size: 1.1rem !important; }
    .footer-links a { font-size: 0.85rem !important; }
}

.mobile-menu-links a.active {
    color: var(--clr-gold);
}

.mobile-menu-footer {
    margin-top: auto;
}

.contact-pill {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.contact-pill p {
    color: var(--clr-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.contact-pill a {
    color: var(--clr-white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-socials {
    display: flex;
    gap: 1rem;
}

.mobile-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* Luxury White Glassmorphism Feature Cards */
.features-section {
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8) !important; /* White Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(215, 166, 64, 0.5) !important; /* Increased Border Width */
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 20px 40px rgba(13, 33, 70, 0.08); /* Soft Navy Shadow */
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--clr-white) !important;
    border-color: var(--clr-gold) !important;
    border-width: 3px !important; /* Bold border on hover */
    box-shadow: 0 30px 60px rgba(215, 166, 64, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(25, 54, 107, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-navy-dark) !important; /* Professional Navy */
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--clr-navy-dark);
    color: var(--clr-gold) !important;
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--clr-navy-dark) !important;
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-sans) !important;
}

/* Premium Mobile-First 4-in-a-Line Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important; /* Force 4 in one line on ALL screens */
    gap: 0.5rem; /* Tighter gap for mobile */
}

@media (max-width: 576px) {
    .feature-card {
        padding: 0.75rem 0.5rem;
        flex-direction: column; /* Stack icon/text to fit 4 in a row */
        text-align: center;
        gap: 0.5rem;
        border-radius: 12px;
    }
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .feature-title {
        font-size: 0.65rem !important;
        letter-spacing: -0.5px;
    }
}
/* Premium High-Conversion CTA */
.cta-section {
    background: linear-gradient(135deg, var(--clr-navy-dark), #1a2b4b);
    border-radius: 40px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 166, 64, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 4rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(215, 166, 64, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.cta-section .heading-premium {
    color: var(--clr-white) !important;
    font-size: 3rem !important;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3rem !important;
    line-height: 1.8;
}

.btn-cta {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(215, 166, 64, 0.3);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(215, 166, 64, 0.4);
    background: var(--clr-white);
    color: var(--clr-navy-dark);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
        border-radius: 30px;
    }
    .cta-section .heading-premium {
        font-size: 2.2rem !important;
    }
}

/* ==========================================================================
   Page Header (Inner Pages)
   ========================================================================== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    color: var(--clr-white);
    background-color: var(--clr-navy-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 33, 70, 0.75);
    z-index: -1;
}

.header-bg-about { background-image: url('../img/header_about.jpg'); }
.header-bg-services { background-image: url('../img/header_services.jpg'); }
.header-bg-destinations { background-image: url('../img/header_destinations.jpg'); }
.header-bg-contact { background-image: url('../img/header_contact.jpg'); }

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
    -webkit-text-fill-color: var(--clr-white);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--clr-gold-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: 4rem 0 2rem;
    margin-bottom: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 55px;
    width: auto;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
}

.footer-col h4.footer-title {
    color: var(--clr-gold) !important;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links li a, .contact-info li span {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--clr-gold) !important;
    padding-left: 5px;
}

.contact-info i {
    color: var(--clr-gold) !important;
    margin-top: 4px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #6b7280;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #9ca3af;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--clr-gold);
}

.footer-developer {
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-navy-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-logo {
    width: 60px;
    height: auto;
    animation: pulseLoader 1.5s infinite ease-in-out;
}

@keyframes pulseLoader {
    0%, 100% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1); opacity: 1; }
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulseLoader {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* ==========================================================================
   Premium Country Detail Page
   ========================================================================== */
.country-hero-premium {
    padding: 10rem 0 8rem;
    background-size: cover;
    background-position: center;
    color: var(--clr-white);
    text-align: center;
    position: relative;
}

.flag-badge {
    width: 90px;
    height: 90px;
    background: var(--clr-white);
    border-radius: 50%;
    padding: 5px;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.country-hero-premium h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
    -webkit-text-fill-color: var(--clr-white);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.quick-facts-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-pill);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fact-item i {
    color: var(--clr-gold);
    font-size: 1.5rem;
}

.fact-item span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--clr-white);
}

.premium-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    margin-top: -60px; /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin-bottom: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.card-header {
    background: #f8fafc;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #edf2f7;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--clr-gold);
}

.card-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--clr-navy-dark);
}

.card-body {
    padding: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    color: var(--clr-gold);
    margin-top: 4px;
}

.benefit-item span {
    font-weight: 600;
    color: var(--clr-dark);
}

.premium-course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.p-course-chip {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #dbeafe;
}

.share-box {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem;
    background: #f1f5f9;
    border-radius: var(--radius-md);
}

.p-share-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.p-share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.p-share-btn.fb { background: #1877f2; }
.p-share-btn.tw { background: #000000; }
.p-share-btn.wa { background: #25d366; }

/* UNIQUE ENQUIRY BOX - SEPARATE FROM CONTACT FORM */
.country-enquiry-box {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(13, 33, 70, 0.15);
    padding: 3rem 2rem;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(215, 166, 64, 0.2);
}

.box-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.box-head h3 {
    font-size: 1.6rem;
    color: var(--clr-navy-dark);
    margin-bottom: 0.5rem;
}

.box-head p {
    font-size: 0.9rem;
    color: var(--clr-gray);
}

.p-form-group {
    margin-bottom: 1.5rem;
}

.p-form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--clr-navy-dark);
    margin-bottom: 0.5rem;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-gold);
    font-size: 0.9rem;
}

.input-icon input, .p-form-group select {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-weight: 500;
    transition: var(--transition);
    color: var(--clr-navy-dark);
}

.p-form-group select { padding-left: 1rem; }

.input-icon input:focus {
    border-color: var(--clr-gold);
    outline: none;
    background: white;
}

.btn-p-submit {
    width: 100%;
    background: var(--clr-navy-dark);
    color: var(--clr-white);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-p-submit:hover {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    transform: translateY(-3px);
}

.p-form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--clr-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ==========================================================================
   Modal Styling
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 33, 70, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--clr-white);
    width: 100%;
    max-width: 800px; /* Wider for full details */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.animate-pop {
    animation: popIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-header {
    background: var(--clr-navy-dark);
    padding: 1.5rem 2rem;
    color: var(--clr-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin-bottom: 0;
    color: var(--clr-white);
    -webkit-text-fill-color: var(--clr-white);
    font-size: 1.25rem;
}

.modal-header h3 span { color: var(--clr-gold); }

.close-modal {
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 2.5rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modal-form .form-group {
    margin-bottom: 1.5rem;
}

.modal-form label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--clr-navy-dark);
}

.modal-form input, .modal-form select, .modal-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    background: #f8fafc;
}

@media (max-width: 1024px) {
    .premium-detail-grid {
        grid-template-columns: 1fr;
    }
    .country-enquiry-box {
        position: relative;
        top: 0;
    }
    .country-hero-premium h1 { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .benefits-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-section {
        margin-top: -80px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .footer {
        margin-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .slide-title {
        font-size: 4.2rem;
        letter-spacing: -1px;
    }
    .slide-content {
        max-width: 850px;
    }
}

/* End of responsive styles */
@media (max-width: 1400px) {
    .slider-outside-wrapper {
        padding: 0 50px;
    }
}

/* Responsive Sliders */
@media (max-width: 1400px) {
    .slider-outside-wrapper {
        padding: 0 50px;
    }
    .testimonials-next::after, .testimonials-prev::after,
    .google-next::after, .google-prev::after {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .slider-outside-wrapper {
        padding: 0 15px;
    }
    .testimonials-next, .testimonials-prev,
    .google-next, .google-prev {
        display: none !important; /* Hide outside arrows on mobile, use pagination */
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.why-img-wrapper-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--clr-white);
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-img-wrapper-premium:hover .why-img {
    transform: scale(1.05);
}

.why-experience-badge-new {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 5;
    text-align: center;
    min-width: 120px;
}

.why-experience-badge-new h3 {
    font-size: 2.2rem;
    margin-bottom: 0;
    color: var(--clr-navy-dark);
    font-family: var(--font-serif);
}

.why-experience-badge-new p {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.why-desc {
    margin: 1.5rem 0 2.5rem;
    font-size: 1.1rem;
    color: var(--clr-gray);
    line-height: 1.8;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-feat-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-feat-icon {
    width: 50px;
    height: 50px;
    background: var(--clr-light);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feat-item:hover .why-feat-icon {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: rotateY(180deg);
}

.why-feat-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--clr-navy-dark);
}

.why-feat-info p {
    font-size: 0.95rem;
    color: var(--clr-gray);
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   Premium Services Home Grid
   ========================================================================== */
.premium-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.p-service-card {
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.p-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--clr-gold);
    transition: var(--transition);
}

.p-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 33, 70, 0.1);
}

.p-service-card:hover::after {
    width: 100%;
}

.p-service-icon-box {
    width: 65px;
    height: 65px;
    background: var(--clr-navy-dark);
    color: var(--clr-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.p-service-card:hover .p-service-icon-box {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    transform: scale(1.1);
}

.p-service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.p-service-desc {
    color: var(--clr-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.p-service-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.p-service-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-navy-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.p-service-link i {
    transition: transform 0.3s ease;
}

.p-service-link:hover {
    color: var(--clr-gold);
}

.p-service-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Colorful Service Boxes
   ========================================================================== */
.colorful-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-box {
    position: relative;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
    transition: var(--transition);
}

/* Color Variants */
.box-navy { border: 1px solid rgba(25, 54, 107, 0.1); background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%); }
.box-gold { border: 1px solid rgba(215, 166, 64, 0.1); background: linear-gradient(135deg, #fffcf0 0%, #ffffff 100%); }
.box-blue { border: 1px solid rgba(46, 92, 168, 0.1); background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%); }
.box-teal { border: 1px solid rgba(59, 141, 186, 0.1); background: linear-gradient(135deg, #f0faff 0%, #ffffff 100%); }

.service-box-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.box-navy .service-box-icon { background: var(--clr-navy); color: var(--clr-white); box-shadow: 0 10px 20px rgba(25, 54, 107, 0.2); }
.box-gold .service-box-icon { background: var(--clr-gold); color: var(--clr-navy-dark); box-shadow: 0 10px 20px rgba(215, 166, 64, 0.2); }
.box-blue .service-box-icon { background: var(--clr-blue); color: var(--clr-white); box-shadow: 0 10px 20px rgba(46, 92, 168, 0.2); }
.box-teal .service-box-icon { background: var(--clr-teal); color: var(--clr-white); box-shadow: 0 10px 20px rgba(59, 141, 186, 0.2); }

.service-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-navy-dark);
}

.service-box p {
    color: var(--clr-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-box-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-navy-dark);
    transition: var(--transition);
}

.service-box-link i {
    transition: transform 0.3s ease;
}

/* Hover States */
.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(13, 33, 70, 0.12);
}

.service-box:hover::before {
    background: rgba(255, 255, 255, 0.8);
}

.box-navy:hover .service-box-icon { transform: rotate(10deg) scale(1.1); }
.box-gold:hover .service-box-icon { transform: rotate(-10deg) scale(1.1); }
.box-blue:hover .service-box-icon { transform: rotate(10deg) scale(1.1); }
.box-teal:hover .service-box-icon { transform: rotate(-10deg) scale(1.1); }

.service-box:hover .service-box-link {
    color: var(--clr-gold);
}

.service-box:hover .service-box-link i {
    transform: translateX(8px);
}

/* ==========================================================================
   Modern Alternating Service Cards
   ========================================================================== */
.modern-service-card {
    display: flex;
    flex-direction: column;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.modern-service-card:hover {
    box-shadow: var(--shadow-lg);
}

.m-service-img {
    flex: 1;
    min-height: 250px;
}

.m-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-service-card:hover .m-service-img img {
    transform: scale(1.05);
}

.m-service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-service-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-light);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.m-service-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--clr-navy-dark);
    margin-bottom: 1rem;
}

.m-service-desc {
    color: var(--clr-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.m-service-list {
    margin-bottom: 2rem;
}

.m-service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--clr-navy-dark);
}

.m-service-list i {
    color: var(--clr-gold);
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .modern-service-card {
        flex-direction: row;
        min-height: 450px;
    }
    
    .modern-service-card.m-reverse {
        flex-direction: row-reverse;
    }
    
    .m-service-content {
        padding: 4rem;
    }
    
    .m-service-img {
        min-height: 100%;
    }
}

/* ==========================================================================
   Service Details Page
   ========================================================================== */
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .service-details-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.detail-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.detail-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detail-icon-overlay {
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transform: translateY(-50px);
}

.detail-section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--clr-navy-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--clr-gold);
    border-radius: 2px;
}

.detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
}

.detail-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.detail-benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--clr-navy-dark);
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.detail-benefits-list li:hover {
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.detail-benefits-list i {
    color: var(--clr-gold);
    font-size: 1.2rem;
}

.detail-cta-box {
    background: var(--clr-navy-dark);
    color: var(--clr-white);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-cta-box h3 {
    color: var(--clr-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.detail-cta-box p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Sidebar Styles */
.sidebar-widget {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.widget-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-light);
    color: var(--clr-navy-dark);
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--clr-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    color: var(--clr-navy-dark);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--clr-navy-dark);
    color: var(--clr-white);
    padding-left: 1.5rem;
}

.sidebar-links a i {
    font-size: 0.8rem;
    opacity: 0.5;
}

.contact-widget {
    background: var(--clr-gold);
    color: var(--clr-navy-dark);
}

.contact-widget .widget-title {
    border-color: rgba(13, 33, 70, 0.1);
}

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(13, 33, 70, 0.1);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: var(--transition);
}

.sidebar-contact-btn:hover {
    background: var(--clr-navy-dark);
    color: var(--clr-white);
}

.btn-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem;
    background: #ef4444;
    color: var(--clr-white);
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: var(--transition);
}

.btn-brochure:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   Page Hero Banner (For Inner Pages)
   ========================================================================== */
.page-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #0a1a3a 0%, #0D2146 50%, #1a3a6e 100%);
    padding: 10rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
}

.page-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #0a1a3a, transparent);
}

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

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    -webkit-text-fill-color: #ffffff;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero-banner {
        padding: 8rem 0 3.5rem;
    }
    .page-hero-title {
        font-size: 2.5rem;
    }
    .page-hero-desc {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Course Finder — Course Cards Grid
   ========================================================================== */
.cf-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cf-course-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(13, 33, 70, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cf-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--clr-gold);
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.cf-course-card:hover::before {
    height: 100%;
}

.cf-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 33, 70, 0.1);
    border-color: rgba(215, 166, 64, 0.2);
}

.cf-course-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--clr-navy-dark), var(--clr-navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.cf-course-card:hover .cf-course-icon {
    background: linear-gradient(135deg, var(--clr-gold), #c4932e);
    color: var(--clr-navy-dark);
    transform: scale(1.08);
}

.cf-course-card h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-navy-dark);
    margin-bottom: 0.6rem;
    -webkit-text-fill-color: var(--clr-navy-dark);
}

.cf-course-card p {
    font-size: 0.9rem;
    color: var(--clr-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.cf-course-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.cf-course-meta span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-navy);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cf-course-meta span i {
    color: var(--clr-gold);
    font-size: 0.75rem;
}

.cf-course-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.cf-course-link:hover {
    color: #c4932e;
    gap: 0.7rem;
}

@media (max-width: 992px) {
    .cf-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cf-courses-grid {
        grid-template-columns: 1fr;
    }
    .cf-course-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Course Finder — University Cards Grid
   ========================================================================== */
.cf-uni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cf-uni-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    border: 1px solid rgba(13, 33, 70, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.cf-uni-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(13, 33, 70, 0.1);
    border-color: rgba(215, 166, 64, 0.25);
}

.cf-uni-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid rgba(215, 166, 64, 0.2);
    transition: var(--transition);
}

.cf-uni-card:hover .cf-uni-flag {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 4px rgba(215, 166, 64, 0.1);
}

.cf-uni-flag img {
    width: 28px;
    height: auto;
}

.cf-uni-card h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-navy-dark);
    margin-bottom: 0.4rem;
    -webkit-text-fill-color: var(--clr-navy-dark);
}

.cf-uni-loc {
    font-size: 0.8rem;
    color: var(--clr-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.cf-uni-loc i {
    color: var(--clr-gold);
    font-size: 0.7rem;
}

.cf-uni-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cf-uni-tags span {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(13, 33, 70, 0.06);
    color: var(--clr-navy);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.cf-uni-card:hover .cf-uni-tags span {
    background: rgba(215, 166, 64, 0.12);
    color: #9a7520;
}

@media (max-width: 992px) {
    .cf-uni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cf-uni-grid {
        grid-template-columns: 1fr;
    }
}

