/* ============================================================
   AYOUR TOURS — Premium Tourism Website
   Complete Design System
   ============================================================ */

/* ----- CSS Custom Properties ----- */
:root {
    /* Colors */
    --primary: #0077be;
    --primary-dark: #005a8c;
    --primary-light: #4a9eff;
    --primary-deep: #003d5c;
    --accent: #c9a96e;
    --accent-light: #e8d5a3;
    --accent-gold: #d4a857;
    --sky: #7ec8e3;
    --sky-light: #b8dff0;
    --dark: #050a14;
    --dark-alt: #0a1628;
    --dark-2: #0d1f35;
    --dark-3: #122a45;
    --light: #f8fafc;
    --light-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(0, 119, 190, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-base: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-width: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ----- Selection ----- */
::selection {
    background: var(--primary);
    color: var(--white);
}

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

/* ----- Custom Scrollbar ----- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--sky), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 80px);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 16px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--primary-light);
    vertical-align: middle;
    margin: 0 12px;
    opacity: 0.5;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--light-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   PRELOADER
   ============================================================ */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,119,190,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(126,200,227,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.04) 0%, transparent 40%);
    animation: loaderBgBreath 4s ease-in-out infinite;
}

@keyframes loaderBgBreath {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.loader-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.loader-logo-mark {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    animation: loaderMarkPulse 2s ease-in-out infinite, loaderMarkFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(74,158,255,0.2));
}

@keyframes loaderMarkPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes loaderMarkFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.loader-brand {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: loaderBrandReveal 1.2s ease forwards;
    overflow: hidden;
}

@keyframes loaderBrandReveal {
    0% { opacity: 0; transform: translateY(12px); letter-spacing: 20px; filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); letter-spacing: 6px; filter: blur(0); }
}

.loader-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--light-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 40px;
    animation: loaderTaglineFade 1.2s 0.3s ease forwards;
    opacity: 0;
}

@keyframes loaderTaglineFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 0.6; transform: translateY(0); }
}

.loader-progress-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 240px;
}

.loader-progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--sky), var(--accent));
    border-radius: 2px;
    transition: width 0.15s ease;
    box-shadow: 0 0 12px rgba(74, 158, 255, 0.4);
    position: relative;
}

.loader-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky);
    box-shadow: 0 0 16px rgba(126, 200, 227, 0.8);
}

.loader-progress-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--light-muted);
    min-width: 36px;
    text-align: right;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.loader-status {
    display: flex;
    gap: 6px;
    margin-top: 28px;
}

.loader-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: loaderDotBounce 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loaderDotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    display: none;
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    #cursor-dot, #cursor-ring { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--sky));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 119, 190, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid var(--border-strong);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 119, 190, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

#navbar.scrolled {
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--light-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn-primary {
    display: inline-flex;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-base);
    letter-spacing: 0.5px;
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.3);
}

/* ----- Hamburger ----- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 119, 190, 0.15), rgba(0, 61, 92, 0.3)),
        url('https://images.unsplash.com/photo-1542332213-9b5a5a3fad35?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(5, 10, 20, 0.2) 0%, rgba(5, 10, 20, 0.7) 60%),
        radial-gradient(ellipse at 70% 20%, rgba(0, 119, 190, 0.15) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(5, 10, 20, 0.3) 0%, rgba(5, 10, 20, 0.8) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-waves svg {
    display: block;
    width: 100%;
    height: clamp(60px, 10vw, 150px);
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 1s 0.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--light-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s 0.4s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1s 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--light-muted);
}

.trust-item i {
    color: var(--primary-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s 1s ease forwards, float 3s ease-in-out infinite 2s;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-muted);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-strong);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

/* ============================================================
   ACTIVITIES / SERVICES
   ============================================================ */

.activities-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.activity-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

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

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

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: grayscale(0.3);
}

.activity-card:hover .card-img img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.card-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    background: rgba(0, 119, 190, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition-base);
}

.activity-card:hover .card-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.card-body {
    padding: 24px;
}

.card-price {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 119, 190, 0.15);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.card-body p {
    font-size: 0.9rem;
    color: var(--light-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-cta i {
    transition: transform 0.3s ease;
}

.card-cta:hover {
    color: var(--sky);
}

.card-cta:hover i {
    transform: translateX(4px);
}

/* ----- Category Filters ----- */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--glass);
    color: var(--light-muted);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(0, 119, 190, 0.1);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: var(--white);
}

.activity-card {
    transition: var(--transition-base), opacity 0.4s ease, transform 0.4s ease;
}

.activity-card.hidden {
    display: none;
}

/* ----- Activity Category Badge ----- */
.card-category {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sky-light);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    background: var(--dark-alt);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 200px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--dark-alt);
    box-shadow: var(--shadow-lg);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--light-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.stat-item:hover {
    background: var(--glass-hover);
    border-color: var(--primary);
}

.stat-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--light-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--light-muted);
}

.about-feature i {
    color: var(--primary-light);
    font-size: 1rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
    background: linear-gradient(180deg, var(--dark-alt) 0%, var(--dark) 100%);
}

.gallery-grid {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: saturate(0.85);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

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

/* ----- Lightbox ----- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

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

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-fast);
    line-height: 1;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--light-muted);
    letter-spacing: 2px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-section {
    background: var(--dark);
    position: relative;
}

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

.why-card {
    padding: 40px 32px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--sky));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.15), rgba(0, 119, 190, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    transition: var(--transition-base);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--light-muted);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--light-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--glass-hover);
    border-color: var(--primary);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */

.booking-section {
    background: linear-gradient(180deg, var(--dark-alt) 0%, var(--dark-2) 100%);
    position: relative;
}

.booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: clamp(30px, 5vw, 60px);
    box-shadow: var(--shadow-lg);
}

.booking-info .section-title {
    margin-bottom: 24px;
}

.booking-benefits {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--light-muted);
}

.benefit-item i {
    color: var(--primary-light);
    font-size: 1rem;
}

.booking-contact {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.booking-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--light-muted);
    margin-bottom: 8px;
}

.booking-contact i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

/* ----- Form ----- */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 119, 190, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    min-height: 0;
    opacity: 0;
    transition: var(--transition-fast);
}

.form-error.visible {
    opacity: 1;
    min-height: 16px;
}

.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--light-muted);
}

.form-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: var(--radius-sm);
    color: #4ade80;
    font-size: 0.9rem;
    animation: fadeInUp 0.5s ease;
}

.form-success.show {
    display: flex;
}

.form-success i {
    font-size: 1.5rem;
}

/* ----- Select state for dark theme ----- */
.form-group select,
.form-group input,
.form-group textarea {
    color-scheme: dark;
}

/* ----- Date input styling ----- */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-card {
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 119, 190, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.8rem;
    color: var(--light-muted);
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--sky);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    filter: grayscale(1) invert(0.9) hue-rotate(180deg);
}

/* ============================================================
   BOOKING SUMMARY
   ============================================================ */

.booking-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.booking-summary {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 120px;
}

.booking-summary.hidden {
    display: none;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.summary-row .label {
    color: var(--light-muted);
}

.summary-row .value {
    font-weight: 500;
    color: var(--white);
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-light);
}

.summary-placeholder {
    color: var(--light-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 30px 0;
    opacity: 0.6;
}

/* ----- Pickup Time Select ----- */
.pickup-time-group {
    display: none;
}

.pickup-time-group.visible {
    display: flex;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.time-slot {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--glass);
    color: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.time-slot:hover {
    border-color: var(--primary);
    background: rgba(0, 119, 190, 0.1);
}

.time-slot.selected {
    border-color: var(--primary);
    background: rgba(0, 119, 190, 0.2);
    color: var(--primary-light);
}

/* ============================================================
   BOOKING SUCCESS MODAL
   ============================================================ */

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

.booking-modal-content {
    background: var(--dark-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-2xl);
    padding: 50px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-spring);
}

.booking-modal.active .booking-modal-content {
    transform: scale(1) translateY(0);
}

.modal-check {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: modalPop 0.6s ease;
}

@keyframes modalPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal-text {
    color: var(--light-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-detail {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.modal-detail span {
    display: block;
    margin: 4px 0;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.3);
}

.modal-close {
    margin-top: 20px;
    background: none;
    border: none;
    color: var(--light-muted);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

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

/* ============================================================
   EXPERIENCE PAGE STYLES
   ============================================================ */

.exp-hero {
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding: 0 var(--container-padding) 60px;
}

.exp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.exp-hero.loaded .exp-hero-bg {
    transform: scale(1);
}

.exp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,10,20,0.9) 0%, transparent 50%);
}

.exp-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
}

.exp-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.8rem;
    color: var(--light-muted);
    margin-bottom: 16px;
}

.exp-breadcrumb a {
    color: var(--light-muted);
    transition: var(--transition-fast);
}

.exp-breadcrumb a:hover {
    color: var(--primary-light);
}

.exp-breadcrumb span {
    color: var(--white);
}

.exp-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.1;
}

.exp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--light-muted);
}

.exp-hero-meta i {
    color: var(--primary-light);
    margin-right: 6px;
}

.exp-section {
    padding: 80px 0;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.exp-section-header {
    margin-bottom: 40px;
}

.exp-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.exp-section-header p {
    color: var(--light-muted);
}

/* ----- Included / Excluded ----- */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inc-list, .exc-list {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.inc-list {
    background: rgba(0, 200, 83, 0.03);
    border-color: rgba(0, 200, 83, 0.15);
}

.exc-list {
    background: rgba(239, 68, 68, 0.03);
    border-color: rgba(239, 68, 68, 0.15);
}

.inc-list h3, .exc-list h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.inc-list h3 i { color: #4ade80; margin-right: 8px; }
.exc-list h3 i { color: #ef4444; margin-right: 8px; }

.inc-list ul, .exc-list ul {
    list-style: none;
}

.inc-list li, .exc-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-muted);
}

.inc-list li i { color: #4ade80; font-size: 0.8rem; }
.exc-list li i { color: #ef4444; font-size: 0.8rem; }

/* ----- Program Timeline ----- */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -29px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.timeline-activity {
    font-size: 0.95rem;
    color: var(--light);
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-top: 4px;
}

/* ----- Pricing Table ----- */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.pricing-card {
    padding: 28px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(0, 119, 190, 0.08);
}

.pricing-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-muted);
    margin-bottom: 8px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-muted);
}

.pricing-label {
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-top: 8px;
}

/* ----- FAQ Accordion ----- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--glass);
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--glass-hover);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-light);
    font-size: 0.8rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    color: var(--light-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* ----- Related Activities ----- */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.related-card-body {
    padding: 20px;
}

.related-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.related-card-body p {
    font-size: 0.85rem;
    color: var(--light-muted);
}

.related-card-body .price {
    margin-top: 10px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #02060c;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
}

.footer-brand p {
    color: var(--light-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-muted);
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: var(--light-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--light-muted);
}

.footer-bottom i {
    color: #ef4444;
    font-size: 0.8rem;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--light-muted);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    z-index: 500;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: var(--transition-base);
    animation: pulse 2s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 600;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.sticky-call {
    color: var(--white);
    background: var(--dark-3);
}

.sticky-call:hover {
    background: var(--dark-2);
}

.sticky-wa {
    color: var(--white);
    background: #128c7e;
}

.sticky-wa:hover {
    background: #25d366;
}

.sticky-book {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.sticky-book:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }

    .wa-float {
        bottom: 80px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   LOADING SKELETON
   ============================================================ */

.skeleton {
    background: linear-gradient(90deg, var(--glass) 25%, var(--glass-hover) 50%, var(--glass) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   RESPONSIVE - TABLET & BELOW
   ============================================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        order: -1;
    }

    .about-img-main img {
        height: 400px;
    }

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

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

    .booking-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    /* Nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border-left: 1px solid var(--border);
    }

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

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-btn-primary {
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-trust {
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Gallery */
    .gallery-grid {
        columns: 2;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-cards {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-accent {
        width: 140px;
        height: 180px;
        bottom: -20px;
        right: -10px;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 16px 8px;
    }

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

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    #navbar,
    .wa-float,
    .sticky-mobile-cta,
    #preloader,
    #cursor-dot,
    #cursor-ring {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================================
   END OF DESIGN SYSTEM
   ============================================================ */
