/* ═══════════════════════════════════════════════════════════════════
   Anaimalai Nature Safari — Premium Dark Cinematic Theme
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* ── Core Palette ── */
    --bg-primary: #0a0f0d;
    --bg-secondary: #0f1a15;
    --bg-card: rgba(15, 26, 21, 0.7);
    --bg-glass: rgba(15, 26, 21, 0.45);
    --bg-glass-light: rgba(255, 255, 255, 0.04);

    --green-deep: #1b4332;
    --green-mid: #2d6a4f;
    --green-bright: #40916c;
    --green-glow: #52b788;
    --green-light: #95d5b2;

    --gold: #c9a84c;
    --gold-light: #e0c97f;

    --text-primary: #f0f5f1;
    --text-secondary: #a8b5ad;
    --text-muted: #6b7c72;

    --white: #ffffff;
    --pure-black: #000000;

    /* ── Typography ── */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ── Spacing ── */
    --section-pad: 120px;
    --section-pad-mobile: 60px;

    /* ── Effects ── */
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glow-green: 0 0 30px rgba(82, 183, 136, 0.15);
    --glow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════
   RESETS & BASE
   ═══════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

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

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

ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

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

/* ═══════════════════════════════════════════════════════════════════
   SECTION TAGS & TITLES
   ═══════════════════════════════════════════════════════════════════ */

.sub-tag,
.section-tag,
.hero-tag {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.sub-tag::before,
.section-tag::before,
.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════════
   GLASSMORPHIC NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: all var(--transition-smooth);
    overflow: visible;
    box-sizing: border-box;
}

.main-header.scrolled {
    padding: 10px 0;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    gap: 12px;
    position: relative;
    box-sizing: border-box;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 0 1 auto;
}

.nav-logo {
    height: 52px;
    width: auto;
    border-radius: 50%;
}

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

.logo-title {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-subtitle {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    font-weight: 600;
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-book {
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    color: var(--white);
    padding: 10px 26px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(82, 183, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-green);
    border-color: rgba(82, 183, 136, 0.4);
}

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

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

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    z-index: 1002;
    background: rgba(15, 26, 21, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    color: var(--text-primary);
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition-fast);
    pointer-events: none;
    flex-shrink: 0;
}

.nav-toggle.open {
    background: rgba(15, 26, 21, 0.75);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION (HOME)
   ═══════════════════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.88) contrast(1.06) saturate(1.08);
    transform: scale(1.04);
    transition: transform 7s ease-out, filter 0.8s ease;
    image-rendering: -webkit-optimize-contrast;
}

.hero-slide.is-active img {
    transform: scale(1);
    filter: brightness(0.92) contrast(1.08) saturate(1.1);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 15, 13, 0.55) 0%,
        rgba(10, 15, 13, 0.25) 42%,
        rgba(10, 15, 13, 0.1) 68%,
        rgba(10, 15, 13, 0.32) 100%
    ),
    linear-gradient(
        180deg,
        rgba(10, 15, 13, 0.18) 0%,
        transparent 40%,
        rgba(10, 15, 13, 0.4) 85%,
        rgba(10, 15, 13, 0.85) 100%
    );
    z-index: 1;
}

.hero-slide .hero-overlay {
    z-index: 2;
}

/* Parallax layer for 3D depth */
.hero-parallax-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}

/* Particle Canvas */
.particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 120px;
}

.hero-content {
    max-width: 700px;
    color: var(--text-primary);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-content .sub-tag,
.hero-content .hero-tag {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-title span,
.hero-title .accent-green {
    color: #52b788;
    font-style: normal;
}

.hero-title .accent-soft {
    color: rgba(240, 245, 241, 0.72);
    font-style: normal;
}

.hero-title .accent-blue {
    color: #7eb8da;
    font-style: normal;
}

.hero-title .accent-lime {
    color: #b7e4c7;
    font-style: normal;
}

.hero-content.is-fading {
    opacity: 0;
    transform: translateY(10px);
}

.btn-hero-green {
    background: #1b4332;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-smooth);
}

.btn-hero-green:hover {
    background: #2d6a4f;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(27, 67, 50, 0.35);
}

/* Trust bar — floating glass pill */
.hero-trust-bar {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    width: min(980px, calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 8px 20px;
    padding: 18px 28px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 999px;
    box-shadow: var(--shadow-card);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
    padding: 4px 8px;
}

.hero-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45, 106, 79, 0.55);
    border: 1px solid rgba(148, 213, 178, 0.25);
    color: var(--green-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.hero-trust-text strong {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.hero-trust-text span {
    color: var(--green-light);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0.85;
}

/* Animated word reveal */
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.6s forwards;
}

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

.hero-desc {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--green-deep);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-transparent {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Hero slide dots */
.hero-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hero-dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════ */

.about-section {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
    position: relative;
}

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

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--gold);
    font-weight: 600;
}

/* Stats Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--glow-gold);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-deep);
    aspect-ratio: 3/4;
}

/* Decorative frame */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════════
   DESTINATIONS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.destinations-section {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
    position: relative;
}

/* Subtle gradient overlay */
.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    pointer-events: none;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.btn-outline-green {
    border: 1px solid rgba(82, 183, 136, 0.3);
    color: var(--green-glow);
    background: transparent;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-outline-green:hover {
    background: rgba(82, 183, 136, 0.1);
    border-color: var(--green-glow);
    transform: translateY(-2px);
    box-shadow: var(--glow-green);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* 3D Tilt Card */
.dest-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--glass-border);
    transition: all var(--transition-smooth);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.dest-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: var(--shadow-card);
    transform: translateY(-8px);
}

.dest-card:hover::after {
    opacity: 1;
}

.dest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.card-content p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════════
   GALLERY PREVIEW (HOME)
   ═══════════════════════════════════════════════════════════════════ */

.gallery-preview-section {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.gallery-preview-section h2 {
    margin-bottom: 50px;
}

.gallery-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.grid-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    cursor: pointer;
}

.grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.6), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.grid-item:hover::after {
    opacity: 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.item-1 { grid-column: span 2; grid-row: span 2; height: 380px; }
.item-2 { grid-column: span 2; grid-row: span 1; height: 180px; }
.item-3 { grid-column: span 1; grid-row: span 1; height: 180px; }
.item-4 { grid-column: span 1; grid-row: span 1; height: 180px; }
.item-5 { grid-column: span 2; grid-row: span 1; height: 240px; }
.item-6 { grid-column: span 2; grid-row: span 1; height: 240px; }

.btn-gallery {
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(82, 183, 136, 0.2);
}

.btn-gallery:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-green);
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 13, 0.8),
        rgba(27, 67, 50, 0.5)
    );
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--white);
    color: var(--green-deep);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-smooth);
    letter-spacing: 0.5px;
}

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

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.main-footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--text-primary);
    padding-left: 6px;
}

.footer-col ul li a:hover::before {
    width: 100%;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo {
    height: 48px;
    width: auto;
    border-radius: 50%;
}

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

.f-title {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.f-subtitle {
    color: var(--gold);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    width: 16px;
    margin-top: 3px;
    color: var(--green-glow);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.footer-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-contact-value,
.footer-contact-text a {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    word-break: break-word;
    transition: color var(--transition-fast);
}

.footer-contact-text a:hover {
    color: var(--gold);
}

.email-text {
    word-break: break-all;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 16px;
    transition: all var(--transition-smooth);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-credit {
    margin-top: 10px;
    font-size: 13px;
    color: #8a9a9f;
}

.footer-credit a {
    color: #95d5b2;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: #b7f0d0;
}

/* ═══════════════════════════════════════════════════════════════════
   DESTINATION PAGE — HERO & CARDS
   ═══════════════════════════════════════════════════════════════════ */

.dest-hero,
.safari-hero,
.gallery-hero,
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 13, 0.4) 0%,
        rgba(10, 15, 13, 0.2) 50%,
        rgba(10, 15, 13, 0.9) 100%
    );
}

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

.dest-hero-content h1,
.safari-hero-content h1,
.gallery-hero-content h1,
.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.dest-hero-content p,
.safari-hero-content p,
.gallery-hero-content p,
.contact-hero-text {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.7;
}

/* Destination wide cards */
.destinations-detail-section {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.dest-wide-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 350px;
    display: flex;
    align-items: center;
    transition: all var(--transition-smooth);
    border: var(--glass-border);
}

.dest-wide-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: var(--shadow-deep);
    transform: translateY(-4px);
}

.card-blur-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) blur(2px) saturate(0.7);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 13, 0.7), rgba(10, 15, 13, 0.4));
}

.dest-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 50px 60px;
    gap: 40px;
}

.dest-title-text {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.dest-inner-floating-card {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-smooth);
}

.dest-wide-card:hover .dest-inner-floating-card {
    transform: scale(1.05) rotate(1deg);
    border-color: rgba(201, 168, 76, 0.2);
}

.dest-inner-floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════════
   SAFARI PAGE
   ═══════════════════════════════════════════════════════════════════ */

.safari-hero-content {
    position: relative;
    z-index: 2;
}

.safari-journeys-section {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.section-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-area h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--text-primary);
    font-weight: 700;
}

.safari-packages-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.safari-flex-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: var(--glass-border);
    transition: all var(--transition-smooth);
}

.safari-flex-card:hover {
    border-color: rgba(82, 183, 136, 0.15);
    box-shadow: var(--shadow-deep);
    transform: translateY(-4px);
}

.safari-flex-card.card-reverse {
    direction: rtl;
}

.safari-flex-card.card-reverse > * {
    direction: ltr;
}

.safari-card-img {
    overflow: hidden;
    min-height: 350px;
}

.safari-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.safari-card-details {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-badge {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.safari-card-details h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.safari-desc-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.safari-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.feature-badge-box {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 12px;
    text-align: center;
}

.badge-label {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.badge-val {
    display: block;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
}

.btn-enquiry {
    background: linear-gradient(135deg, var(--gold), #b08d3e);
    color: var(--bg-primary);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    transition: all var(--transition-smooth);
    border: none;
    align-self: flex-start;
}

.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-pos-right { align-self: flex-end; }
.btn-pos-left { align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════════ */

.gallery-hero-content {
    position: relative;
    z-index: 2;
}

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

.gallery-display-section {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.gallery-master-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.gallery-side-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-photo-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--bg-card);
    border: var(--glass-border);
    transition: all var(--transition-smooth);
}

.gallery-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.5), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.gallery-photo-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.gallery-photo-card:hover::after {
    opacity: 1;
}

.gallery-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-tall { min-height: 300px; }
.card-medium { min-height: 220px; }
.card-short-wide { min-height: 220px; }
.card-square-split { min-height: 200px; }

.gallery-row-splitter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════════ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 15, 13, 0.92);
    backdrop-filter: blur(30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    transition: opacity 0.2s ease;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 16px;
}

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

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.contact-hero {
    position: relative;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 15, 13, 0.55), rgba(27, 67, 50, 0.45)),
        url('../assets/images/hero/slide-parambikulam.jpg') center / cover no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(82, 183, 136, 0.08), transparent 60%);
}

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

.contact-hero-content {
    max-width: 600px;
}

.contact-section {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Contact Details Card */
.details-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.details-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.details-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-glow);
    font-size: 16px;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
}

.details-list li:hover .details-icon {
    background: rgba(82, 183, 136, 0.2);
    transform: scale(1.1);
    box-shadow: var(--glow-green);
}

.details-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.details-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.details-text a.details-value {
    display: block;
}

a.details-value:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color-scheme: dark;
    background-color: rgba(255, 255, 255, 0.04);
    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='%2395d5b2' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.form-group select:invalid {
    color: var(--text-muted);
}

.form-group select:valid {
    color: var(--text-primary);
}

.form-group select option {
    background-color: #0f1a15;
    color: #f0f5f1;
    padding: 10px 14px;
}

.form-group select option:disabled {
    color: #8a9a90;
}

.form-group select option:checked,
.form-group select option:hover {
    background-color: #1b4332;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-glow);
    background-color: rgba(82, 183, 136, 0.04);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.08);
}

.form-group select:focus {
    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='%2352b788' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-size: 12px 8px;
    background-repeat: no-repeat;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-error-msg {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

.form-error-msg.show {
    display: block;
}

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

.form-submit-btn,
.btn.btn-primary {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    color: var(--white);
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    letter-spacing: 0.5px;
}

.form-submit-btn:hover,
.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-green);
    border-color: rgba(82, 183, 136, 0.4);
}

.form-success {
    background: rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--green-glow);
    font-size: 14px;
    margin-top: 16px;
    display: none;
    align-items: center;
    gap: 10px;
}

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

/* WhatsApp Bar */
.whatsapp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 30px 40px;
    margin-top: 50px;
    gap: 30px;
}

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

.whatsapp-bar-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #25d366;
    flex-shrink: 0;
}

.whatsapp-bar-text h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.whatsapp-bar-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-whatsapp,
.btn.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    border: none;
    display: inline-block;
}

.btn-whatsapp:hover,
.btn.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   SOLID WHITE NAV (Gallery override removed — using glass everywhere)
   ═══════════════════════════════════════════════════════════════════ */

.solid-white-nav {
    background: transparent;
}

.dark-txt { color: var(--text-primary); }
.dark-green-txt { color: var(--gold); }
.dark-nav-links a { color: var(--text-secondary); }
.dark-nav-links a.active { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .safari-flex-card {
        grid-template-columns: 1fr;
    }

    .safari-flex-card.card-reverse {
        direction: ltr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .dest-card-content {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

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

    .hero-trust-bar {
        width: min(920px, calc(100% - 32px));
        padding: 16px 18px;
        gap: 8px 12px;
    }

    .hero-trust-text strong {
        font-size: 13px;
        white-space: normal;
    }

    .hero-trust-text span {
        font-size: 12px;
        white-space: normal;
    }

    .hero-trust-icon {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    .container {
        width: 92%;
    }

    .nav-links,
    .nav-action {
        display: none !important;
    }

    .main-header {
        padding: 10px 0;
        width: 100%;
        left: 0;
        right: 0;
    }

    /* Full-width bar with safe padding so hamburger is never clipped */
    .nav-container,
    .nav-container.container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 0 16px;
        padding-right: max(16px, env(safe-area-inset-right));
        padding-left: max(16px, env(safe-area-inset-left));
        box-sizing: border-box;
        gap: 10px;
    }

    .logo-area {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .logo-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative;
        flex: 0 0 44px;
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        height: 44px;
        margin-left: auto;
        margin-right: 0;
        z-index: 1005;
    }

    .nav-logo {
        height: 42px;
    }

    .logo-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    /* ── Home hero ── */
    .hero-section {
        min-height: 100svh;
        height: auto;
        padding-top: 70px;
    }

    .hero-container {
        min-height: auto;
        padding: 40px 0 240px;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-white,
    .hero-buttons .btn-transparent,
    .hero-buttons .btn-hero-green {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-dots {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 210px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 8px;
    }

    .hero-trust-bar {
        width: calc(100% - 20px);
        bottom: 12px;
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 14px 16px;
        gap: 12px;
    }

    .hero-trust-item {
        justify-content: flex-start;
        gap: 12px;
        padding: 0;
    }

    .hero-trust-text strong,
    .hero-trust-text span {
        white-space: normal;
    }

    .hero-trust-text strong {
        font-size: 13px;
    }

    .hero-trust-text span {
        font-size: 12px;
    }

    .hero-trust-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* Mobile Nav Drawer */
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 15, 13, 0.95);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-left: var(--glass-border);
        padding: 80px 30px 30px;
        z-index: 1001;
        gap: 0;
        animation: slideIn 0.3s ease-out;
        overflow-y: auto;
    }

    .nav-links.open a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 15px;
        color: var(--text-primary);
    }

    .nav-action.open {
        display: flex !important;
        position: fixed;
        bottom: 30px;
        right: 30px;
        left: auto;
        z-index: 1003;
    }

    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .section-title {
        font-size: 28px;
    }

    /* About */
    .about-section {
        padding-top: 48px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .about-img {
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

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

    .stat-card {
        padding: 14px 8px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    .destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

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

    .item-1 { grid-column: span 2; height: 220px; }
    .item-2 { grid-column: span 2; height: 160px; }
    .item-3 { height: 160px; }
    .item-4 { height: 160px; }
    .item-5 { grid-column: span 2; height: 180px; }
    .item-6 { grid-column: span 2; height: 180px; }

    /* ── Contact page ── */
    .contact-hero,
    .dest-hero,
    .safari-hero,
    .gallery-hero {
        height: auto;
        min-height: 42vh;
        padding: 110px 0 48px;
    }

    .contact-hero-title {
        font-size: clamp(28px, 7vw, 40px);
    }

    .contact-hero-text {
        font-size: 14px;
        line-height: 1.6;
    }

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

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

    .details-card,
    .contact-form-card {
        padding: 24px 18px;
        border-radius: var(--radius-lg);
    }

    .details-card-title,
    .form-card-title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .details-list {
        gap: 18px;
    }

    .details-icon {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .details-value {
        font-size: 14px;
        word-break: break-word;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* prevents iOS zoom */
    }

    .whatsapp-bar {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
        gap: 18px;
        margin-top: 28px;
        border-radius: var(--radius-lg);
    }

    .whatsapp-bar-left {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-bar-text h4 {
        font-size: 16px;
    }

    .whatsapp-bar-text p {
        font-size: 13px;
    }

    .btn-whatsapp,
    .btn.btn-whatsapp {
        width: 100%;
        text-align: center;
    }

    .gallery-master-container {
        grid-template-columns: 1fr;
    }

    .gallery-row-splitter {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dest-wide-card {
        min-height: 280px;
    }

    .dest-inner-floating-card {
        width: 200px;
        height: 140px;
    }

    .safari-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }
}

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

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

    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6 {
        grid-column: span 1;
        height: 200px !important;
    }

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

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .hero-container {
        padding: 24px 0 230px;
    }

    .hero-dots {
        bottom: 200px;
    }

    .logo-subtitle {
        display: none;
    }

    .details-card,
    .contact-form-card {
        padding: 20px 14px;
    }

    .btn-white,
    .btn-transparent,
    .btn-hero-green {
        text-align: center;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

.section { position: relative; }

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--green-glow), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glowing divider */
.glow-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-glow));
    border-radius: 3px;
    margin: 16px auto 0;
}

/* Box wrappers to make contact page layout work */
.box1, .box2 {
    width: 100%;
}