/* --------------------------------------------------
 * CSS Reset & Variables
 * -------------------------------------------------- */
:root {
    --bg-primary: #072738;
    --bg-secondary: #0E364A;
    --cta-primary: #EDC585;
    --cta-hover: #F6D89E;
    --text-white: #FFFFFF;
    --text-muted: #BFC9CF;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-bg-hover: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(237, 197, 133, 0.25);
    --border-gold-focus: rgba(237, 197, 133, 0.6);
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 20px rgba(237, 197, 133, 0.3);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-body);
}

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

/* --------------------------------------------------
 * Typography & Global Elements
 * -------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
}

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

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

ul {
    list-style: none;
}

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

.section {
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 5rem 0;
}

.grid-container {
    display: grid;
    gap: 2rem;
}

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

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

.grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

/* Section Header Style */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cta-primary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.header-divider {
    width: 60px;
    height: 3px;
    background-color: var(--cta-primary);
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.header-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--cta-primary);
    transform: rotate(45deg);
    top: -3.5px;
    left: calc(50% - 5px);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --------------------------------------------------
 * Glassmorphism Base Styles
 * -------------------------------------------------- */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--cta-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury), 0 0 15px rgba(237, 197, 133, 0.15);
}

/* --------------------------------------------------
 * Premium Button Shimmer & Styles
 * -------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-gold {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(237, 197, 133, 0.25);
}

.btn-gold:hover {
    background-color: var(--cta-hover);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--text-white);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
    background-color: transparent;
    border-color: var(--cta-primary);
    color: var(--cta-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Gold Shimmer Button Animation */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(30deg);
    transition: none;
    opacity: 0;
}

.btn-shimmer:hover::after {
    animation: button-shimmer-effect 1.2s ease-out infinite;
    opacity: 1;
}

@keyframes button-shimmer-effect {
    0% {
        left: -30%;
    }

    100% {
        left: 130%;
    }
}

.badge-gold {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(237, 197, 133, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cta-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* --------------------------------------------------
 * Loader / Splash Screen
 * -------------------------------------------------- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-logo-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gold);
    padding: 15px;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse-loader 2s ease-in-out infinite;
}

.loader-line {
    width: 180px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 40%;
    height: 100%;
    background-color: var(--cta-primary);
    position: absolute;
    left: 0;
    animation: loader-line-move 1.8s ease-in-out infinite;
    border-radius: 20px;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.loader-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--cta-primary);
}

@keyframes pulse-loader {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(237, 197, 133, 0.4));
    }
}

@keyframes loader-line-move {
    0% {
        left: -40%;
        width: 40%;
    }

    50% {
        left: 30%;
        width: 60%;
    }

    100% {
        left: 100%;
        width: 40%;
    }
}

/* --------------------------------------------------
 * Sticky Navigation Header
 * -------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(7, 39, 56, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 48px;
    width: auto;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.logo-text-box {
    display: flex;
    flex-direction: column;
}

.logo-name-top {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-white);
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--cta-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-white);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cta-primary);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

/* --------------------------------------------------
 * Mobile Navigation Drawer
 * -------------------------------------------------- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 39, 56, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-gold);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

.mobile-menu-overlay.active .mobile-menu-panel {
    right: 0;
}

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

.mobile-logo {
    height: 48px;
    background: #fff;
    padding: 4px;
    border-radius: 8px;
}

.close-menu {
    font-size: 2.25rem;
    color: var(--cta-primary);
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: auto;
}

.mobile-nav-item {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--cta-primary);
    padding-left: 10px;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
}

.mobile-footer-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-footer-link:hover {
    color: var(--cta-primary);
}

.mobile-cta-btn {
    margin-top: 0.5rem;
}

/* --------------------------------------------------
 * Hero & Statistics Section
 * -------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 39, 56, 0.45) 0%, rgba(7, 39, 56, 0.95) 90%),
        linear-gradient(to bottom, rgba(7, 39, 56, 0.2) 0%, rgba(7, 39, 56, 0.9) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.hero-content {
    max-width: 800px;
    margin-top: 4rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-bottom: 3rem;
}

.why-choose-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 4rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(237, 197, 133, 0.08);
    border-color: var(--border-gold);
    color: var(--cta-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 197, 133, 0.15);
}

.trust-badge i {
    color: var(--cta-primary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-btn {
    min-width: 180px;
}

/* Statistics Bar */
.stats-bar-wrapper {
    width: 100%;
    background: linear-gradient(to bottom, rgba(7, 39, 56, 0) 0%, rgba(14, 54, 74, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-gold);
    z-index: 3;
    padding: 2rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
    padding: 0 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number-wrapper {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--cta-primary);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

/* --------------------------------------------------
 * Why Choose Us Components
 * -------------------------------------------------- */
.why-choose-section {
    background-color: var(--bg-primary);
}

.choose-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.choose-card.has-image {
    padding: 0;
    overflow: hidden;
}

.choose-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.choose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.choose-card:hover .choose-img {
    transform: scale(1.06);
}

.choose-card-content {
    padding: 2.25rem 2rem 3rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-card.has-image .choose-icon-box {
    margin: -4.25rem auto 2rem auto;
    position: relative;
    z-index: 2;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-gold);
}

.choose-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(237, 197, 133, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.choose-card:hover .choose-icon-box {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(237, 197, 133, 0.4);
}

.choose-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.choose-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --------------------------------------------------
 * Fleet Section (Force Urbania)
 * -------------------------------------------------- */
.fleet-section {
    background-color: #051e2b;
    /* Subtle tone change */
}

.fleet-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.fleet-image-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #02111a;
}

/* Fleet Slide Carousel Engine */
.fleet-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.fleet-carousel-slides .fleet-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(1);
}

.fleet-carousel-slides .fleet-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.fleet-card:hover .fleet-carousel-slides .fleet-img.active {
    transform: scale(1.03);
}

/* Prev & Next Carousel Buttons */
.fleet-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(7, 39, 56, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    color: var(--cta-primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fleet-card:hover .fleet-carousel-btn {
    opacity: 0.9;
}

.fleet-carousel-btn:hover {
    opacity: 1 !important;
    background: var(--cta-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-50%) scale(1.15);
}

.fleet-prev-btn {
    left: 12px;
}

.fleet-next-btn {
    right: 12px;
}

/* Carousel Pagination Dots */
.fleet-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    padding: 4px 10px;
    background: rgba(7, 39, 56, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    border: 1px solid rgba(237, 197, 133, 0.25);
}

.fleet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-dot.active,
.fleet-dot:hover {
    background: var(--cta-primary);
    width: 18px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(237, 197, 133, 0.6);
}

/* Badge Photo Count */
.fleet-badge-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(7, 39, 56, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--border-gold);
    color: var(--cta-primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.05em;
}

.fleet-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(237, 197, 133, 0.08);
    border: 1px solid var(--border-gold);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cta-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.fleet-info {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.fleet-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.fleet-spec-summary {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.fleet-spec-summary span {
    font-size: 0.85rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fleet-spec-summary i {
    color: var(--cta-primary);
}

.fleet-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fleet-ctas .btn {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
}

/* Fleet Pricing Box */
.fleet-pricing-box {
    background: rgba(237, 197, 133, 0.05);
    border: 1px dashed var(--border-gold);
    border-radius: 12px;
    padding: 0.85rem 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-pricing-box {
    background: rgba(237, 197, 133, 0.1);
    border-style: solid;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pricing-val {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cta-primary);
}

.pricing-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------
 * Premium Selection Fleet Section (Grid Redesign)
 * -------------------------------------------------- */
.premium-selection-section {
    background-color: var(--bg-primary);
}

/* Static Fleet Image (No Carousel) */
.fleet-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease-in-out;
}

.fleet-card:hover .fleet-static-img {
    transform: scale(1.03);
}

/* Category Subsection Headers */
.category-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.85rem;
    margin-bottom: 2.5rem;
}

.category-group-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    font-weight: 600;
}

.category-group-badge {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cta-primary);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(237, 197, 133, 0.05);
}

/* Centered single cards */
.category-grid-centered {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Bullet list of features */
.premium-card-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.premium-card-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.4;
}

.premium-card-list li i {
    color: var(--cta-primary); /* Gold checkmarks */
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

/* Full-width Gold booking button */
.premium-card-btn {
    width: 100%;
    background: var(--cta-primary);
    color: var(--bg-primary) !important;
    border: 1px solid var(--cta-primary);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.premium-card-btn:hover {
    background: transparent;
    color: var(--cta-primary) !important;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Luxury Features Showcase */
.luxury-features-container {
    margin-top: 6rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-align: center;
}

.features-block-title {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.amenities-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
}

/* Fading mask on the left and right sides */
.amenities-marquee-container::before,
.amenities-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.amenities-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #051e2b 0%, rgba(5, 30, 43, 0) 100%);
}

.amenities-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #051e2b 0%, rgba(5, 30, 43, 0) 100%);
}

.amenities-marquee-track {
    display: flex;
    gap: 5rem;
    width: max-content;
    animation: amenities-scroll 25s linear infinite;
}

.amenities-marquee-track:hover {
    animation-play-state: paused;
}

.amenities-marquee-track .feature-item {
    flex-shrink: 0;
    width: 180px;
}

/* --------------------------------------------------
 * Full-Width Video Showcase Section
 * -------------------------------------------------- */
.video-showcase-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #02111a;
}

.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    max-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: brightness(0.85) contrast(1.05);
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(5, 30, 43, 0.85) 0%, 
        rgba(2, 17, 26, 0.45) 45%, 
        rgba(2, 17, 26, 0.9) 100%);
    pointer-events: none;
    z-index: 2;
}

.video-content-overlay {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(237, 197, 133, 0.15);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cta-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.video-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.video-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.video-control-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(7, 39, 56, 0.85);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--cta-primary);
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-control-btn:hover {
    background: var(--cta-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
    .video-container {
        height: 55vh;
        min-height: 380px;
    }

    .video-content-overlay {
        padding: 1.5rem 1rem;
    }
}

@keyframes amenities-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.feature-item i {
    font-size: 2.25rem;
    color: var(--cta-primary);
    transition: var(--transition-smooth);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
}

.feature-item:hover i {
    transform: translateY(-5px);
    text-shadow: 0 0 10px rgba(237, 197, 133, 0.5);
}

/* --------------------------------------------------
 * Services Layout (Alternating Columns)
 * -------------------------------------------------- */
.services-section {
    background-color: var(--bg-primary);
}

.services-alternate-layout {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-col {
    flex: 1;
}

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

.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 39, 56, 0) 50%, rgba(7, 39, 56, 0.7) 100%);
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-row:hover .service-img {
    transform: scale(1.05);
}

.service-content-col {
    flex: 1;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: rgba(237, 197, 133, 0.12);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.service-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.service-feature-list li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
}

.service-feature-list i {
    color: var(--cta-primary);
    font-size: 0.85rem;
}

/* --------------------------------------------------
 * Popular Destinations
 * -------------------------------------------------- */
.destinations-section {
    background-color: #051e2b;
}

.destination-card {
    overflow: hidden;
    border-radius: 20px;
}

.destination-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .destination-img {
    transform: scale(1.06);
}

.destination-route-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
}

.destination-route-header i {
    color: var(--cta-primary);
    font-size: 1.35rem;
}

.destination-route-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.destination-color-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.85;
}

.destination-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.destination-route-icon {
    font-size: 2.5rem;
    color: var(--cta-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.destination-text-overlay h3 {
    font-size: 1.4rem;
    line-height: 1.3;
}

.destination-details {
    padding: 1.75rem;
}

.dest-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.dest-badge i {
    color: var(--cta-primary);
}

.dest-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dest-book-btn {
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
}

/* --------------------------------------------------
 * Booking Process Timeline
 * -------------------------------------------------- */
.booking-process-section {
    background-color: var(--bg-primary);
}

.booking-timeline-container {
    position: relative;
    margin-top: 5rem;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, rgba(237, 197, 133, 0) 0%, rgba(237, 197, 133, 0.4) 15%, rgba(237, 197, 133, 0.4) 85%, rgba(237, 197, 133, 0) 100%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.step-badge {
    width: 80px;
    height: 80px;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto 2.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury), 0 0 15px rgba(237, 197, 133, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-step:hover .step-badge {
    border-color: var(--cta-primary);
    transform: scale(1.08);
    box-shadow: var(--shadow-luxury), var(--shadow-gold);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cta-primary);
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------
 * Pinterest Masonry Gallery
 * -------------------------------------------------- */
.gallery-section {
    background-color: #051e2b;
}

.gallery-masonry {
    columns: 4 250px;
    column-gap: 1.5rem;
    width: 100%;
}

/* Gallery Carousel */
.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.gallery-carousel-wrapper::before,
.gallery-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.gallery-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #051e2b 0%, rgba(5, 30, 43, 0) 100%);
}

.gallery-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #051e2b 0%, rgba(5, 30, 43, 0) 100%);
}

.gallery-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: gallery-scroll 35s linear infinite;
}

.gallery-carousel-track:hover {
    animation-play-state: paused;
}

.gallery-carousel-track .gallery-item {
    flex-shrink: 0;
    width: 320px;
    margin-bottom: 0;
}

@keyframes gallery-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .gallery-carousel-track {
        gap: 1rem;
    }
    .gallery-carousel-track .gallery-item {
        width: 260px;
    }
    .gallery-carousel-wrapper::before,
    .gallery-carousel-wrapper::after {
        width: 50px;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.gallery-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
    aspect-ratio: 4 / 3;
}

.gallery-img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 39, 56, 0.85);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    z-index: 2;
}

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

.gallery-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cta-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.gallery-img-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.gallery-zoom-icon {
    font-size: 1.75rem;
    color: var(--cta-primary);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.gallery-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

/* --------------------------------------------------
 * Testimonials & Google Reviews
 * -------------------------------------------------- */
.testimonials-section {
    background-color: var(--bg-primary);
}

.review-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--cta-primary);
    font-size: 0.95rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.review-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-badge-small {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 1.25rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.review-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.google-rating-summary {
    margin-top: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.google-rating-score {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.google-stars {
    display: flex;
    gap: 0.35rem;
    color: #FFD700;
    font-size: 1.25rem;
}

.google-rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------
 * FAQ Accordion Structure
 * -------------------------------------------------- */
.faq-section {
    background-color: #051e2b;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--cta-primary);
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--cta-primary);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --------------------------------------------------
 * Parallax Call-To-Action Banner
 * -------------------------------------------------- */
.cta-banner-section {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 39, 56, 0.95) 20%, rgba(7, 39, 56, 0.75) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.88rem;
}

/* --------------------------------------------------
 * Contact & WhatsApp Form
 * -------------------------------------------------- */
.contact-section {
    background-color: var(--bg-primary);
}

.contact-columns-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.info-block-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-block-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

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

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(237, 197, 133, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--cta-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.5;
}

.info-value-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cta-primary);
}

.info-value-link:hover {
    color: var(--cta-hover);
    text-decoration: underline;
}

.info-value-link-alt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
    padding: 3.5rem;
    border-radius: 24px;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--cta-primary);
}

.label-optional {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: auto; /* Push it to the far right or keep it close. Wait, if it is flex, margin-left: auto pushes it to the right of the row. Let's keep it close or push it? Better keep it close. */
    opacity: 0.75;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    color: var(--text-white);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cta-primary);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(237, 197, 133, 0.15);
}

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

.form-error-msg {
    display: none;
    font-size: 0.75rem;
    color: #FF6B6B;
    margin-top: 0.25rem;
}

.submit-form-btn {
    margin-top: 1rem;
    padding: 1.1rem;
}

/* Map Embed */
.map-embed-wrapper {
    margin-top: 6rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
}

/* Display map in standard colors */
.map-embed-wrapper iframe {
    display: block;
}

/* --------------------------------------------------
 * Footer Structure & Links
 * -------------------------------------------------- */
.footer {
    background-color: #03141d;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 48px;
    background: #fff;
    padding: 4px;
    border-radius: 8px;
}

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
    border-color: var(--cta-primary);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--cta-primary);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-contact-details li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    line-height: 1.5;
}

.footer-contact-details li i {
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-details a:hover {
    color: var(--cta-primary);
}

.text-gold {
    color: var(--cta-primary) !important;
}

.footer-gold-divider {
    height: 1px;
    background: radial-gradient(circle, var(--border-gold) 0%, rgba(237, 197, 133, 0) 100%);
    margin-bottom: 2.5rem;
}

.sub-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.creator-credits {
    color: var(--cta-primary);
    font-weight: 500;
}

/* --------------------------------------------------
 * Floating Action Callouts & Animations
 * -------------------------------------------------- */
.floating-actions-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.float-whatsapp {
    background-color: #25D366;
    animation: float-bounce 3s infinite ease-in-out;
}

.float-phone {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
    animation: float-ring 4s infinite ease-in-out;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.float-tooltip {
    position: absolute;
    right: 75px;
    top: 15px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-gold);
    color: var(--text-white);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@keyframes float-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-ring {

    0%,
    90%,
    100% {
        transform: rotate(0) scale(1);
    }

    92% {
        transform: rotate(15deg) scale(1.05);
    }

    94% {
        transform: rotate(-15deg) scale(1.05);
    }

    96% {
        transform: rotate(15deg) scale(1.05);
    }

    98% {
        transform: rotate(-15deg) scale(1.05);
    }
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-gold);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    z-index: 998;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.sticky-cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.cta-call {
    background-color: var(--bg-secondary);
}

.cta-book {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
}

.cta-whatsapp {
    background-color: #25D366;
}

/* --------------------------------------------------
 * Fleet Specifications Modal
 * -------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 39, 56, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-luxury);
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.25rem;
    color: var(--cta-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-white);
    transform: rotate(90deg);
}

.modal-body-content {
    display: grid;
    grid-template-columns: 5fr 5fr;
    height: 100%;
}

.modal-image-gallery {
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-main-image-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbnail-row {
    display: flex;
    gap: 0.75rem;
}

.modal-thumb {
    flex: 1;
    min-width: 0;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.modal-thumb:hover,
.modal-thumb.active {
    opacity: 1;
    border-color: var(--cta-primary);
}

.modal-info-col {
    padding: 3rem;
    overflow-y: auto;
}

.modal-vehicle-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.modal-vehicle-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-section-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cta-primary);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.35rem;
}

.modal-specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.modal-specs-list li {
    font-size: 0.85rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
}

.modal-specs-list li span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.modal-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.modal-tag {
    font-size: 0.75rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.modal-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    margin-bottom: 2.5rem;
}

.modal-amenity-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-amenity-item i {
    color: var(--cta-primary);
}

/* --------------------------------------------------
 * Photo Lightbox Modal
 * -------------------------------------------------- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 39, 56, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 4000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
}

.lightbox-caption {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cta-primary);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: var(--cta-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--text-white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    color: var(--cta-primary);
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-nav:hover {
    background-color: var(--cta-primary);
    color: var(--bg-primary);
}

.lightbox-prev {
    left: 2.5rem;
}

.lightbox-next {
    right: 2.5rem;
}

/* --------------------------------------------------
 * 20-Second Inquiry Popup
 * -------------------------------------------------- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 39, 56, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 3.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.popup-overlay.active .popup-card {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    color: var(--cta-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.popup-close:hover {
    color: var(--text-white);
    transform: rotate(90deg);
}

.popup-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(237, 197, 133, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cta-primary);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.popup-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.popup-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-form input,
.popup-form select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    color: var(--text-white);
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--cta-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.popup-footer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.popup-footer-text a {
    color: var(--cta-primary);
    font-weight: 600;
}

/* --------------------------------------------------
 * Scroll Reveal Animation Classes
 * -------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
}

/* Micro delays for lists/grids */
.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.reveal-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

.reveal-on-scroll:nth-child(7) {
    transition-delay: 0.6s;
}

.reveal-on-scroll:nth-child(8) {
    transition-delay: 0.7s;
}

/* --------------------------------------------------
 * Media Queries for Responsiveness
 * -------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }

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

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

@media (max-width: 991px) {
    .section-padding {
        padding: 4rem 0;
    }

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

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

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
        gap: 3rem;
    }

    .service-img {
        height: 320px;
    }

    .contact-columns-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modal-body-content {
        grid-template-columns: 1fr;
    }

    .modal-image-gallery {
        padding: 2.5rem;
    }

    .modal-main-image-wrapper {
        aspect-ratio: 3 / 2 !important;
        height: auto !important;
    }

    .modal-info-col {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .navbar {
        padding: 1rem 0;
        background-color: rgba(7, 39, 56, 0.92);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border-gold);
    }

    .nav-menu,
    .nav-actions .btn {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-trust-badges {
        gap: 0.75rem 1rem;
    }

    .why-choose-trust-badges {
        gap: 0.75rem 1rem;
        margin-top: 2.5rem;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
    }

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

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



    .luxury-features-container {
        padding: 2.5rem 1.5rem;
    }

    .booking-timeline-container {
        margin-top: 3rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        margin-bottom: 3rem;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .step-badge {
        margin-bottom: 1.5rem;
    }

    .floating-actions-container {
        display: none !important;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .cta-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
    }

    .mobile-sticky-cta {
        display: grid;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .booking-form-wrapper {
        padding: 2rem;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* --------------------------------------------------
 * Separate Gallery Page Styles
 * -------------------------------------------------- */
.gallery-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 39, 56, 0.7) 0%, rgba(7, 39, 56, 0.95) 100%);
    z-index: 1;
}

.gallery-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
    margin-top: 4rem;
}

.gallery-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.gallery-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 50vh;
        min-height: 350px;
    }
    .gallery-hero-title {
        font-size: 2.2rem;
    }
    .gallery-hero-subtitle {
        font-size: 1rem;
    }
}

/* Mobile Section Carousels via Native Scroll Snapping */
@media (max-width: 768px) {
    /* 1. Grids to Flex Row Scroll Snappers */
    .why-choose-section .grid-container,
    .destinations-section .grid-container,
    .testimonials-section .grid-container,
    .gallery-masonry {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1.25rem !important;
        padding: 1rem 0.75rem 2rem 0.75rem !important;
        margin-left: -0.75rem !important;
        margin-right: -0.75rem !important;
        scrollbar-width: none !important; /* Firefox */
        grid-template-columns: none !important; /* Override desktop grid columns */
        column-count: auto !important; /* Override desktop masonry columns */
    }

    /* Hide scrollbars for Chrome, Safari, Opera */
    .why-choose-section .grid-container::-webkit-scrollbar,
    .destinations-section .grid-container::-webkit-scrollbar,
    .testimonials-section .grid-container::-webkit-scrollbar,
    .gallery-masonry::-webkit-scrollbar {
        display: none !important;
    }

    /* 2. Card Snap Alignments */
    .why-choose-section .choose-card,
    .destinations-section .destination-card,
    .testimonials-section .review-card,
    .gallery-masonry .gallery-item {
        flex: 0 0 82% !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        margin-bottom: 0 !important; /* Override masonry vertical spacing */
        width: auto !important;
        box-sizing: border-box !important;
    }

    .fleet-image-container {
        aspect-ratio: 3 / 2 !important;
        height: auto !important;
    }

    /* Adjust gallery item hover overlay for touch visibility */
    .gallery-masonry .gallery-item .gallery-overlay-hover {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(7, 39, 56, 0.9) 0%, rgba(7, 39, 56, 0.2) 100%) !important;
    }

    /* 3. Services Section Carousel */
    .services-alternate-layout {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1.5rem !important;
        padding: 1rem 0.75rem 2rem 0.75rem !important;
        margin-left: -0.75rem !important;
        margin-right: -0.75rem !important;
        scrollbar-width: none !important;
    }
    .services-alternate-layout::-webkit-scrollbar {
        display: none !important;
    }
    .services-alternate-layout .service-row {
        flex: 0 0 88% !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 20px !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        width: auto !important;
        box-sizing: border-box !important;
    }
    .services-alternate-layout .service-image-col,
    .services-alternate-layout .service-content-col {
        width: 100% !important;
        flex: none !important;
    }
    .services-alternate-layout .service-img-wrapper {
        border-radius: 16px !important;
    }
    .services-alternate-layout .service-img {
        height: 200px !important;
    }
    .services-alternate-layout .service-number {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .fleet-info {
        padding: 1.5rem !important;
    }

    .fleet-ctas {
        gap: 0.75rem !important;
    }

    .fleet-ctas .btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    /* Mobile overrides for Category group headers */
    .category-group-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
        margin-top: 3.5rem !important;
    }

    .category-group-title {
        font-size: 1.4rem !important;
    }

    .category-group-badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.75rem !important;
    }

    .category-grid-centered .fleet-card {
        max-width: 100% !important;
    }
}