:root {
    --c1: #ffffff;
    /* Premium White */
    --c2: #f4f9ff;
    /* Ultra Pale Vibrant Blue */
    --c3: #e1f0ff;
    /* Soft Blue */
    --c4: #8abfff;
    /* Sky Blue */
    --c5: #0065e0;
    /* Royal Blue (Target Color) */
    --c6: #0059c6;
    /* Saturated Core Blue */
    --c7: #004da8;
    /* Strong Blue */
    --c8: #003066;
    /* Premium Deep Navy Blue */
    --c9: #00244d;
    /* Saturated Navy Blue */
    --c10: #001933;
    /* Deepest Navy Blue (Professional Base) */
    --accent: #3385e6;
    /* Vibrant Crystalline Blue */
    --accent-hover: #ffffff;
    /* Clean White */
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--c1);
    color: var(--c10);
    /* Deep Jewel Teal */
}

/* Global offset removed because nav is now sticky and in-flow */

.container-wide {
    width: 95%;
    max-width: 1700px;
    margin: 0 auto;
}

/* HEADER WRAPPER */
.main-header {
    position: relative;
    /* Takes up space by default (fixes overlap) */
    width: 100%;
    z-index: 2010;
    transition: all 0.4s ease;
}

/* TOP BAR (Solid Default) */
.top-bar {
    background: var(--c2);
    /* Standard Pale Teal */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--c10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 38px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.4s ease;
}

.top-bar a {
    color: var(--c10);
    text-decoration: none;
    margin-left: 18px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.7;
}

/* NAVBAR (Solid Default) - Scoped to Main Header to avoid affecting Mobile Menu */
.main-header nav {
    background: var(--c5);
    /* Solid Aqua */
    height: 90px;
    /* Restored to 90px */
    z-index: 2005;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Base nav tag should be transparent to avoid pollutions */
nav {
    background: transparent;
}

/* HOME PAGE OVERRIDES (Transparent Overlay) */
.is-home .main-header {
    position: absolute;
    /* Overlays the video on home page */
    background: transparent;
}

.is-home .top-bar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.is-home .top-bar a {
    color: #fff;
}

.is-home nav {
    background: transparent;
}

/* SCROLL PINNED STATE (Global) */
nav.is-pinned {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--c5) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2005;
}

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

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    height: 130px;
    /* Taller than nav for pop-out effect */
    z-index: 2015;
    margin-top: 10px;
    /* Nudge down slightly */
}

.logo img {
    height: 120px;
    /* Large prominent logo */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
    /* Logo now sits nicely inside the containerized flex box */
}

/* NAV LINKS */
nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
}

nav ul li a {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.book-btn {
    background: #ffffff;
    color: var(--c5);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #ffffff;
}

.book-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* DROPDOWN & MEGA MENU */
.has-dropdown {
    position: relative;
}

.has-dropdown>a i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    width: 750px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-top: 4px solid var(--c5);
    display: none;
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 100%;
        max-width: calc(100vw - 40px);
        left: 50%;
        transform: translateX(-50%) translateY(20px);
    }
}

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

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

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

.mega-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mega-card:hover {
    background: #ffffff;
    border-color: var(--c5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mega-icon {
    width: 45px;
    height: 45px;
    background: var(--c5);
    color: var(--c10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mega-info h3 {
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    color: var(--c10);
    margin-bottom: 3px;
}

.mega-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
}

/* ROYAL SERVICE HERO */
.service-hero-royal {
    background-size: cover;
    background-position: center;
    padding: 220px 0 160px;
    text-align: center;
    color: #fff;
    position: relative;
    width: 100%;
}

.service-hero-royal .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustment for Hero */
@media (max-width: 768px) {
    .service-hero-royal {
        padding: 130px 0 90px;
    }

    .banner-headline {
        font-size: 38px !important;
    }

    .banner-content {
        padding: 100px 20px 0;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .banner-btns {
        justify-content: center;
        width: 100%;
    }
}

/* MAIN CONTENT STYLES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-pad {
    padding: 80px 0 50px;
}

.section-label {
    color: var(--c7);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--c10);
    margin-bottom: 30px;
    line-height: 1.2;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: var(--c8);
    color: #fff;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* BANNER */
.banner {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Grand full-screen height */
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    /* Content starts from top, below the navbar */
    background: #000;
    /* Pre-fill background so no white flashes */
    margin-bottom: 0;
    padding-bottom: 80px;
    /* Space between banner and next section */
}

.banner-img,
.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.03);
    /* Ensure zero-gap coverage at edges */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

.banner-content {
    position: relative;
    z-index: 10;
    padding: 148px 80px 0;
    /* 38px topbar + 90px nav + 20px gap = 148px */
    max-width: 800px;
    width: 100%;
    align-self: flex-start;
}

.banner-tag {
    background: var(--accent);
    color: var(--c10);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.banner-headline {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-sub {
    color: #fff;
    /* Improved contrast */
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.banner-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Align buttons with left-aligned text */
}

/* HIGHLIGHTS SECTION */
.highlights {
    background: var(--c5);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: -5px;
    /* Pull up to overlap and hide the white line */
    position: relative;
    z-index: 20;
}

.highlight-item {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

.highlight-item span {
    font-size: 14px;
}

/* ABOUT (Royal Refinement) */
.about {
    background: #ffffff;
    overflow: hidden;
}

.about-grid-container {
    max-width: 95%;
    /* Wider than standard but not edge-to-edge */
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}

.about-visual {
    position: relative;
    width: 100%;
}

.about-slider-wrap {
    position: relative;
    overflow: hidden;
    height: 480px;
    background: var(--c2);
    border-radius: 8px;
    /* High-end rounded corners */
}

.about-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: aboutSliderAnim 20s infinite ease-in-out;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes aboutSliderAnim {
    0%, 24% { opacity: 1; }
    25%, 99% { opacity: 0; }
    100% { opacity: 1; }
}

.slide:only-child {
    opacity: 1 !important;
    animation: none !important;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    right: -45px;
    /* Overlap effect: half on image, half outside */
    background: var(--accent);
    color: var(--c10);
    font-size: 20px;
    font-weight: 900;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    z-index: 20;
    /* Ensure it stays on top */
    border: 3px solid #fff;
}

.about-text {
    padding: 0;
    background: transparent;
}

.section-title span {
    color: var(--accent);
}

.about-content-inner {
    max-width: 100%;
}

.btn-royal {
    background: var(--c5);
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 4px;
    /* Elegant pill shape */
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-royal:hover {
    background: #ffffff;
    color: var(--c10);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-text p {
    color: #222;
    font-size: 17px;
    /* Sightly larger for Outfit */
    line-height: 1.8;
    font-family: 'Outfit', sans-serif;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 28px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--c8);
}

.stat span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* RIDES SLIDER */
.rides-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    margin-top: 20px;
    padding: 20px 5px 40px;
    /* Extra bottom padding for card hover/shadow */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
}

.rides-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

/* ===== ATTRACTIONS SECTION ===== */
.attractions .section-label {
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--c9);
}

.attractions .section-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.attractions {
    background: #fcfcfc;
    padding: 60px 0;
}

.attractions-wide-container {
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.attractions-slider-wrap {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.attractions-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.attraction-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards on desktop */
    aspect-ratio: 10/15;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.attraction-card:hover .attraction-video {
    transform: scale(1.05);
}

.attraction-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.attraction-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}

.attraction-info {
    padding-right: 130px;
    /* Space reserved for the 'Explore' button */
}

.attraction-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #f3eded;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attraction-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    /* Space for explore button */
}

.btn-explore-mini {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #ffffff;
    color: var(--c5);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid var(--c5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-explore-mini:hover {
    background: var(--accent);
    color: var(--c10);
    transform: scale(1.05);
}

.ride-card {
    flex: 0 0 320px;
    /* Fixed width for slider items */
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(4, 128, 138, 0.1);
    border-top: 4px solid var(--c6);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ride-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(4, 128, 138, 0.2);
}

.ride-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.ride-card h3 {
    color: var(--c9);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ride-card p {
    color: #333;
    font-size: 14.5px;
    line-height: 1.7;
}

/* OFFERS */
/* ===== OFFERS SECTION ===== */
.offers .section-label {
    font-size: 20px;
    letter-spacing: 5px;
}

.offers .section-title {
    font-size: 48px;
    margin-bottom: 50px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.offer-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
}

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

.offer-card.featured {
    background: #ffffff;
    color: var(--c10);
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 101, 224, 0.2);
    border: 3px solid var(--c5);
    z-index: 10;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--c10);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(51, 133, 230, 0.4);
}

.offer-badge.popular {
    background: #3498db;
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.offer-badge.groups {
    background: #2ecc71;
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.offer-card.featured .offer-badge {
    background: var(--accent);
    color: var(--c10);
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--c10);
    margin: 20px 0 10px;
}

.offer-card.featured h3 {
    color: var(--c10);
}

.offer-price {
    font-size: 42px;
    font-weight: 900;
    color: var(--c10);
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.offer-price span {
    font-size: 24px;
    vertical-align: super;
    margin-right: 2px;
    color: var(--accent);
}

.offer-price small {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0;
}

.offer-card.featured .offer-price {
    color: var(--c10);
}

.offer-card.featured .offer-price span {
    color: var(--accent);
}

.offer-card.featured .offer-price small {
    color: var(--c9);
}

.offer-card ul {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
    flex-grow: 1;
}

.offer-card ul li {
    font-size: 15px;
    color: #444;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card ul li i {
    color: #2ecc71;
    font-size: 16px;
}

.offer-card.featured ul li {
    color: var(--c10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.offer-card.featured ul li i {
    color: var(--accent);
}

.btn-royal-mini {
    background: #ffffff;
    color: var(--c5);
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-royal-mini:hover {
    background: var(--accent);
    color: var(--c10);
    box-shadow: 0 10px 20px rgba(51, 133, 230, 0.3);
}

.offer-card.featured .btn-royal-mini {
    background: var(--accent);
    color: var(--c10);
    border: none;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--c5);
    padding: 30px 0;
}

.testimonials .section-label {
    font-size: 20px;
    letter-spacing: 5px;
    color: var(--accent);
}

.testimonials .section-title {
    font-size: 42px;
    margin-bottom: 50px;
    color: #fff;
}

.testi-wide-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.testi-slider-wrap {
    position: relative;
    width: 100%;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 40px;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    right: 40px;
}

.testi-text {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.8;
    color: var(--c10);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--c10);
}

.author-info span {
    font-size: 13px;
    color: #666;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--accent);
    font-size: 14px;
}

@media (max-width: 900px) {
    .testi-card {
        flex: 0 0 100%;
    }
}

/* ===== BLOGS SECTION ===== */
.blogs {
    background: #f4f7ff;
    padding: 30px 0;
}

.blogs .section-label {
    font-size: 20px;
    letter-spacing: 5px;
    color: var(--c8);
}

.blogs .section-title {
    font-size: 42px;
    margin-bottom: 50px;
}

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

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--c10);
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(51, 133, 230, 0.3);
}

.blog-content {
    padding: 30px;
}

.blog-tag {
    display: inline-block;
    color: var(--c8);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--c10);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--c10);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--accent);
}

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

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

/* CTA STRIP */
.cta-strip {
    background: var(--c5);
    padding: 50px 30px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-strip h2 {
    color: var(--accent);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 6px;
}

.cta-strip p {
    color: var(--c1);
    font-size: 15px;
}

.btn-cta {
    background: var(--accent);
    color: var(--c9);
    padding: 14px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background: var(--c1);
    transform: translateY(-2px);
}

/* INTEGRATED ROYAL CONTACT SECTION */
.contact-section-royal {
    padding: 70px 0;
    background: var(--c5);
}

.contact-wrapper-royal {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
}

.contact-card-royal,
.map-card-royal {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.contact-card-royal {
    padding: 35px 40px;
}

.contact-header-royal .eyebrow-royal {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header-royal h2.title-royal {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin: 10px 0 15px;
    color: var(--c10);
    line-height: 1.2;
}

.contact-header-royal h2.title-royal span {
    color: var(--accent);
    font-style: italic;
}

.subtext-royal {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-form-royal .form-row-royal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-royal input,
.contact-form-royal textarea {
    width: 100%;
    padding: 18px 22px;
    border-radius: 4px;
    border: 1px solid #e0e6ed;
    background: #fafafa;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form-royal input:focus,
.contact-form-royal textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(51, 133, 230, 0.1);
}

.btn-royal-submit-new {
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 4px;
    background: var(--c5);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-royal-submit-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(51, 133, 230, 0.2);
}

.map-card-royal iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
}

@media (max-width: 991px) {
    .contact-wrapper-royal {
        grid-template-columns: 1fr;
    }

    .map-card-royal iframe {
        min-height: 400px;
    }

    .contact-section-royal {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .contact-card-royal {
        padding: 30px 20px;
    }

    .title-royal {
        font-size: 32px;
    }

    .contact-form-royal .form-row-royal {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER SOLID FIX REMOVED */


/* GLOBAL DESKTOP/MOBILE VISIBILITY */
.mobile-header,
.mobile-bottom-nav {
    display: none;
}


/* ===== INSTAGRAM REELS ===== */
.insta-reels {
    background: #fdfdfd;
    padding: 80px 0;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 20px;
}

.insta-header .section-title {
    margin-bottom: 0;
}

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

.reel-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-5px);
}

.reel-visual {
    position: relative;
    min-height: 520px;
    width: 100%;
    background-color: #000;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reel-loading,
.reel-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    color: #fff;
    z-index: 0;
    /* Behind the loaded iframe */
}

.reel-placeholder i {
    font-size: 44px;
    color: #f09433;
    /* Instagram-ish orange */
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.reel-placeholder p {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.reel-loading i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--accent);
    animation: pulseInsta 2s infinite;
}

@keyframes pulseInsta {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.reel-visual iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 1;
    transition: background 0.3s;
}

.reel-card:hover .reel-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.reel-video-local {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay-v3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.reel-card:hover .reel-overlay-v3 {
    opacity: 1;
    transform: translateY(0);
}

.reel-overlay-v3 i {
    font-size: 36px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.reel-overlay-v3 span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reel-footer {
    padding: 15px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c10);
}

.reel-actions {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.reel-footer i {
    cursor: pointer;
    transition: color 0.2s;
}

.reel-footer i:hover {
    color: var(--c7);
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-header {
        display: block;
        background: var(--c5) !important;
        /* Branded Royal Aqua */
        padding: 10px 15px 15px;
        position: sticky;
        top: 0;
        z-index: 2000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .mh-top {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 15px;
    }

    .mh-logo img {
        height: 50px;
        width: auto;
    }

    .mh-actions {
        display: flex;
        gap: 15px;
    }

    .mh-actions a {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        text-decoration: none;
    }

    .mh-search {
        width: 100%;
    }

    .search-box {
        background: #fff;
        display: flex;
        align-items: center;
        padding: 10px 15px;
        border-radius: 4px;
        gap: 12px;
    }

    .search-box i {
        color: #2a2e79;
        font-size: 14px;
    }

    .search-box input {
        border: none;
        outline: none;
        width: 100%;
        color: #2a2e79;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
    }

    /* BOTTOM NAV */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--c10);
        /* Branded Deep Navy to match footer */
        height: 65px;
        z-index: 2500;
        align-items: center;
        justify-content: space-around;
        padding: 0 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: #fff;
        text-decoration: none;
        width: 60px;
    }

    .nav-item i {
        font-size: 18px;
        opacity: 0.9;
    }

    .nav-item span {
        font-size: 9px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* MOBILE MENU OVERLAY - PREMIUM REDESIGN */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 25, 51, 0.98);
        /* Solid Royal Navy */
        backdrop-filter: blur(20px);
        z-index: 10000;
        padding: 40px 25px 30px;
        animation: fadeInOverlay 0.4s ease;
        display: none;
        /* Controlled by JS toggle */
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        overflow-y: auto;
    }

    /* Used when display: flex via JS */
    .mobile-menu-overlay.active {
        display: flex !important;
    }

    @keyframes fadeInOverlay {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 30px;
        color: var(--accent);
        cursor: pointer;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        z-index: 2;
    }

    .menu-content {
        width: 100%;
        height: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .menu-logo {
        margin-bottom: 30px;
        /* Reduced from 50px */
        display: block;
    }

    .menu-logo img {
        height: 100px;
        /* Reduced from 120px for better vertical fit */
        width: auto;
        object-fit: contain;
        filter: brightness(1.2) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        flex-grow: 1;
        justify-content: center;
        margin: 30px 0;
    }

    .menu-links a {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        padding: 12px 0;
        transition: all 0.3s ease;
        display: block;
        border: none !important;
        opacity: 0;
        animation: slideInUp 0.5s ease forwards;
    }

    /* Staggered Animations */
    .menu-links a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .menu-links a:nth-child(2) {
        animation-delay: 0.15s;
    }

    .menu-links a:nth-child(3) {
        animation-delay: 0.2s;
    }

    .menu-links a:nth-child(4) {
        animation-delay: 0.25s;
    }

    .menu-links a:nth-child(5) {
        animation-delay: 0.3s;
    }

    .menu-links a:nth-child(6) {
        animation-delay: 0.35s;
    }

    .menu-links a:nth-child(7) {
        animation-delay: 0.4s;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Overriding previous style */

    .menu-links a:hover,
    .menu-links a:active {
        color: var(--accent);
        transform: scale(1.05);
        /* Gentle zoom instead of bg color */
    }

    .menu-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
        width: 100%;
        margin-top: auto;
    }

    .menu-footer p {
        font-size: 10px;
        color: #a0eef5;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 700;
        opacity: 0.8;
    }

    .menu-socials {
        display: flex;
        justify-content: center;
        gap: 35px;
        font-size: 26px;
    }

    .menu-socials a {
        color: var(--accent);
        transition: transform 0.3s ease;
    }

    .menu-socials a:hover {
        transform: translateY(-5px);
    }

    .nav-spacer {
        width: 80px;
    }

    .floating-book-btn {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--c5);
        /* Matches Bottom Nav/Footer Navy */
        color: #ffffff;
        width: 82px;
        height: 82px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 5px 20px rgba(0, 25, 51, 0.3);
        z-index: 2600;
        border: 4px solid var(--c10);
        animation: royalPulse 2s infinite;
    }

    @keyframes royalPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(51, 133, 230, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(51, 133, 230, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(51, 133, 230, 0);
        }
    }

    .floating-book-btn span {
        font-size: 11px;
        font-weight: 900;
        line-height: 1.1;
        text-transform: uppercase;
        color: #ffffff;
    }

    /* GENERAL MOBILE RESPONSIVENESS */
    body:not(.is-home) {
        padding-top: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .banner {
        height: 80vh !important;
        min-height: 500px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-content {
        padding: 100px 20px 40px !important;
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-btns {
        justify-content: center;
        width: 100%;
    }

    .banner-headline {
        font-size: 30px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .banner-tag {
        font-size: 10px;
        display: block;
        width: fit-content;
        margin: 0 auto 16px;
        text-align: center;
    }

    .banner-sub {
        text-align: center !important;
        margin: 0 auto 28px !important;
        display: block;
    }

    .highlights {
        flex-direction: column;
        background: var(--c10);
    }

    .highlight-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        padding: 15px 20px !important;
        justify-content: flex-start;
    }

    .about-grid-container {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
    }

    .about-visual {
        width: 100%;
        position: relative;
    }

    .about-slider-wrap {
        height: 300px;
        /* Adjusted for better mobile proportion */
        border-radius: 0;
        /* Flat edge looks better when stacked on mobile */
        box-shadow: none;
    }

    .about-text {
        padding: 40px 20px;
    }

    .attractions-wide-container {
        width: 100%;
        padding: 0 15px;
    }

    .attraction-card {
        flex: 0 0 100%;
        aspect-ratio: 9/15;
    }

    .attraction-info h3 {
        font-size: 18px;
    }

    .testimonials {
        padding: 50px 0 100px;
        /* Extra bottom padding for floating button */
    }

    .testi-track {
        gap: 15px;
        padding: 0 20px;
        justify-items: center;
    }

    .testi-card {
        flex: 0 0 calc(100% - 40px);
        margin: 0 auto;
        min-height: 380px;
        padding: 30px 20px;
    }

    .testi-text {
        font-size: 18px;
        line-height: 1.6;
    }

    .testi-author {
        margin-top: 20px;
    }

    .about-badge {
        right: 15px !important;
        /* Move inside slightly for mobile safely */
        bottom: 10px !important;
        width: 65px !important;
        height: 65px !important;
        font-size: 13px !important;
        z-index: 30;
    }

    .section-title,
    .banner-headline,
    p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* OFFERS SECTION SPECIFIC */
    .offers .section-label {
        font-size: 15px;
        letter-spacing: 5px;
    }

    .offers .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .offers-grid {
        grid-template-columns: 1fr !important;
        gap: 35px;
        padding: 0 10px;
    }

    .offer-card.featured {
        transform: scale(1) !important;
        margin: 10px 0;
    }

    .offer-card {
        padding: 35px 25px;
    }

    .contact-v3-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .form-row-half {
        grid-template-columns: 1fr !important;
    }

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

    .map-wrap-v3 {
        height: 300px;
    }

    .contact-elegant {
        padding: 60px 0;
    }

    /* INSTAGRAM RESPONSIVE */
    .insta-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .reel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .reel-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* ACTIVITY GRID V2 MOBILE FIXES */
    .activity-grid-v2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .act-img {
        height: 220px;
    }

    .act-content {
        padding: 30px 20px;
    }

    .act-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .act-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .secondary-slider-wrap {
        height: 300px;
    }

    /* ROYAL RESPONSIVE REPAIR */
    .service-hero-royal,
    .service-hero {
        padding: 80px 0 !important;
        text-align: center;
    }

    .banner-headline,
    .service-hero-royal h1,
    .service-hero h1 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .service-hero-royal p,
    .service-hero p {
        font-size: 16px !important;
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .intro-text-royal {
        font-size: 16px !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
        padding: 0 10px;
    }

    .section-pad {
        padding: 50px 0;
    }

    /* Prevent Horizontal Overflow */
    html,
    body {
        overflow-x: hidden !important;
        position: relative;
    }

    /* MOBILE HEADER REFINEMENT (Fixed & Smart) */
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--c5);
        padding: 12px 20px;
        z-index: 2501;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Transparent on Home until scroll */
    .is-home .mobile-header:not(.scrolled) {
        background: transparent;
        box-shadow: none;
    }

    .mobile-header.scrolled {
        background: var(--c5);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .mh-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .mh-logo {
        display: block;
        transition: transform 0.3s ease;
        margin-right: auto;
        /* Logo to the left */
    }

    .mh-logo img {
        height: 50px !important;
        /* Adjusted for Imagicaa style */
        width: auto;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    }

    .mh-actions {
        display: flex;
        gap: 10px;
    }

    .mh-actions a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .mh-actions i {
        font-size: 16px;
        color: #fff;
    }

    /* IMAGICAA BOTTOM NAVIGATION Overhaul */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: #ffffff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
        z-index: 3000;
        padding: 0 5px;
    }

    .nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--c8);
        gap: 6px;
    }

    .nav-item i {
        font-size: 20px;
        color: var(--c8);
    }

    .nav-item span {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--c8);
    }

    .nav-spacer {
        width: 70px;
        /* Space for circular button */
        flex-shrink: 0;
    }

    /* CIRCULAR RED BOOK NOW BUTTON */
    .floating-book-btn {
        position: absolute;
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
        width: 76px;
        height: 76px;
        background: #bb0a0a;
        /* Premium Imagicaa Red */
        border: 4px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(187, 10, 10, 0.35);
        z-index: 3005;
        text-decoration: none;
        animation: bookPulse 2s infinite;
    }

    .floating-book-btn span {
        color: #fff;
        font-size: 11px;
        font-weight: 900;
        line-height: 1.1;
        text-align: center;
        text-transform: uppercase;
    }

    @keyframes bookPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(187, 10, 10, 0.4);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(187, 10, 10, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(187, 10, 10, 0);
        }
    }
}

/* ===== ARRIVALS & ACCESS SECTION ===== */
.access-section {
    padding: 90px 0;
    background: #fdfdfd;
}

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

.access-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.access-icon-circle {
    width: 90px;
    height: 90px;
    background: var(--c10);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 25, 51, 0.2);
}

.access-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--c10);
    margin-bottom: 15px;
    font-weight: 800;
}

.access-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.access-tag {
    background: #f0f7f8;
    color: var(--c5);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 10px 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: #fff;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question h3 {
    font-size: 19px;
    color: var(--c10);
    font-weight: 800;
    margin: 0;
}

.faq-icon {
    font-size: 20px;
    color: var(--c5);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    background: #fdfdfd;
}

.faq-answer-inner {
    padding: 30px;
    color: #555;
    line-height: 1.8;
    font-size: 15.5px;
    border-top: 1px solid #eee;
}

.faq-item:hover {
    border-color: var(--c5);
}

.faq-item.active {
    border-color: var(--c5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.faq-item.active .faq-question {
    background: #f0f7f8;
}

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

/* ===== REFINED SUPPORT (FAQ + CONTACT) SECTION ===== */
.support-section-refined {
    padding: 10px 0;
    background: #fbfdfd;
}

.refined-wrapper {
    width: 95%;
    max-width: 1700px;
    margin: 50px auto 0;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* FAQ Side */
.refined-faq {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.refined-faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 24px 30px;
    border: 1px solid #e6eef2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refined-faq-item:hover {
    border-color: var(--c5);
    box-shadow: 0 10px 25px rgba(0, 101, 224, 0.05);
}

.refined-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: var(--c10);
    font-size: 18px;
}

.refined-faq-question span {
    font-size: 24px;
    color: var(--c5);
    transition: transform 0.4s ease;
}

.refined-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    font-size: 15.5px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
    margin-top: 0;
    opacity: 0;
    line-height: 1.8;
}

.refined-faq-item.active {
    border-color: var(--c5);
    background: #f0fbfe;
}

.refined-faq-item.active .refined-faq-answer {
    max-height: 300px;
    margin-top: 18px;
    opacity: 1;
}

.refined-faq-item.active .refined-faq-question span {
    transform: rotate(45deg);
}

/* Contact Side */
.refined-contact-box {
    flex: 0.8;
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #e6eef2;
    display: flex;
    flex-direction: column;
}

.refined-contact-box h2 {
    color: var(--c10);
    font-size: 34px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.refined-contact-box p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.refined-contact-box input,
.refined-contact-box textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 6px;
    border: 1px solid #dbe5ea;
    margin-bottom: 15px;
    font-size: 15px;
    transition: 0.3s;
    background: #fbfbfc;
    outline: none;
    font-family: inherit;
}

.refined-contact-box input:focus,
.refined-contact-box textarea:focus {
    border-color: var(--c5);
    box-shadow: 0 0 0 5px rgba(0, 101, 224, 0.08);
    background: #fff;
}

.refined-contact-box button {
    background: linear-gradient(135deg, var(--c5), #1E7FA3);
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.refined-contact-box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 101, 224, 0.25);
    background: var(--c10);
}

@media (max-width: 1000px) {
    .refined-wrapper {
        flex-direction: column;
    }

    .refined-faq,
    .refined-contact-box {
        flex: none;
        width: 100%;
    }
}

/* ===== WHY CHOOSE US (Refined Grid Design) ===== */
.section-why-refined {
    padding: 10px 0;
    background: #fdfdfd;
}

.why-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-grid-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--c10);
    margin-bottom: 20px;
    font-weight: 900;
}

.why-grid-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
}

.why-reasons-list {
    display: flex;
    flex-direction: column;
}

.why-reason-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 3px solid var(--c5);
}

.why-reason-item h3 {
    margin: 0 0 8px;
    color: var(--c10);
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.why-reason-item p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.why-grid-img-wrap img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE WHY US */
@media (max-width: 1024px) {
    .why-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-left-col {
        order: 2;
    }

    .why-right-col {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .why-grid-heading {
        font-size: 36px;
    }
}