/* Global Styles - Adventure theme inspired by 2ndgear.ae */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc0000;
    --primary-hover: #b80000;
    --accent-color: #8b0000;
    --primary-glow: rgba(220, 0, 0, 0.4);
    --text-dark: #0a0a0a;
    --text-muted: #555;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #000000;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 40px -15px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 50px -15px rgba(220, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 600;
}

/* Full-screen API loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: var(--text-light);
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 25px var(--primary-glow);
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

.loader-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.loader-brand span,
.loader-text {
    color: var(--primary-color);
}

.loader-text {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--text-light);
    outline-offset: 2px;
}

/* Adventure action font for headings */
.font-action {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Action style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(220, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom-color: var(--primary-color);
}

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

.logo h1 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section - Action */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default until cms-integration.js loads background from /api/hero */
    background-image: url('/images/hero-action-dusty.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-light);
    z-index: 3;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9), 0 0 60px var(--primary-glow);
    position: relative;
    z-index: 1;
    animation: heroTitleFade 1s ease-out;
}
@keyframes heroTitleFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
    letter-spacing: 1px;
    animation: heroTitleFade 1s ease-out 0.2s both;
}

.hero-content .cta-button {
    animation: heroTitleFade 1s ease-out 0.4s both;
}

.cta-button {
    font-family: 'Rajdhani', sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.cta-button:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--text-light);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 3;
}

.scroll-indicator:hover {
    border-color: var(--primary-hover);
    box-shadow: 0 0 20px var(--primary-glow);
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 0;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

/* Section Styles - Action */
section {
    padding: 4.5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    width: 100%;
}

.why-choose-section .section-title,
.testimonials-section .section-title {
    color: var(--primary-color);
}

.section-subtitle-bar {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Welcome Section */
.welcome-section {
    background: var(--bg-light);
}

.welcome-text {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

.welcome-highlight {
    max-width: 720px;
    margin: 2rem auto 0;
    font-size: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    background: #fff;
}

/* Homepage gallery carousel: center in front, two faded on sides */
.gallery-carousel-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    margin-top: 2rem;
}

.gallery-carousel-viewport {
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.gallery-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-carousel-slide {
    flex: 0 0 70%;
    width: 70%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.gallery-carousel-slide .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 3;
    border: 2px solid transparent;
    min-height: 0;
}

.gallery-carousel-slide .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-carousel-slide .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    transform: translateY(0);
}

.gallery-carousel-slide .gallery-overlay h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.gallery-carousel-slide.gallery-slide-center {
    flex: 0 0 70%;
    width: 70%;
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

.gallery-carousel-slide.gallery-slide-center .gallery-item {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-carousel-slide.gallery-slide-left,
.gallery-carousel-slide.gallery-slide-right {
    z-index: 1;
    opacity: 0.45;
    transform: scale(0.88);
}

.gallery-carousel-slide.gallery-slide-left .gallery-item,
.gallery-carousel-slide.gallery-slide-right .gallery-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.gallery-carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.gallery-carousel-prev {
    left: 0.5rem;
}

.gallery-carousel-next {
    right: 0.5rem;
}

.gallery-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.gallery-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.gallery-carousel-dot:hover {
    background: rgba(0, 0, 0, 0.35);
}

.gallery-carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-carousel-wrap {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    .gallery-carousel-viewport {
        max-width: 100%;
    }

    .gallery-carousel-slide,
    .gallery-carousel-slide.gallery-slide-center {
        flex: 0 0 85%;
        width: 85%;
        padding: 0 0.35rem;
    }

    .gallery-carousel-slide .gallery-overlay h3 {
        font-size: 0.9rem;
    }

    .gallery-carousel-slide.gallery-slide-left,
    .gallery-carousel-slide.gallery-slide-right {
        opacity: 0.3;
        transform: scale(0.82);
    }

    .gallery-carousel-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .gallery-carousel-prev {
        left: 0.25rem;
    }

    .gallery-carousel-next {
        right: 0.25rem;
    }

    .gallery-carousel-dots {
        margin-top: 1rem;
        gap: 0.4rem;
    }

    .gallery-carousel-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-carousel-wrap {
        padding: 0 0.75rem;
    }

    .gallery-carousel-slide,
    .gallery-carousel-slide.gallery-slide-center {
        flex: 0 0 90%;
        width: 90%;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    min-height: 0;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(220, 0, 0, 0.2) 50%, transparent);
    padding: 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 2px;
}

.service-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: var(--primary-hover);
}

.nav-logo-link {
    color: inherit;
    text-decoration: none;
}

.nav-logo-link:hover {
    color: var(--text-light);
}

/* Service description page */
/* Service detail body/CTA styles moved to end of file (service detail page block) */

/* Packages Section */
.packages-section {
    background: #fff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: var(--bg-light);
    border: 2px solid var(--border-subtle);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.package-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.package-badge {
    font-family: 'Rajdhani', sans-serif;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 0;
    z-index: 10;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.package-icon {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.package-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    letter-spacing: 3px;
}

.package-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.package-price {
    text-align: center;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: white;
    border-radius: 0;
    border: 2px solid var(--primary-color);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.amount-custom {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-per-person {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.package-features {
    margin: 1.5rem 0;
}

.package-features h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 2px;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    min-width: 16px;
}

.package-button {
    font-family: 'Rajdhani', sans-serif;
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
}

.package-button:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.package-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fef5f5;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.package-note i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.package-note p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.corporate .package-button {
    background: var(--bg-dark);
}

.corporate .package-button:hover {
    background: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--bg-dark);
    color: var(--text-light);
    border-top: 3px solid var(--primary-color);
}

.why-choose-section .section-title {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 30px var(--primary-glow);
}

.feature-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-light);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/buggies-lineup-dunes.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(139, 0, 0, 0.3) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 30px var(--primary-glow);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-content p {
    max-width: 720px;
    margin: 0 auto 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

.about-highlight {
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15);
}

.contact-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-hover);
}

.contact-email {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
}

.cta-section {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 0;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.cta-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 2.5rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    line-height: 2;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact a,
.footer-contact-link,
.footer-links a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-contact-link:hover,
.footer-links a:hover {
    color: rgba(255, 255, 255, 0.95) !important;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
    display: inline-block;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Sticky Book Now FAB and bottom form */
.book-now-fab {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.book-now-fab:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px var(--primary-glow);
}
.book-now-fab i {
    font-size: 1.2rem;
}

.book-now-panel {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s ease;
}
.book-now-panel.open {
    pointer-events: auto;
    visibility: visible;
}
.book-now-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.book-now-panel.open .book-now-panel-backdrop {
    opacity: 1;
}
.book-now-panel-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    background: var(--text-light);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.book-now-panel.open .book-now-panel-content {
    transform: translateY(0);
}
.book-now-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-light);
}
.book-now-panel-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin: 0;
}
.book-now-panel-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.book-now-panel-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
}
.book-now-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.book-now-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.book-now-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--text-light);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    transition: border-color 0.2s;
}
.book-now-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.book-now-field input::placeholder {
    color: var(--text-muted);
}
.book-now-message {
    font-size: 0.9rem;
    margin: 0;
    min-height: 1.4em;
}
.book-now-message.success { color: #0a7c42; }
.book-now-message.error { color: var(--primary-color); }
.book-now-submit {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.9rem 1.5rem;
    color: var(--text-light);
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.book-now-submit:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}
.book-now-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Inline Book Now section at bottom of page */
.book-now-section {
    padding: 3rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-subtle);
}
.book-now-section .section-title {
    color: var(--text-dark);
}
.book-now-section .section-intro {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.book-now-form-inline {
    max-width: 480px;
    margin: 0 auto;
}
.book-now-form-inline .book-now-field input {
    background: var(--text-light);
}

/* Scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .stats-background {
        background-attachment: scroll;
    }

    .stat-number {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 2rem;
    }

    .amount-custom {
        font-size: 1.35rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-item {
        padding: 1.25rem 1rem;
    }

    .packages-grid {
        gap: 1.5rem;
    }
}

/* Service detail page – carousel (light section, auto-slide) */
.service-carousel-section {
    padding: 3.5rem 0;
    background: #f8f9fa;
}

.service-carousel {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease-out;
}

.service-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
}

.service-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.service-carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.service-carousel-prev {
    left: 16px;
}

.service-carousel-next {
    right: 16px;
}

.service-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.service-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.service-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.service-carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--primary-color);
}

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

    .service-carousel-btn {
        width: 38px;
        height: 38px;
    }

    .service-carousel-prev {
        left: 10px;
    }

    .service-carousel-next {
        right: 10px;
    }

    .service-carousel-slide {
        aspect-ratio: 4 / 3;
    }
}

/* Service detail page – about section (light, readable) */
.service-detail-section {
    padding: 4rem 0;
    background: #fff;
}

.service-detail-section .container {
    max-width: 680px;
}

.service-detail-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #111827;
    margin-bottom: 0;
    text-align: center;
}

.service-detail-bar {
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.service-detail-content {
    margin-top: 2rem;
}

.service-detail-section .service-description-body {
    max-width: 42em;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #1f2937;
    font-weight: 400;
}

.service-detail-section .service-description-body p {
    margin-bottom: 1.125rem;
    text-align: left;
}

.service-detail-section .service-description-body p:last-child {
    margin-bottom: 0;
}

.service-detail-section .service-description-body p + p {
    margin-top: 1.125rem;
}

.service-detail-cta-wrap {
    text-align: center;
    margin-top: 2rem;
}

.service-detail-section .cta-button-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-detail-section .cta-button-service:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.3);
}

