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

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    /* Brand Colors */
    --clr-brand-brown:      #8D4925;
    --clr-brand-brown-dark: #6B361B;
    --clr-accent-gold:      #F5A623;
    --clr-accent-amber:     #E8912A;
    --clr-accent-green:     #2E7D6B;
    --clr-accent-green-lt:  #D4EDE7;

    /* Backgrounds */
    --clr-bg-dark:    #1C1915;
    --clr-bg-dark-2:  #252118;
    --clr-bg-cream:   #FAF7F2;
    --clr-bg-card:    #FFFFFF;
    --clr-bg-muted:   #F5F0E8;

    /* Text */
    --clr-text-dark:    #1C1915;
    --clr-text-muted:   #6B6457;
    --clr-text-light:   #FAF7F2;
    --clr-text-dimmed:  rgba(250, 247, 242, 0.7);

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body:    'Inter', sans-serif;
    --font-serif:   'Playfair Display', serif;

    /* Sizing */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  36px;

    /* Shadows */
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.16);
    --shadow-gold:  0 12px 40px rgba(245,166,35,0.25);
    --shadow-brown: 0 12px 40px rgba(141,73,37,0.22);

    /* Transitions */
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --transition:   all 0.4s var(--ease);
    --transition-fast: all 0.2s ease;

    --z-header: 1000;
    --z-float:  900;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-cream);
    color: var(--clr-text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* =============================================
   UTILITIES
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-accent-gold) 0%, var(--clr-accent-amber) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: var(--clr-bg-card);
    color: var(--clr-brand-brown);
    border: 1.5px solid rgba(141,73,37,0.2);
}

.btn-secondary:hover {
    background-color: var(--clr-bg-muted);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--clr-brand-brown);
    color: var(--clr-brand-brown);
}

.btn-outline:hover {
    background: var(--clr-brand-brown);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-brown);
}

.btn-dark {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-light);
}

.btn-dark:hover {
    background-color: var(--clr-bg-dark-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* =============================================
   BADGE / PILL
   ============================================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(245,166,35,0.12);
    color: var(--clr-accent-amber);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(245,166,35,0.25);
}

.badge-green {
    background-color: rgba(46,125,107,0.10);
    color: var(--clr-accent-green);
    border-color: rgba(46,125,107,0.2);
}

.badge-dark {
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

/* =============================================
   NAVIGATION / HEADER
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 1.25rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(28, 25, 21, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

header.light-header {
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

header.light-header.scrolled {
    background: rgba(250, 247, 242, 0.96);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    flex-shrink: 0;
}

.logo .logo-dee  { color: var(--clr-accent-gold); }
.logo .logo-escape { color: #fff; }

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent-gold);
    opacity: 0.8;
    margin-top: 2px;
    display: block;
}

/* Light header logo overrides */
header.light-header .logo .logo-dee    { color: var(--clr-brand-brown); }
header.light-header .logo .logo-escape { color: var(--clr-accent-amber); }
header.light-header .logo-tagline      { color: var(--clr-brand-brown); opacity: 0.6; }
header.light-header .nav-links a       { color: var(--clr-text-muted); }
header.light-header .nav-links a:hover { color: var(--clr-brand-brown); }
header.light-header .nav-links a.active { color: var(--clr-brand-brown); }
header.light-header .nav-toggle        { color: var(--clr-brand-brown); }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent-gold);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

.nav-toggle {
    display: none;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: calc(var(--z-header) + 100); /* always above overlay */
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}

/* =============================================
   HERO — CINEMATIC FULL-WIDTH
   ============================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg-dark);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 12s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(28,25,21,0.75) 0%,
        rgba(28,25,21,0.45) 45%,
        rgba(28,25,21,0.70) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-col {
    max-width: 640px;
}

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

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--clr-accent-gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-dimmed);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.hero-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--clr-accent-gold);
    margin: 1.5rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--clr-accent-gold);
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero story col (right side) */
.hero-story-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-story-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    color: var(--clr-text-light);
}

.hero-story-card p {
    font-size: 0.92rem;
    color: var(--clr-text-dimmed);
    line-height: 1.7;
    margin: 0;
}

.hero-story-card p em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--clr-accent-gold);
}

/* Stats bar */
.stats-bar {
    background: var(--clr-bg-dark-2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0.5rem 1rem;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

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

/* =============================================
   SECTION SHARED
   ============================================= */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent-amber);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--clr-text-dark);
    font-weight: 800;
    line-height: 1.15;
}

.section-title .highlight {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--clr-brand-brown);
    font-weight: 400;
}

.section-subtitle {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: var(--clr-text-muted);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* =============================================
   TRIPS SECTION
   ============================================= */
.trips-section {
    background-color: var(--clr-bg-cream);
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* TRIP CARD — image-first premium */
.trip-card {
    background-color: var(--clr-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trip-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
}

.trip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.trip-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(28,25,21,0.55) 100%
    );
    pointer-events: none;
}

.trip-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.trip-card-badge .badge {
    background: rgba(28,25,21,0.75);
    backdrop-filter: blur(8px);
    color: var(--clr-accent-gold);
    border-color: rgba(245,166,35,0.3);
    font-size: 0.68rem;
}

.trip-card-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.trip-content {
    padding: 1.35rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trip-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.trip-meta {
    display: flex;
    gap: 1.2rem;
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.trip-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trip-meta i {
    color: var(--clr-accent-amber);
    font-size: 0.8rem;
}

.trip-action {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-action .btn {
    padding: 9px 20px;
    font-size: 0.82rem;
}

.trip-seats {
    font-size: 0.78rem;
    color: var(--clr-accent-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =============================================
   VALUES SECTION
   ============================================= */
.values-section {
    background-color: var(--clr-bg-dark);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.values-section .section-title { color: #fff; }
.values-section .section-subtitle { color: rgba(255,255,255,0.5); }
.values-section .section-eyebrow { color: var(--clr-accent-gold); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.25rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(245,166,35,0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    transition: var(--transition);
}

.value-card:hover::before {
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
    border: 1px solid rgba(245,166,35,0.2);
    color: var(--clr-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(245,166,35,0.3), rgba(245,166,35,0.1));
    box-shadow: 0 0 30px rgba(245,166,35,0.2);
}

.value-title {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    color: #fff;
    font-weight: 700;
}

.value-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background-color: var(--clr-bg-cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    background-color: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info {
    padding-right: 1rem;
}

.contact-info .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-info > p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 4px; 
    height: 100%;
    background: linear-gradient(to bottom, #25D366, #128C7E);
    transition: width 0.4s var(--ease);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.15);
    border-color: rgba(37,211,102,0.25);
}

.contact-method:hover::before {
    width: 6px;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: rgba(37,211,102,0.1);
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
    z-index: 1;
}

.contact-method:hover .contact-method-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    transform: rotate(10deg) scale(1.05);
}

.contact-method-info {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.contact-method-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    margin: 0 0 0.2rem 0;
    font-family: var(--font-heading);
}

.contact-method-info span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.contact-form-wrap {
    background: var(--clr-bg-muted);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.contact-form-wrap h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--clr-text-dark);
}

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

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    font-size: 0.82rem;
    letter-spacing: 0.2px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.93rem;
    background: var(--clr-bg-card);
    color: var(--clr-text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-brand-brown);
    box-shadow: 0 0 0 3px rgba(141,73,37,0.1);
}

.form-control::placeholder {
    color: rgba(107,100,87,0.5);
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background-color: var(--clr-bg-dark);
    color: rgba(255,255,255,0.55);
    padding: 3rem 0 1.75rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-accent-gold);
}

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-logo .logo-dee    { color: var(--clr-accent-gold); }
.footer-logo .logo-escape { color: #fff; }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.35); }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.float-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: var(--z-float);
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}

.float-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s ease;
}

.float-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(37,211,102,0.5);
    color: #fff;
}

.float-whatsapp i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.float-whatsapp .wa-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s var(--ease), opacity 0.3s ease;
    opacity: 0;
}

.float-whatsapp:hover .wa-label {
    max-width: 160px;
    opacity: 1;
}

/* Pulse ring around WhatsApp button */
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.7); opacity: 0; }
}

.float-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid #25D366;
    animation: wa-pulse 2.2s ease-out infinite;
}

/* =============================================
   SECTION — DARK TRIPS BAND (for Destinations page)
   ============================================= */
.destinations-section {
    padding: 6rem 0 4rem;
    background: var(--clr-bg-cream);
    min-height: 80vh;
}

.destinations-hero {
    background: var(--clr-bg-dark);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.destinations-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(245,166,35,0.1) 0%, transparent 65%);
}

.destinations-hero .section-title { color: #fff; }
.destinations-hero .section-subtitle { color: rgba(255,255,255,0.5); }

.search-filter-bar {
    max-width: 540px;
    margin: 2rem auto 0;
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 8px 8px 8px 22px;
    backdrop-filter: blur(12px);
}

.search-filter-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: #fff;
    min-width: 0;
}

.search-filter-bar input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-filter-bar button {
    background: var(--clr-accent-gold);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.search-filter-bar button:hover {
    background: var(--clr-accent-amber);
    transform: scale(1.03);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.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; }

/* =============================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================= */
@media (max-width: 992px) {
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-story-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-story-card {
        flex: 1;
        min-width: 240px;
    }

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

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

    .contact-info {
        padding-right: 0;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {

    section { padding: 3.5rem 0; }

    /* Hero mobile */
    .hero { min-height: 100svh; }

    .hero-content {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .hero-story-col { display: none; }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn { justify-content: center; text-align: center; }

    /* Nav mobile */
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(28,25,21,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s var(--ease);
        /* Must be above the header (which creates a stacking context
           via backdrop-filter when scrolled). Using a flat high value
           instead of calc() relative to --z-header avoids the trap. */
        z-index: 1090;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links nav {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: rgba(255,255,255,0.7);
    }

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

    /* Grids */
    .values-grid,
    .trips-grid {
        grid-template-columns: 1fr;
    }

    /* Stats bar */
    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 50%;
    }

    /* Contact */
    .contact-container {
        padding: 1.75rem;
    }

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

    /* Float button label always visible on mobile */
    .float-whatsapp .wa-label {
        max-width: 160px;
        opacity: 1;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Destinations search */
    .search-filter-bar {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 14px 16px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .stat-num { font-size: 1.4rem; }
    .trip-card-img-wrap { height: 200px; }
    .float-whatsapp { bottom: 20px; right: 16px; }
}