/* CSS Variables & Custom Theme Setup */
:root {
    /* User Provided Colors */
    --color-dark-slate: #26394C;
    --color-black: #000000;
    --color-lavender-light: #DDDDEB;
    --color-royal-blue: #2642BF;
    --color-snow: #F9F5F5;
    --color-white: #FFFFFF;
    
    /* Theme Mappings */
    --bg-primary: var(--color-white);       /* Clean White Main BG */
    --bg-secondary: var(--color-snow);     /* Soft Off-White Secondary BG */
    --bg-dark-accent: var(--color-dark-slate); /* Dark Slate Accent Sections */
    --bg-card: var(--color-white);          /* White Card BG */
    --bg-card-snow: var(--color-snow);      /* Soft Snow Card BG */
    --bg-footer: var(--color-dark-slate);   /* Dark Slate Footer */
    
    /* Text Color Styling */
    --text-heading: var(--color-dark-slate);
    --text-primary: var(--color-black);
    --text-muted: #374151;                  /* Readable dark slate body text */
    --text-light: var(--color-white);
    --text-light-muted: var(--color-lavender-light);
    
    /* Brand & Accent Elements */
    --brand-primary: var(--color-royal-blue);
    --brand-dark: var(--color-dark-slate);
    --border-color: var(--color-lavender-light);
    
    /* Layout Variables */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius: 12px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glow-shadow: 0 6px 24px rgba(38, 66, 191, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary); /* White body base */
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Single Column Content Container */
.content-container-single {
    max-width: 1200px;
    margin: 0 auto;
}

/* Custom Scrollbar using user color palette */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-snow);
}
::-webkit-scrollbar-thumb {
    background: var(--color-royal-blue);
    border-radius: 5px;
    border: 2px solid var(--color-snow);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-slate);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-royal-blue);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--color-lavender-light);
    padding-bottom: 2px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--color-royal-blue);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(38, 66, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--color-dark-slate);
    box-shadow: 0 8px 25px rgba(38, 57, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark-slate);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   1. HERO VIDEO SECTION (At the very top)
   ========================================================================== */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: linear-gradient(180deg, rgba(38, 57, 76, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-content {
    max-width: 800px;
    padding: 0 15px;
}

.hero-content .hero-title {
    color: var(--color-white);
}

.hero-content .hero-subtitle {
    color: var(--color-lavender-light);
}

.hero-tagline {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--color-royal-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   2. STICKY NAVBAR (Below video hero)
   ========================================================================== */
.navbar {
    width: 100%;
    background: linear-gradient(90deg, #273B4E 0%, #000000 50%, #273B4E 100%);
    border-bottom: 2px solid rgba(221, 221, 235, 0.2);
    z-index: 999;
    transition: var(--transition-smooth);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #273B4E 0%, #000000 50%, #273B4E 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid var(--color-royal-blue);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.nav-logo:hover {
    color: #25D366;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 12px;
}

/* 1. Home Link (Regular text link) */
.nav-menu li:first-child .nav-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.03em;
    position: relative;
    padding: 8px 12px;
}

.nav-menu li:first-child .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #25D366;
    transition: var(--transition-smooth);
}

.nav-menu li:first-child .nav-link:hover {
    color: #25D366;
}

.nav-menu li:first-child .nav-link:hover::after {
    width: 80%;
}

/* 2. All other Navbar links EXCEPT Home (Green rectangle with rounded corners) */
.nav-menu li:not(:first-child) a,
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white) !important;
    background: #25D366;
    border-radius: 8px; /* Rectangle with rounded corners */
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.nav-menu li:not(:first-child) a::after {
    display: none;
}

.nav-menu li:not(:first-child) a:hover,
.btn-nav:hover {
    transform: translateY(-2px);
    background: #128C7E;
    color: var(--color-white) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #25D366;
}
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #25D366;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(180deg, #273B4E 0%, #000000 100%);
        flex-direction: column;
        /*justify-content: center;*/
        padding-top:20px;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   3. CONTENT SECTION 1 & 5. CONTENT SECTION 2 (Single Column)
   ========================================================================== */
.content-section {
    padding: 50px 0 0 0;
    position: relative;
    background-color: var(--bg-primary); /* Pure White Background */
    color: var(--text-muted);
}

.secondary-content {
    background-color: var(--color-lavender-light); /* #DDDDEB background as requested */
    color: var(--color-black);
    border-top: 3px solid var(--color-royal-blue);
    border-bottom: 3px solid var(--color-royal-blue);
}

.secondary-content .section-title {
    color: var(--color-dark-slate);
}

.secondary-content .section-tag {
    color: var(--color-royal-blue);
    border-color: var(--color-dark-slate);
}

.secondary-content .section-subtitle {
    color: var(--color-royal-blue);
}

.secondary-content .content-para {
    color: var(--color-black);
}

.section-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-royal-blue);
    line-height: 1.4;
    margin-bottom: 25px;
}

.content-para {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: left;
}

/* Styled drop cap */
.drop-cap::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    float: left;
    line-height: 0.9;
    margin-right: 12px;
    margin-top: 4px;
    color: var(--color-royal-blue);
}

.secondary-content .drop-cap::first-letter {
    color: var(--color-royal-blue);
}

/* Horizontal single-column callout panel */
.horizontal-glow-box {
    margin-top: 30px;
    background: var(--color-snow);
    border: 2px solid var(--color-royal-blue);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(38, 66, 191, 0.1);
}

.horizontal-glow-box h4 {
    font-size: 1.3rem;
    color: var(--color-royal-blue);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-lavender-light);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.horizontal-glow-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.horizontal-glow-box ul li {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark-slate);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5FC 100%);
    border: 2px solid var(--color-royal-blue);
    border-radius: 12px;
    padding: 14px 16px 14px 44px;
    position: relative;
    box-shadow: 0 4px 12px rgba(38, 66, 191, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.horizontal-glow-box ul li strong {
    font-weight: 800;
}

.horizontal-glow-box ul li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--color-royal-blue);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(38, 66, 191, 0.4);
    transition: var(--transition-smooth);
}

.horizontal-glow-box ul li:hover {
    transform: translateY(-3px);
    background: var(--color-royal-blue);
    color: var(--color-white);
    border-color: var(--color-royal-blue);
    box-shadow: 0 8px 20px rgba(38, 66, 191, 0.3);
}

.horizontal-glow-box ul li:hover::before {
    background: var(--color-white);
    color: var(--color-royal-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Horizontal details list layout for Section 2 */
.horizontal-details-card {
    margin-top: 35px;
    background: var(--color-white);
    border: 2px solid var(--color-royal-blue);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--color-black);
    box-shadow: 0 4px 20px rgba(38, 66, 191, 0.12);
}

.horizontal-details-card .detail-item {
    display: flex;
    gap: 15px;
    flex: 1 1 240px;
}

.detail-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-royal-blue);
    line-height: 1;
}

.detail-text h5,
.detail-text .detail-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-dark-slate);
}

.detail-text p:not(.detail-title) {
    font-size: 14px;
    color: #374151;
}

/* ==========================================================================
   3.5. 5 FEATURED LONG PROFILES SECTION (30/70 Proportion, Heading & Text Only)
   ========================================================================== */
.featured-profile-section {
    /* max-width: 1100px;
    margin: 0 auto; */
    padding: 50px 0;
    background-color: var(--bg-primary);
}

.featured-profiles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-profile-item {
    display: flex;
    align-items: stretch;
    gap: 5px;
    position: relative;
}

/* Left Side: 20% Proportion with Double Glowing Border & Shimmer */
.featured-profile-left {
    flex: 0 0 20%;
    max-width: 20%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px double var(--color-royal-blue);
    box-shadow: 0 0 15px rgba(38, 66, 191, 0.4), 0 0 30px rgba(38, 66, 191, 0.2);
    animation: profileGlowPulse 3s infinite ease-in-out;
    position: relative;
    background-color: var(--color-dark-slate);
    align-self: center;
    transition: var(--transition-smooth);
}

.featured-profile-left:hover {
    box-shadow: 0 0 25px rgba(38, 66, 191, 0.8), 0 0 45px rgba(38, 66, 191, 0.5);
}

.featured-image-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Online Status Indicator Dot */
.featured-image-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
    z-index: 3;
}

/* Light Sheen / Shimmer Sweep Effect on Hover */
.featured-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.featured-image-card:hover::before {
    left: 150%;
}

.featured-image-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-image-card:hover img {
    transform: scale(1.08);
}

/* Pulsing Glow Keyframes */
@keyframes profileGlowPulse {
    0% {
        box-shadow: 0 0 12px rgba(38, 66, 191, 0.4), 0 0 25px rgba(38, 66, 191, 0.2);
    }
    50% {
        box-shadow: 0 0 22px rgba(38, 66, 191, 0.75), 0 0 42px rgba(38, 66, 191, 0.45);
    }
    100% {
        box-shadow: 0 0 12px rgba(38, 66, 191, 0.4), 0 0 25px rgba(38, 66, 191, 0.2);
    }
}

/* Center Divider Line */
.featured-profile-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--color-lavender-light) 30%, var(--color-royal-blue) 50%, var(--color-lavender-light) 70%, transparent 100%);
    align-self: center;
    height: 80%;
}

/* Right Side: 80% Proportion (Content with heading & text only) */
.featured-profile-right {
    flex: 0 0 calc(80% - 27px);
    max-width: calc(80% - 27px);
    background-color: var(--bg-secondary);
    border: 2px double var(--color-lavender-light); 
     border-color: var(--color-royal-blue);
    border-radius: 20px;
    padding: 12px 20px; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(38, 57, 76, 0.06);
    transition: var(--transition-smooth);
}

.featured-profile-item:hover .featured-profile-right {
    border-color: var(--color-royal-blue);
    box-shadow: 0 8px 25px rgba(38, 66, 191, 0.12);
}

.featured-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-royal-blue);
    margin-bottom: 6px;
    position: relative; 
}

.featured-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .featured-profile-item {
        flex-direction: column;
    }
    .featured-profile-divider {
        display: none;
    }
    .featured-profile-left,
    .featured-profile-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .featured-image-card {
        min-height: 350px;
    }
}

/* ==========================================================================
   4. AUTOMATIC INFINITE SLIDING CAROUSEL (6 Images side-by-side, no gap)
   ========================================================================== */
.image-splitter-section {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    background: var(--bg-primary);
    padding: 0;
}

.splitter-container {
    display: flex;
    width: max-content;
    overflow: hidden;
}

.splitter-track {
    display: flex;
    width: max-content;
    animation: autoSlideInfinite 20s linear infinite;
}

.splitter-track:hover {
    animation-play-state: paused;
}

.splitter-item {
    width: 300px;
    height: 450px;
    flex-shrink: 0;
    margin-right: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.splitter-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.splitter-item:hover img {
    transform: scale(1.06);
}

@keyframes autoSlideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .splitter-item {
        width: 220px;
        height: 320px;
    }
}

/* ==========================================================================
   6. PROFILE SECTION (20 Profiles, 4 in a row)
   ========================================================================== */
.profiles-section {
    padding: 50px 0;
    background-color: var(--bg-primary); /* White Background */
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.profile-card {
    background: var(--color-white);
    border: 2px solid var(--color-lavender-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(38, 57, 76, 0.06);
    position: relative;
}

.profile-img-wrapper {
    width: 100%;
    height: 330px;
    overflow: hidden;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.profile-info {
    padding: 16px 20px;
    background: var(--color-snow);
    position: relative;
    z-index: 2;
    border-top: 2px solid var(--color-lavender-light);
}

.profile-category {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-royal-blue);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.profile-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.profile-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-dark-slate);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.profile-rate {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-royal-blue);
    white-space: nowrap;
}

.profile-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-royal-blue);
    box-shadow: 0 8px 25px rgba(38, 66, 191, 0.2);
}

.profile-card:hover .profile-img {
    transform: scale(1.08);
}

@media (max-width: 1199px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .profile-img-wrapper {
        height: 360px;
    }
}

/* ==========================================================================
   7. HOW TO BOOK SECTION (Cards layout with images)
   ========================================================================== */
.booking-section {
    padding: 50px 0;
    background-color: var(--color-snow); /* Soft Snow Background */
    border-top: 2px solid var(--color-lavender-light);
    border-bottom: 2px solid var(--color-lavender-light);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.booking-card {
    background: var(--color-white);
    border: 2px solid var(--color-lavender-light);
    border-radius: var(--border-radius);
    padding: 20px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    color: var(--color-dark-slate);
    box-shadow: 0 4px 15px rgba(38, 57, 76, 0.05);
}

.booking-card h3 {
    color: var(--color-dark-slate);
}

.booking-card p {
    color: var(--text-muted);
}

.step-num {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-royal-blue);
    opacity: 0.9;
    line-height: 1;
}

.step-img-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--color-lavender-light);
}

.step-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.booking-card-content h3,
.booking-card-content .booking-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.booking-card-content p:not(.booking-card-title) {
    font-size: 14px;
    line-height: 1.5;
}

.booking-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-royal-blue);
    box-shadow: 0 8px 20px rgba(38, 66, 191, 0.15);
}

.booking-card:hover .step-img-wrapper img {
    transform: scale(1.06);
}

@media (max-width: 1199px) {
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 650px) {
    .booking-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   7.5. VIDEO SHOWCASE SECTION (No Text / Heading)
   ========================================================================== */
.video-showcase-section {
    padding: 50px 0;
    background-color: var(--bg-secondary);
    border-top: 3px solid var(--color-royal-blue);
    border-bottom: 3px solid var(--color-royal-blue);
}

.video-showcase-section .video-wrapper {
    max-width: 950px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(38, 66, 191, 0.25), 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--color-royal-blue);
    background-color: var(--color-black);
    transition: var(--transition-smooth);
}

.video-showcase-section .video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(38, 66, 191, 0.4), 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-showcase-section .showcase-video {
    width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 35px 0;
    }
    .video-showcase-section .video-wrapper {
        border-radius: 14px;
        border-width: 2px;
    }
}

/* ==========================================================================
   8. FAQ SECTION (Accordion)
   ========================================================================== */
.faq-section {
    padding: 50px 0;
    background-color: var(--bg-primary); /* Pure White Background */
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-snow);
    border: 2px solid var(--color-lavender-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark-slate);
    transition: var(--transition-smooth);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-royal-blue);
    font-weight: 500;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--color-royal-blue);
    box-shadow: 0 4px 16px rgba(38, 66, 191, 0.12);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question {
    color: var(--color-royal-blue);
}

/* ==========================================================================
   8.5. LOCATIONS SECTION (Above Footer)
   ========================================================================== */
.locations-section {
    padding: 50px 0;
    /* background-color: var(--bg-secondary); */
    /* border-top: 2px solid var(--color-lavender-light); */
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 950px;
    margin: 0 auto;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #D6D4E7;
    color: #2642BF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 2px 8px rgba(38, 66, 191, 0.08);
}

.location-btn:hover {
    transform: translateY(-3px);
    background-color: #2642BF;
    color: var(--color-white);
    box-shadow: 0 6px 18px rgba(38, 66, 191, 0.25);
}

/* ==========================================================================
   9. TWO-LINE FOOTER (Dark Slate Background)
   ========================================================================== */
.footer {
    background-color: var(--color-dark-slate);
    border-top: 4px solid var(--color-royal-blue);
    padding: 35px 0 20px 0;
    color: var(--color-white);
}

.footer-line-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(221, 221, 235, 0.2);
    padding-bottom: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--color-lavender-light);
}

.footer-nav a:hover {
    color: var(--color-royal-blue);
}

.footer-copy {
    font-size: 13px;
    color: var(--color-lavender-light);
}

.footer-line-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(221, 221, 235, 0.7);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-disclaimer {
    max-width: 65%;
    line-height: 1.4;
}

.footer-terms {
    display: flex;
    gap: 10px;
}

.footer-terms a {
    color: rgba(221, 221, 235, 0.7);
}

.footer-terms a:hover {
    color: var(--color-royal-blue);
}

/* Floating Action Quick Call (Left) & WhatsApp (Right) Buttons */
.btn-float {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.btn-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.float-call {
    left: 25px;
    background: var(--color-royal-blue);
    box-shadow: 0 6px 20px rgba(38, 66, 191, 0.4);
}

.float-call:hover {
    transform: scale(1.1);
    background: #1c329e;
    box-shadow: 0 8px 25px rgba(38, 66, 191, 0.6);
}

.float-wa {
    right: 25px;
    background: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.float-wa:hover {
    transform: scale(1.1);
    background: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .footer-line-one {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-line-two {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-disclaimer {
        max-width: 100%;
    }
}
