/*
Theme Name:  Paradise Valley Agadir
Theme URI:   https://paradisevalleyagadir.com
Author:      Paradise Valley Tours
Description: A mobile-first, SEO-optimized tourism theme for Paradise Valley near Agadir, Morocco. Keywords: Paradise Valley Maroc, Paradise Valley prix, Paradise Valley Agadir, Paradise Valley Agadir prix, Photos de Paradise Valley Agadir, Avis sur Paradise Valley Agadir, Paradise Valley Morocco, Paradise Valley Agadir 2026.
Version:     1.0.0
License:     GPL-2.0-or-later
Text Domain: paradise-valley
Tags:        tourism, travel, morocco, agadir, mobile-first, full-width-template, custom-colors, custom-menu, featured-images, theme-options
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --color-primary:    #1a6b3c;
    --color-primary-dk: #114a29;
    --color-accent:     #e8a020;
    --color-accent-dk:  #c47f0a;
    --color-dark:       #1a1a1a;
    --color-mid:        #555555;
    --color-light:      #f4f4f0;
    --color-white:      #ffffff;
    --color-overlay:    rgba(0, 0, 0, 0.48);
    --font-head:        'Playfair Display', Georgia, serif;
    --font-body:        'Inter', 'Segoe UI', system-ui, sans-serif;
    --radius:           8px;
    --radius-lg:        16px;
    --shadow:           0 2px 12px rgba(0,0,0,0.10);
    --shadow-lg:        0 8px 32px rgba(0,0,0,0.16);
    --transition:       0.25s ease;
    --container:        1200px;
    --gap:              1.5rem;
    /* Height of the hero stats bar — used to prevent CTA button overlap */
    --stats-bar-h:      90px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--color-primary-dk); text-decoration: underline; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

button, input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
}

button { cursor: pointer; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1rem;
}

.section-pad { padding-block: 3rem; }

.text-center { text-align: center; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    clip: rect(0,0,0,0); overflow: hidden; white-space: nowrap;
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-heading h2 { margin-bottom: 0.5rem; }
.section-heading p {
    color: var(--color-mid);
    font-size: 1.05rem;
    max-width: 560px;
    margin-inline: auto;
}
.section-heading .divider {
    display: block;
    width: 56px; height: 4px;
    background: var(--color-accent);
    border-radius: 4px;
    margin: 0.75rem auto 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
    touch-action: manipulation;
    min-height: 48px;
}
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--color-primary-dk);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.btn-accent {
    background: var(--color-accent);
    color: var(--color-dark);
}
.btn-accent:hover, .btn-accent:focus {
    background: var(--color-accent-dk);
    color: var(--color-dark);
    transform: translateY(-2px);
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}
.btn-outline:hover, .btn-outline:focus {
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; min-height: 56px; }

/* =============================================
   SKIP LINK (ACCESSIBILITY)
   ============================================= */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    z-index: 9999;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.875rem;
}
.site-branding { display: flex; align-items: center; gap: 0.75rem; }
.site-logo { width: 44px; height: 44px; object-fit: contain; }
.site-title-link {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
}
.site-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}
.site-tagline {
    font-size: 0.7rem;
    color: var(--color-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Mobile nav toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    padding: 8px;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.nav-toggle:hover { background: var(--color-light); }
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Primary nav */
.primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    border-top: 2px solid var(--color-primary);
}
.primary-nav.is-open { display: block; }
.primary-nav ul { display: flex; flex-direction: column; }
.primary-nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    color: var(--color-primary);
    background: var(--color-light);
    text-decoration: none;
}
.header-cta { display: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.28) 60%,
        transparent 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    /* Mobile: stats bar is hidden, standard padding is fine */
    padding-block: 3rem 4rem;
    max-width: 680px;
    width: 100%;
}
.hero-eyebrow {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.hero-title {
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* Extra breathing room so buttons never clip the stats bar */
    padding-bottom: 0.5rem;
}

/* Hero stats bar */
.hero-stats {
    display: none;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats-inner {
    display: flex;
    justify-content: space-around;
    padding-block: 1.25rem;
}
.hero-stat {
    text-align: center;
    color: var(--color-white);
}
.hero-stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}
.hero-stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.82; }

/* =============================================
   ACTIVITIES GRID
   ============================================= */
.activities-section { background: var(--color-light); }

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

.activity-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.activity-card-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-mid);
}
.activity-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.activity-card:hover .activity-card-thumb img { transform: scale(1.06); }
.activity-card-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.06em;
}
.activity-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.activity-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.65rem;
    font-size: 0.8rem;
    color: var(--color-mid);
}
.activity-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.activity-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.activity-card h3 a { color: var(--color-dark); }
.activity-card h3 a:hover { color: var(--color-primary); text-decoration: none; }
.activity-card p {
    font-size: 0.9rem;
    color: var(--color-mid);
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.activity-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--color-light);
    margin-top: auto;
}
.activity-price {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}
.activity-price small {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--color-mid);
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-top: 1px;
}

/* =============================================
   WHY PARADISE VALLEY SECTION
   ============================================= */
.features-section { background: var(--color-white); }
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--color-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.feature-text h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.feature-text p { font-size: 0.9rem; color: var(--color-mid); margin: 0; }

/* =============================================
   PHOTO GALLERY
   ============================================= */
.gallery-section { background: var(--color-dark); overflow: hidden; }
.gallery-section .section-heading h2,
.gallery-section .section-heading p { color: var(--color-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-mid);
    aspect-ratio: 1;
}
.gallery-item.wide  { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item.tall  { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
.gallery-item-overlay svg { opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--color-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--color-accent); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text {
    font-style: italic;
    color: var(--color-mid);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-light);
}
.testimonial-author-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author-meta { font-size: 0.78rem; color: var(--color-mid); }

/* =============================================
   SINGLE ACTIVITY PAGE
   ============================================= */
.activity-single { padding-block: 2.5rem; }
.activity-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 1.75rem;
    background: var(--color-mid);
}
.activity-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.activity-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.activity-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-light);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
}
.activity-meta-badge.highlight {
    background: var(--color-primary);
    color: var(--color-white);
}
.activity-description { color: var(--color-mid); line-height: 1.8; }

/* Booking form card */
.booking-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 2rem;
}
.booking-card-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
}
.booking-card-header h3 { color: var(--color-white); font-size: 1.2rem; margin: 0; }
.booking-card-body { padding: 1.5rem; }

/* =============================================
   BOOKING FORM
   ============================================= */
.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--color-dark);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26,107,60,0.12);
    outline: none;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.booking-form-notice {
    font-size: 0.78rem;
    color: var(--color-mid);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-top: 0.25rem;
}
#booking-response {
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    display: none;
}
#booking-response.success { background: #d4edda; color: #155724; display: block; }
#booking-response.error   { background: #f8d7da; color: #721c24; display: block; }

/* =============================================
   ARCHIVE PAGE
   ============================================= */
.archive-header {
    background: linear-gradient(135deg, var(--color-primary-dk) 0%, var(--color-primary) 100%);
    padding-block: 3rem;
    text-align: center;
    color: var(--color-white);
}
.archive-header h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.archive-header p { color: rgba(255,255,255,0.8); }

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.filter-btn {
    background: var(--color-light);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    min-height: 40px;
}
.filter-btn.active,
.filter-btn:hover { background: var(--color-primary); color: var(--color-white); }

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
    padding-block: 0.75rem;
    font-size: 0.82rem;
    color: var(--color-mid);
    border-bottom: 1px solid var(--color-light);
}
.breadcrumbs a { color: var(--color-mid); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs .sep { margin-inline: 0.35rem; opacity: 0.5; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.75);
    padding-block: 3rem 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-brand p { font-size: 0.9rem; margin-top: 0.75rem; }
.footer-brand .site-title { color: var(--color-white); font-size: 1.3rem; display: block; margin-bottom: 0.5rem; }
.footer-heading {
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-accent); text-decoration: none; }
.footer-contact p { font-size: 0.9rem; display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    transition: background var(--transition);
    font-size: 1rem;
}
.social-link:hover { background: var(--color-accent); color: var(--color-dark); text-decoration: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--color-accent); }

/* =============================================
   404 PAGE
   ============================================= */
.not-found-section { text-align: center; padding-block: 5rem; }
.not-found-section h1 { font-size: 6rem; color: var(--color-light); line-height: 1; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; height: 44px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    padding-inline: 0.75rem;
    background: var(--color-light);
    color: var(--color-dark);
    transition: background var(--transition), color var(--transition);
}
.pagination a:hover { background: var(--color-primary); color: var(--color-white); text-decoration: none; }
.pagination .current { background: var(--color-primary); color: var(--color-white); }

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner {
    display: inline-block;
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   STICKY MOBILE BOOKING BAR
   ============================================= */
.mobile-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    background: var(--color-white);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.14);
    padding: 0.75rem 1rem;
    border-top: 2px solid var(--color-primary);
}
.mobile-booking-bar .price-tag {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}
.mobile-booking-bar .price-tag small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--color-mid);
    font-weight: 400;
}
.mobile-booking-bar .btn { flex: 1; justify-content: center; }

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 1.25rem;
    z-index: 700;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); text-decoration: none; }
.whatsapp-float svg { fill: var(--color-white); width: 30px; height: 30px; }

/* =============================================
   MEDIA QUERIES — TABLET 640px+
   ============================================= */
@media (min-width: 640px) {
    .container { padding-inline: 1.5rem; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid   { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item { aspect-ratio: 1; }
    .gallery-item.wide { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .mobile-booking-bar { display: none; }
    .whatsapp-float { bottom: 1.5rem; }
}

/* =============================================
   MEDIA QUERIES — DESKTOP 1024px+
   ============================================= */
@media (min-width: 1024px) {
    .container { padding-inline: 2rem; }

    /* Header */
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex !important;
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        align-items: center;
    }
    .primary-nav ul { flex-direction: row; gap: 0.25rem; }
    .primary-nav a {
        padding: 0.5rem 0.85rem;
        border-radius: var(--radius);
        font-size: 0.9rem;
    }
    .header-cta { display: flex; }

    /* Hero — stats bar is now visible on desktop.
       padding-bottom on the flex container shifts the flex child (hero-content)
       upward by exactly the stats bar height, eliminating the button overlap. */
    .hero {
        min-height: 100vh;
        padding-bottom: var(--stats-bar-h);
    }
    .hero-content {
        /* Reduce bottom pad here since .hero padding already creates the gap */
        padding-bottom: 2.5rem;
    }
    .hero-stats { display: flex; }

    /* Layouts */
    .activities-grid  { grid-template-columns: repeat(3, 1fr); }
    .features-grid    { grid-template-columns: repeat(4, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

    /* Single activity two-col layout */
    .activity-single-inner {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 2.5rem;
        align-items: start;
    }
    .booking-card { position: sticky; top: 90px; margin-top: 0; }
    .mobile-booking-bar { display: none; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
    .site-header, .site-footer, .mobile-booking-bar,
    .whatsapp-float, .nav-toggle { display: none; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; }
}
