/* ==========================================================================
   CARMELAGIRI ELEPHANT PARK - LUXE FOREST ADVENTURE DESIGN SYSTEM
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Manrope:wght@200..800&family=Montez&display=swap');

/* CSS Variables & Premium Tokens */
:root {
    /* Theme Colors (Luxe Forest & Adventure Accent) */
    --color-primary: #041C16;            /* Forest Shadow HSL(168, 70%, 6%) */
    --color-primary-light: #0B382D;      /* Forest Moss HSL(168, 67%, 13%) */
    --color-secondary: #70a442;          /* Luxurious Leaf Green */
    --color-accent: #DCA432;             /* Sun Teak Gold HSL(38, 70%, 53%) */
    --color-accent-dark: #b8821d;        /* Dark Teak Gold HSL(38, 72%, 42%) */
    --color-bg-light: #FCFAF7;           /* Cream Ivory HSL(35, 30%, 98%) */
    --color-bg-sage: #EDF3F0;            /* Sage Haze HSL(150, 10%, 94%) */
    --color-text-dark: #1A1E1D;          /* Off-Black HSL(170, 8%, 11%) */
    --color-text-muted: #535D5A;         /* Slate Forest HSL(165, 6%, 35%) */
    --color-white: #FFFFFF;
    
    /* Premium Typography Trio */
    --font-primary: 'Inter', sans-serif;
    --font-title: 'Manrope', sans-serif;
    --font-accent: 'Montez', cursive;
    
    /* Layout & Spacing */
    --container-max-width: 1240px;
    --transition-luxe: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.25s ease;
    
    /* Elevation Shadows */
    --shadow-sm: 0 4px 10px rgba(4, 28, 22, 0.03);
    --shadow-md: 0 16px 40px -10px rgba(4, 28, 22, 0.06);
    --shadow-lg: 0 30px 60px -15px rgba(4, 28, 22, 0.12);
    
    /* Custom Rounding Shapes (Highly Organic) */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

/* ==========================================================================
   1. GLOBAL RESET & BASE RULES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Green Cursor Follower disabled: Restored native browser pointer */
.cursor-follower, .cursor-dot, .slider-drag-cursor {
    display: none !important;
    pointer-events: none;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-light);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* ==========================================================================
   2. TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Script Cursive Accent above headers */
.subtitle-script {
    font-family: var(--font-accent);
    color: var(--color-secondary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: -5px;
    display: block;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section {
    padding: 120px 0;
    position: relative;
}

.section-sage {
    background-color: var(--color-bg-sage);
}

.section-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-primary h2, .section-primary h3, .section-primary p {
    color: var(--color-white);
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
}

.grid {
    display: grid;
    gap: 40px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

@media (min-width: 992px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

/* ==========================================================================
   4. BUTTONS & PREMIUM CTAS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-luxe);
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-secondary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-accent);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Floating WhatsApp Link */
.float-whatsapp {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

.float-whatsapp svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

/* Scroll Up Button */
.scroll-up {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 30px;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-up.show {
    opacity: 1;
    visibility: visible;
}

.scroll-up:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-5px);
}

.scroll-up svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Premium Combined Top Bar (Contact + Notice) */
.top-bar {
    background-color: var(--color-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    font-size: 0.82rem;
    font-weight: 500;
    z-index: 991;
    position: relative;
    font-family: var(--font-title);
    letter-spacing: 0.02em;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.top-bar strong {
    color: var(--color-accent);
}

.top-bar .booking-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(220, 164, 50, 0.08);
    border: 1px solid rgba(220, 164, 50, 0.2);
    color: var(--color-accent);
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(4, 28, 22, 0.1);
}

.top-bar .glowing-dot {
    width: 7px;
    height: 7px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--color-accent);
    animation: alertPulse 1.5s infinite alternate;
}

.top-bar a:hover {
    color: var(--color-accent);
}

.top-bar .social-icons {
    display: flex;
    gap: 15px;
}

.top-bar .social-icons svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    transition: var(--transition-fast);
}

@media (max-width: 991px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 5px 0;
    }
}

/* Sticky Premium Header */
header {
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 990;
    transition: var(--transition-luxe);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(4, 28, 22, 0.96);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(255,255,255,0.05);
}

header.scrolled .nav-links a {
    color: rgba(255,255,255,0.85);
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links li.active a {
    color: var(--color-accent);
}

header.scrolled .logo img {
    height: 52px;
}

header.scrolled .hamburger svg {
    color: var(--color-white);
}

/* Logo */
.logo img {
    height: 72px;
    width: auto;
    transition: var(--transition-luxe);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links li.active a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links li.active a {
    color: var(--color-accent);
}

/* Hamburger Toggle */
.hamburger {
    display: none;
    color: var(--color-white);
}

.hamburger svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: var(--color-primary);
    color: var(--color-white);
    z-index: 1000;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -15px 0 45px rgba(0,0,0,0.25);
    transition: var(--transition-luxe);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    align-self: flex-end;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.drawer-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.drawer-close svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.drawer-menu a {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.drawer-menu a:hover, .drawer-menu li.active a {
    color: var(--color-secondary);
    padding-left: 8px;
}

.drawer-footer {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(4, 28, 22, 0.7);
    backdrop-filter: blur(4px);
    z-index: 995;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

@media (max-width: 991px) {
    .nav-links, .nav-btn {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

/* ==========================================================================
   5.5 HERO CAROUSEL & BREADCRUMB HERO
   ========================================================================== */
.hero-carousel {
    height: clamp(450px, 80vh, 750px);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: -92px; /* Pull up behind the transparent sticky header */
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.68);
    transform: scale(1.03);
    transition: transform 8s ease-out;
}

.carousel-slide.active .carousel-image {
    transform: scale(1);
}

.carousel-caption {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    width: 90%;
    max-width: 700px;
    z-index: 10;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.carousel-caption .subtitle-script {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.carousel-caption h1 {
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 800;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.15;
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
}

.carousel-caption .btn {
    padding: 12px 28px;
    font-size: 0.85rem;
}

.carousel-caption > div {
    margin-top: 20px !important;
}

/* Carousel Nav Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 32px;
    background-color: var(--color-secondary);
}

/* Breadcrumb Sub-Hero */
.breadcrumb-hero {
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    margin-top: -92px; /* Pull up behind the transparent sticky header */
    padding: 130px 0 55px; /* Offset the sticky header height beautifully (reduced height) */
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.breadcrumb-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4, 28, 22, 0.2), rgba(4, 28, 22, 0.4));
}

.breadcrumb-hero .container {
    position: relative;
    z-index: 5;
}

.breadcrumb-hero h1 {
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.breadcrumb-hero p {
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   6. PREMIUM STATS / ENQUIRY BOX
   ========================================================================== */
/* Floating Booking Bar */
.booking-search-bar {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 30px 40px;
    position: relative;
    z-index: 20;
    margin-top: -60px;
    border: 1px solid rgba(4, 28, 22, 0.04);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: center;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid rgba(4, 28, 22, 0.08);
    padding-right: 20px;
}

.booking-field:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 767px) {
    .booking-field {
        border-right: none;
        border-bottom: 1px solid rgba(4, 28, 22, 0.08);
        padding-right: 0;
        padding-bottom: 15px;
    }
}

.booking-field label {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-input-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
}

.booking-input-wrapper select,
.booking-input-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
}

/* ==========================================================================
   7. STAGGERED ABOUT GRID (OFFSET IMAGE FRAMES)
   ========================================================================== */
.about-grid-staggered {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid-staggered {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.offset-image-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 10px;
}

.offset-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-white);
    transition: var(--transition-luxe);
}

.offset-img:hover {
    transform: scale(1.04);
    z-index: 5 !important;
}

.offset-img-main {
    grid-column: 1 / span 8;
    z-index: 2;
}

.offset-img-secondary {
    grid-column: 5 / -1;
    z-index: 3;
    margin-top: 40px;
}

.offset-img-main-reverse {
    grid-column: 5 / -1;
    z-index: 2;
}

.offset-img-secondary-reverse {
    grid-column: 1 / span 8;
    z-index: 3;
    margin-top: 40px;
}

/* Elegant Leafy SVGs */
.leaf-decor {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.1;
    pointer-events: none;
}

/* ==========================================================================
   8. TOUR PACKAGE ACTIVITIES (PREMIUM SHADOW CARDS)
   ========================================================================== */
.package-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-luxe);
    border: 1px solid rgba(4, 28, 22, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(138, 211, 37, 0.15);
}

.package-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-luxe);
}

.package-card:hover .package-img-wrap img {
    transform: scale(1.08);
}

.package-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.package-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(4, 28, 22, 0.85);
    color: var(--color-white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.package-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-body h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.package-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(4, 28, 22, 0.06);
    padding-top: 20px;
    margin-top: auto;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.package-price strong {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 800;
}

/* ==========================================================================
   9. PARALLAX VIDEO CAPTURES
   ========================================================================== */
.parallax-video-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 160px 0;
    text-align: center;
    color: var(--color-white);
    background-blend-mode: overlay;
    background-color: rgba(4, 28, 22, 0.7);
}

.parallax-video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(4, 28, 22, 0.8) 80%);
}

.parallax-video-section .container {
    z-index: 5;
}

.video-pulse-btn {
    width: 90px;
    height: 90px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 0 0 0 rgba(138, 211, 37, 0.5);
    animation: pulseGlow 2s infinite;
    transition: var(--transition-luxe);
}

.video-pulse-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    margin-left: 5px;
}

.video-pulse-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-white);
    color: var(--color-primary);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 211, 37, 0.7);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(138, 211, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(138, 211, 37, 0);
    }
}

/* ==========================================================================
   10. AMENITIES / SIDEBAR PAGE DETAILS
   ========================================================================== */
.sidebar-box {
    background-color: var(--color-bg-sage);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid rgba(4, 28, 22, 0.05);
}

.sidebar-list {
    list-style: none;
    margin-top: 30px;
}

.sidebar-list li {
    margin-bottom: 15px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-title);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-left-color: var(--color-secondary);
}

/* ==========================================================================
   11. LUXURY COUNTER-UPS & STATS
   ========================================================================== */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border-top: 3px solid var(--color-secondary);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-title);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   11.5 TESTIMONIAL CAROUSEL
   ========================================================================== */
.testimonial-container {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 50px;
    border: 1px solid rgba(4, 28, 22, 0.05);
    position: relative;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.test-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.test-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.test-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .testimonial-slide.active {
        grid-template-columns: 200px 1fr;
    }
}

.testimonial-avatar {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    justify-self: center;
}

.testimonial-comment {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    line-height: 1.8;
}

.testimonial-comment::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -25px;
    top: -30px;
    opacity: 0.15;
    color: var(--color-secondary);
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   12. LUXE WEB FORMS & MAPS
   ========================================================================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(4, 28, 22, 0.1);
    background-color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 5px rgba(138, 211, 37, 0.08);
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.map-wrapper {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

/* ==========================================================================
   13. PREMIUM FOOTER
   ========================================================================== */
footer {
    background-color: #02110D;
    color: rgba(252, 250, 247, 0.65);
    padding: 100px 0 40px;
    font-size: 0.95rem;
    border-top: 4px solid var(--color-secondary);
}

footer h3 {
    color: var(--color-white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.3rem;
}

footer h3::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--color-secondary);
}

.footer-logo {
    height: 72px;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(252,250,247,0.65);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 6px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.04);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-luxe);
}

.footer-social-icon:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-4px) rotate(10deg);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: var(--color-secondary);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES (Added to fix mobile layout issues)
   ========================================================================== */
@media (max-width: 768px) {
    /* Layout & Spacing */
    .section {
        padding: 60px 0;
    }
    
    /* Grids */
    .grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    /* Footer */
    footer .grid {
        text-align: center;
        gap: 30px;
    }
    
    .footer-socials {
        justify-content: center;
        margin-top: 15px;
    }
    
    /* Typography */
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.5rem !important; }
    .subtitle-script { font-size: 2rem !important; }
    
    /* Hero Section */
    .hero-carousel {
        height: 85vh;
        min-height: 500px;
    }
    
    .carousel-caption {
        width: 95%;
        top: 55%;
    }
    
    .carousel-caption h1 {
        font-size: 2.2rem !important;
        margin-bottom: 10px;
    }
    
    .carousel-caption p {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
    }
    
    /* Floating Booking Bar */
    .booking-search-bar {
        position: relative;
        bottom: auto;
        transform: none;
        margin: -30px 20px 40px;
        border-radius: var(--radius-md);
        padding: 20px;
        width: auto;
    }
    
    .booking-search-bar .grid-4 {
        gap: 15px;
    }
    
    /* Utility Classes */
    .text-center-mobile {
        text-align: center !important;
    }
    
    /* Cards and Elements */
    .activity-card, .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Form */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    .subtitle-script { font-size: 1.6rem !important; }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

