/* ========================================
   PANAMÁ DISCOVERY TOURS - Styles
   ======================================== */

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

:root {
    /* DJE Services — Black + Gold premium palette */
    --primary: #1A1A1A;          /* deep black — main brand */
    --primary-dark: #000000;     /* pure black */
    --primary-light: #2D2D2D;    /* lighter black for hover */
    --secondary: #1A1A1A;        /* same as primary — full dark theme */
    --accent: #F5B800;           /* gold — DJE signature color */
    --accent-light: #FFD54F;     /* light gold for hover */
    --accent-dark: #C8951C;      /* dark gold for shadows */
    --text: #1A1A1A;
    --text-light: #6B6B6B;
    --text-dark: #0A0A0A;
    --text-white: #FFFFFF;
    --bg: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-dark: #0A0A0A;
    --border: #E5E5E5;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(245, 184, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-book {
    background: var(--accent);
    color: var(--text-white);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-book:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: linear-gradient(90deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    background-size: 200% 100%;
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    animation: topBarShift 12s ease-in-out infinite;
    border-bottom: 1px solid var(--accent-dark);
}

.top-bar-left span i {
    color: var(--accent);
}

.top-bar-right a:hover {
    color: var(--accent) !important;
    opacity: 1 !important;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.2), transparent);
    animation: topBarShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes topBarShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes topBarShine {
    0% { left: -100%; }
    60%, 100% { left: 200%; }
}

.top-bar-left span i,
.top-bar-left span {
    transition: transform 0.3s ease;
}

.top-bar-left span:hover i {
    transform: scale(1.2);
}

/* Hide lang-switcher inside top-bar (kept in header instead) */
.top-bar .lang-switcher {
    display: none;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: var(--text-white);
    opacity: 0.7;
}

.top-bar-right a:hover {
    opacity: 1;
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    gap: 6px;
    margin-right: 10px;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    padding: 2px;
    opacity: 0.5;
    transition: var(--transition);
    display: flex;
    align-items: center;
    line-height: 0;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-btn.active {
    opacity: 1;
    border-color: rgba(255,255,255,0.6);
}

.lang-btn svg {
    display: block;
    border-radius: 2px;
}

/* --- Payment Toggle --- */
.payment-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pay-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', sans-serif;
}

.pay-option:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.pay-option.active {
    border-color: var(--primary-light);
    background: rgba(245, 184, 0, 0.15);
    color: var(--text-white);
}

.pay-option i {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transition: var(--transition);
}

.pay-option.active i {
    background: var(--primary);
    color: white;
}

.pay-option strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.pay-option span {
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.3;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 12px 0;
    transition: var(--transition);
}

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

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

/* DJE Logo image (real brand logo) */
.logo-img {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 64px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(245, 184, 0, 0.4));
}

/* Footer logo bigger */
.footer-logo .logo-image {
    height: 100px;
    margin-bottom: 16px;
}

/* Compact responsive header logo */
@media (max-width: 768px) {
    .logo-image {
        height: 48px;
    }
    .footer-logo .logo-image {
        height: 80px;
    }
}

/* Hexagonal CSS fallback (legacy, if image fails to load) */
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    color: var(--accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border: 1.5px solid var(--accent);
    position: relative;
}

.logo-icon i.fa-compass { display: none; }
.logo-icon::before {
    content: 'DJE';
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-dark);
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(245, 184, 0, 0.08);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-lang {
    display: flex;
}

.header-lang .lang-btn {
    opacity: 0.4;
    border-color: transparent;
    padding: 3px;
}

.header-lang .lang-btn:hover {
    opacity: 0.7;
}

.header-lang .lang-btn.active {
    opacity: 1;
    border-color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 22vh;
    color: var(--text-white);
    background: url('https://images.pexels.com/photos/164634/pexels-photo-164634.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    background-color: #0A0A0A;
}

/* Dark overlay with gold tint at bottom for premium feel */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%),
        radial-gradient(ellipse at bottom, rgba(245, 184, 0, 0.15) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 300;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--text-white);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========================================
   STATS
   ======================================== */
.stats {
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(245, 184, 0, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255, 213, 79, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    padding: 100px 0 110px;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Subtle dotted pattern overlay */
.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

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

/* --- Stats intro --- */

.stats-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.stats-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #F5B800;
    padding: 6px 16px;
    background: rgba(245, 184, 0, 0.12);
    border: 1px solid rgba(245, 184, 0, 0.25);
    border-radius: 999px;
    margin-bottom: 18px;
}

.stats-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 36px 24px 32px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, var(--stat-glow, rgba(245, 184, 0, 0.25)) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

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

/* Color accent per stat */
/* Legacy colors (backward compat) */
.stat-item[data-color="green"]  { --stat-accent: #4caf50; --stat-glow: rgba(255, 213, 79, 0.35); }
.stat-item[data-color="yellow"] { --stat-accent: #f5c518; --stat-glow: rgba(245, 197, 24, 0.35); }
.stat-item[data-color="blue"]   { --stat-accent: #4fc3f7; --stat-glow: rgba(79, 195, 247, 0.35); }
.stat-item[data-color="red"]    { --stat-accent: #ef5350; --stat-glow: rgba(239, 83, 80, 0.35); }

/* DJE brand palette — gold/bronze tonal range */
.stat-item[data-color="gold"]      { --stat-accent: #F5B800; --stat-glow: rgba(245, 184, 0, 0.40); }
.stat-item[data-color="orange"]    { --stat-accent: #FF9F1C; --stat-glow: rgba(255, 159, 28, 0.40); }
.stat-item[data-color="bronze"]    { --stat-accent: #C8951C; --stat-glow: rgba(200, 149, 28, 0.40); }
.stat-item[data-color="lightgold"] { --stat-accent: #FFD54F; --stat-glow: rgba(255, 213, 79, 0.40); }

/* Icon wrapper with glow */
.stat-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
}

.stat-icon-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--stat-glow) 0%, transparent 70%);
    opacity: 0.6;
    filter: blur(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .stat-icon-glow {
    opacity: 1;
    transform: scale(1.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--stat-accent) 0%, color-mix(in srgb, var(--stat-accent) 70%, #000000) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.4rem;
    color: #ffffff;
}

.stat-item:hover .stat-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* Stat body (number + label) */
.stat-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--stat-accent);
    line-height: 1;
    opacity: 0.9;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.stat-underline {
    width: 32px;
    height: 3px;
    background: var(--stat-accent);
    border-radius: 2px;
    margin-top: 4px;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-underline {
    width: 64px;
}

/* ========================================
   PHOTO CAROUSEL
   ======================================== */
.photo-carousel-section {
    padding: 80px 0 0;
    background: linear-gradient(180deg, #f8faf8 0%, #eef5ee 100%);
}

.photo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
}

.photo-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.carousel-slide.active img {
    transform: scale(1.08);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    color: white;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.carousel-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* ========================================
   PHOTO DIVIDERS
   ======================================== */
.photo-divider {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.photo-divider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 70, 40, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: white;
}

.divider-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.divider-overlay p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

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

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    border: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    width: 48px;
    height: 48px;
    background: rgba(245, 184, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--secondary);
}

.feature p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ========================================
   TOURS
   ======================================== */
.tours {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.tour-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge.hot {
    background: var(--accent);
}

.tour-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.6);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    backdrop-filter: blur(4px);
}

.tour-info {
    padding: 22px;
}

.tour-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.tour-info h3 a {
    color: inherit;
    text-decoration: none;
}

.tour-info h3 a:hover {
    color: var(--primary);
}

a.tour-image {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-info > p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}

.tour-details {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.tour-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.tour-details i {
    color: var(--primary);
    font-size: 0.85rem;
}

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

.tour-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 4px;
    row-gap: 0;
    line-height: 1.1;
    min-width: 0;
}

.price-label {
    flex-basis: 100%;
    width: 100%;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 2px;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    white-space: nowrap;
    line-height: 1;
}

.price-person {
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* ========================================
   BOOKING
   ======================================== */
.booking {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
    color: var(--text-white);
}

.booking .section-label {
    color: var(--accent-light);
}

.booking .section-title {
    color: var(--text-white);
}

.booking .section-desc {
    color: rgba(255,255,255,0.7);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.12);
}

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

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

/* --- Calendar --- */
.calendar-compact {
    max-width: 320px;
}

.calendar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 12px 14px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cal-month {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.cal-nav {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cal-nav:hover {
    background: var(--primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}

.calendar-weekdays span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.78rem;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--primary);
}

.cal-day.selected {
    background: var(--accent);
    font-weight: 700;
}

.cal-day.today {
    border: 2px solid var(--primary-light);
}

.cal-day.disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* --- Price Summary --- */
.price-summary {
    background: rgba(245, 184, 0, 0.15);
    border: 1px solid rgba(245, 184, 0, 0.3);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 18px;
}

.price-summary h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.summary-row.total {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 12px;
    margin-top: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.summary-row.deposit {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1.05rem;
}

.summary-row.remaining {
    font-size: 0.85rem;
    opacity: 0.7;
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin-bottom: 14px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
}

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

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
}

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

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(245, 184, 0, 0.08);
    transform: translateX(4px);
}

.contact-method i {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
}

.contact-method span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand .logo-name {
    color: var(--text-white);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    padding: 5px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .photo-carousel-section {
        padding: 60px 0 0;
    }

    .carousel-slide {
        aspect-ratio: 4 / 3;
    }

    .carousel-caption {
        padding: 30px 20px 25px;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

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

    .carousel-dots {
        bottom: 12px;
        gap: 6px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .photo-divider {
        height: 250px;
    }

    .divider-overlay h3 {
        font-size: 1.6rem;
    }

    .divider-overlay p {
        font-size: 0.9rem;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    .top-bar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }

    .nav.open {
        display: flex;
    }

    .hero {
        padding-top: 18vh;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats {
        padding: 70px 0 80px;
    }

    .stats-heading {
        font-size: 1.9rem;
    }

    .stats-intro {
        margin-bottom: 40px;
    }

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

    .stat-item {
        padding: 24px 18px 20px;
        gap: 18px;
    }

    .stat-icon-wrap,
    .stat-icon {
        width: 44px;
        height: 44px;
    }

    .stat-icon {
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }

    .stat-plus {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

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

    .about-img-wrapper img {
        height: 300px;
    }

    .about-img-wrapper::after {
        display: none;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

    .booking-form {
        padding: 20px;
    }

    .payment-toggle {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

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

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

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

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

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

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}


/* ========================================
   TRANSFERS SECTION — Uber-style booking
   ======================================== */

.transfers {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.transfers::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.transfer-booking {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Search stack (Uber-style two-input block) --- */

.search-stack {
    background: #fafafa;
    border-radius: 16px;
    padding: 8px 12px;
    position: relative;
}

.search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    position: relative;
}

.search-row + .route-connector {
    margin-left: 18px;
    height: 18px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, #d4af37 100%);
    opacity: 0.3;
}

.search-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-left: 6px;
}

.search-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.3;
}

.pickup-dot {
    background: var(--primary);
    color: var(--primary);
}

.destination-dot {
    background: #d4af37;
    color: #d4af37;
    border-radius: 3px;
}

.destination-dot::after {
    border-radius: 5px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 32px 8px 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    outline: none;
}

.search-input::placeholder {
    color: #9ca9a0;
}

.search-input:focus + .search-clear,
.search-input:not(:placeholder-shown) + .search-clear {
    opacity: 0.5;
    pointer-events: auto;
}

.search-clear {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #7a8a80;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, background 0.2s;
    font-size: 0.85rem;
}

.search-clear:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.05);
}

/* Autocomplete dropdown */
.autocomplete-results {
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    right: -44px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
}

.autocomplete-results[hidden] {
    display: none;
}

.autocomplete-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f4f0;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #fffbeb;
}

.autocomplete-icon {
    color: #7a8a80;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.autocomplete-item.curated .autocomplete-icon {
    color: #d4af37;
}

.autocomplete-item.curated {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.04) 0%, transparent 100%);
}

.autocomplete-item.curated:hover,
.autocomplete-item.curated.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, #fffbeb 100%);
}

.autocomplete-text {
    flex: 1;
    min-width: 0;
}

.autocomplete-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.autocomplete-detail {
    font-size: 0.82rem;
    color: #7a8a80;
    margin-top: 2px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.autocomplete-empty {
    padding: 16px;
    text-align: center;
    color: #9ca9a0;
    font-size: 0.9rem;
    font-style: italic;
}

/* Geolocate button */
.btn-geolocate {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-geolocate:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 184, 0, 0.3);
}

.btn-geolocate:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-geolocate i {
    font-size: 0.95rem;
}

.btn-geolocate.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Swap button */
.btn-swap {
    background: #ffffff;
    color: #7a8a80;
    border: 1.5px solid #e0e7e3;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-swap:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg);
}

/* --- Popular destinations chips --- */

.popular-destinations {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.popular-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7a8a80;
    flex-shrink: 0;
}

.popular-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.popular-chip {
    background: #ffffff;
    border: 1.5px solid #e0e7e3;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.popular-chip:hover {
    border-color: var(--primary);
    background: #fffbeb;
    color: var(--primary);
    transform: translateY(-1px);
}

.popular-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* --- Map --- */

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e7e3;
}

.transfer-map {
    width: 100%;
    height: 400px;
    background: #e8e8e8;
    z-index: 1;
}

.map-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.78rem;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    z-index: 500;
    pointer-events: none;
    opacity: 0.95;
    max-width: 90%;
}

/* Leaflet markers */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.marker-pin {
    width: 36px;
    height: 36px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2.5px solid #ffffff;
}

.marker-pin i {
    transform: rotate(45deg);
    color: #ffffff;
    font-size: 0.95rem;
}

.marker-pin.pickup {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.marker-pin.dropoff {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

/* Layer control */
.leaflet-control-layers {
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    padding: 8px !important;
    font-family: var(--font-body) !important;
}

.leaflet-control-layers label {
    margin: 0 !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    cursor: pointer;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    display: block !important;
}

.leaflet-control-layers label:hover {
    background: #f0f4f0;
}

/* --- Route info bar --- */

.route-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 1.5px solid #e0e7e3;
    border-radius: 14px;
}

.route-info[hidden] {
    display: none;
}

.route-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5a50;
}

.route-info-item i {
    color: var(--primary);
    font-size: 0.95rem;
}

.route-info-item strong {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-left: 4px;
}

/* --- Tier row (horizontal selector) --- */

.tier-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tier-row-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tier-options-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tier-option {
    background: #ffffff;
    border: 1.5px solid #e0e7e3;
    border-radius: 14px;
    padding: 14px 12px;
    cursor: pointer;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.25s ease;
    position: relative;
    color: var(--text-dark);
}

.tier-option:hover {
    border-color: var(--primary);
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.tier-option.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.06) 0%, rgba(255, 213, 79, 0.02) 100%);
    box-shadow: 0 6px 18px rgba(245, 184, 0, 0.12);
}

.tier-option.active::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.tier-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
}

.tier-option.active .tier-icon {
    background: var(--primary);
    color: #ffffff;
}

.tier-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
}

.tier-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.tier-capacity {
    font-size: 0.75rem;
    color: #7a8a80;
    font-weight: 500;
}

.tier-price-pill {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

/* --- Date / Time / Passengers row --- */

.datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.datetime-row .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.datetime-row input,
.datetime-row select {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #e0e7e3;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.datetime-row input:focus,
.datetime-row select:focus {
    outline: none;
    border-color: var(--primary);
}

/* --- CTA row --- */

.cta-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding-top: 4px;
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
}

.cta-total {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-total-label {
    font-size: 0.78rem;
    color: #7a8a80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.cta-total-note {
    font-size: 0.72rem;
    color: #9ca9a0;
    font-style: italic;
}

.btn-reserve-v2 {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-reserve-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn-reserve-v2 i {
    font-size: 1.15rem;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    .tier-options-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transfer-booking {
        padding: 20px;
    }

    .search-row {
        gap: 10px;
    }

    .btn-geolocate span {
        display: none;
    }

    .btn-geolocate {
        padding: 10px 12px;
    }

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

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

    .btn-reserve-v2 {
        justify-content: center;
    }

    .transfer-map {
        height: 320px;
    }

    .autocomplete-results {
        left: -12px;
        right: -12px;
    }
}

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

    .popular-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .popular-chips::-webkit-scrollbar {
        display: none;
    }

    .popular-chip {
        flex-shrink: 0;
    }

    .transfers {
        padding: 60px 0;
    }
}

/* ========================================
   BOOKING COMPACT — 2-column layout under Tours
   ======================================== */

.booking-compact {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-dark);
}

.booking-compact .section-label {
    color: var(--primary);
}

.booking-compact .section-title {
    color: var(--secondary);
}

.booking-compact .section-desc {
    color: var(--text-light);
}

.booking-compact-header {
    margin-bottom: 36px;
}

.booking-compact-header .section-title {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.booking-compact-header .section-desc {
    font-size: 0.98rem;
    max-width: 540px;
}

.booking-compact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}

.booking-col-left,
.booking-col-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-compact .form-group {
    margin-bottom: 0;
}

.booking-compact .form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-bottom: 6px;
    display: block;
}

.booking-compact .pay-option {
    background: #fafafa;
    color: var(--text-dark);
}

.booking-compact .pay-option strong {
    color: var(--text-dark) !important;
}

.booking-compact .pay-option span {
    color: var(--text-light);
}

.booking-compact .pay-option.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
}

.booking-compact .pay-option.active strong,
.booking-compact .pay-option.active span {
    color: #ffffff !important;
}

.booking-compact .price-summary h4 {
    color: var(--text-dark);
}

.booking-compact .summary-row {
    color: var(--text-dark);
}

.booking-compact input,
.booking-compact select,
.booking-compact textarea {
    padding: 10px 12px;
    font-size: 0.93rem;
    border: 1.5px solid #e0e7e3;
    border-radius: 10px;
    width: 100%;
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.booking-compact input:focus,
.booking-compact select:focus,
.booking-compact textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Calendar inside compact booking */
.booking-compact .calendar {
    padding: 12px;
    border: 1.5px solid #e0e7e3;
    border-radius: 12px;
    background: #ffffff;
}

.booking-compact .calendar-header {
    padding: 4px 2px 10px;
}

.booking-compact .cal-month {
    font-size: 0.95rem;
    font-weight: 700;
}

.booking-compact .calendar-weekdays {
    font-size: 0.7rem;
    padding: 4px 0;
}

.booking-compact .calendar-days {
    gap: 2px;
}

.booking-compact .calendar-days > button {
    padding: 6px 0;
    font-size: 0.82rem;
    min-height: 32px;
}

.booking-compact .cal-day {
    color: var(--text-dark);
}

.booking-compact .cal-day:hover:not(.disabled):not(.empty) {
    background: var(--primary);
    color: #ffffff;
}

.booking-compact .cal-day.selected {
    background: var(--primary);
    color: #ffffff;
}

.booking-compact .cal-day.disabled {
    color: var(--text-light);
    opacity: 0.35;
}

.booking-compact .cal-month {
    color: var(--text-dark);
}

.booking-compact .calendar-weekdays span {
    color: var(--text-light);
}

.booking-compact .cal-nav {
    color: var(--primary);
    background: #f0f4f0;
}

.booking-compact .cal-nav:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Payment toggle compact */
.booking-compact .payment-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.booking-compact .pay-option {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 10px;
}

.booking-compact .pay-option i {
    font-size: 1.1rem;
}

.booking-compact .pay-option strong {
    font-size: 0.82rem;
    display: block;
    line-height: 1.2;
}

.booking-compact .pay-option span {
    font-size: 0.7rem;
    line-height: 1.3;
    display: block;
    margin-top: 2px;
}

/* Price summary compact */
.booking-compact .price-summary {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #e0e7e3;
}

.booking-compact .price-summary h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.booking-compact .summary-row {
    padding: 4px 0;
    font-size: 0.88rem;
}

.booking-compact .summary-row.total {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #e0e7e3;
    font-size: 1rem;
    font-weight: 700;
}

.booking-compact .btn-full {
    padding: 13px 20px;
    font-size: 0.98rem;
    margin-top: 4px;
}

.booking-compact .booking-note {
    font-size: 0.72rem;
    text-align: center;
    margin-top: 8px;
    color: #9ca9a0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 960px) {
    .booking-compact-container {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .booking-compact {
        padding: 50px 0;
    }

    .booking-compact-header .section-title {
        font-size: 1.7rem;
    }

    .booking-compact .form-row,
    .booking-compact .payment-toggle {
        grid-template-columns: 1fr;
    }

    .booking-compact-container {
        padding: 18px;
        border-radius: 16px;
    }
}

/* ========================================
   PAYMENT METHOD SELECTOR (Card / Yappy / PayPal / WhatsApp)
   ======================================== */

.payment-method-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8;
}

.payment-method-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.payment-method {
    background: #ffffff;
    border: 1.5px solid #e0e7e3;
    border-radius: 12px;
    padding: 12px 8px;
    cursor: pointer;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.payment-method:hover {
    border-color: var(--primary);
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.payment-method.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, rgba(255, 213, 79, 0.03) 100%);
    box-shadow: 0 4px 14px rgba(245, 184, 0, 0.14);
}

.payment-method.active::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.pm-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 28px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.pm-icons .fa-cc-visa { color: #1a1f71; }
.pm-icons .fa-cc-mastercard { color: #eb001b; }
.pm-icons .fa-cc-amex { color: #2e77bb; }
.pm-icons .fa-paypal { color: #003087; font-size: 1.7rem; }

.pm-yappy span {
    background: linear-gradient(135deg, #00a86b 0%, #008255 100%);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 168, 107, 0.3);
}

.pm-whatsapp i {
    color: #25D366;
    font-size: 1.6rem;
}

.pm-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-method.active .pm-name {
    color: var(--primary);
}

/* Reserve button color variations based on payment method */
.btn-reserve-v2.method-card {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.25);
}

.btn-reserve-v2.method-yappy {
    background: linear-gradient(135deg, #00a86b 0%, #008255 100%);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.25);
}

.btn-reserve-v2.method-paypal {
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.3);
}

.btn-reserve-v2.method-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* Same color variants for the booking section CTA */
#btn-reserve.method-card {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}
#btn-reserve.method-card:hover { background: #0d47a1; }

#btn-reserve.method-yappy {
    background: linear-gradient(135deg, #00a86b 0%, #008255 100%);
}
#btn-reserve.method-yappy:hover { background: #008255; }

#btn-reserve.method-paypal {
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
}
#btn-reserve.method-paypal:hover { background: #001f5c; }

#btn-reserve.method-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
#btn-reserve.method-whatsapp:hover { background: #128C7E; }

/* Responsive */
@media (max-width: 640px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-icons {
        font-size: 1.3rem;
    }
}

/* ========================================
   PAYMENT MODAL — Stripe-style checkout
   ======================================== */

.payment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 20, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.25s ease;
}

.payment-modal-overlay[hidden] {
    display: none;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.payment-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
}

.modal-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213E 100%);
    color: #ffffff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.modal-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.modal-brand i {
    color: #F5B800;
    font-size: 1rem;
}

.modal-amount-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-amount-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.modal-body {
    padding: 24px;
}

.modal-body[hidden] {
    display: none;
}

/* --- Card visual preview --- */

.card-preview {
    perspective: 1000px;
    margin-bottom: 24px;
}

.card-preview-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6 / 1;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card-front {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f2e 100%);
    color: #ffffff;
    padding: 20px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-front::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card-front[data-brand="visa"] {
    background: linear-gradient(135deg, #1a1f71 0%, #0d1142 100%);
}
.card-front[data-brand="mastercard"] {
    background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%);
}
.card-front[data-brand="amex"] {
    background: linear-gradient(135deg, #2e77bb 0%, #1a4d80 100%);
}
.card-front[data-brand="discover"] {
    background: linear-gradient(135deg, #ff6f00 0%, #cc4700 100%);
}

.card-chip {
    width: 38px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #a8841d 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
}

.card-brand-display {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

.card-number-display {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    align-self: center;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-name-display {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    max-width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-expiry-display {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Courier New', monospace;
}

/* --- Form fields --- */

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e7e3;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.12);
}

.payment-form input.error {
    border-color: #ef5350;
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.12);
}

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

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 50px;
}

.input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca9a0;
    font-size: 1.4rem;
    transition: color 0.2s;
    pointer-events: none;
}

.input-icon.fa-cc-visa { color: #1a1f71; }
.input-icon.fa-cc-mastercard { color: #eb001b; }
.input-icon.fa-cc-amex { color: #2e77bb; }
.input-icon.fa-cc-discover { color: #ff6f00; }

.field-error {
    font-size: 0.75rem;
    color: #ef5350;
    min-height: 12px;
    line-height: 1.2;
}

.field-error:empty {
    display: none;
}

/* --- Pay Now button --- */

.btn-pay-now {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.25);
}

.btn-pay-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(21, 101, 192, 0.4);
}

.btn-pay-now:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-pay-now strong {
    margin-left: 4px;
    font-weight: 800;
}

.btn-pay-now.method-yappy {
    background: linear-gradient(135deg, #00a86b 0%, #008255 100%);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.btn-pay-now.method-paypal {
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.3);
}

/* --- Trust badges --- */

.modal-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f4f0;
    font-size: 0.72rem;
    color: #7a8a80;
    flex-wrap: wrap;
}

.modal-trust-badges span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.modal-trust-badges i {
    color: var(--primary);
}

/* --- Yappy mockup --- */

.yappy-info {
    text-align: center;
    margin-bottom: 20px;
}

.yappy-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00a86b;
    margin-bottom: 8px;
}

.yappy-logo span {
    background: linear-gradient(135deg, #00a86b 0%, #008255 100%);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.yappy-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.yappy-qr {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #f0f4f0 0%, #ffffff 100%);
    border: 2px solid #e0e7e3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.yappy-details {
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.yappy-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.yappy-detail-row strong {
    font-weight: 700;
}

/* --- PayPal mockup --- */

.paypal-info {
    text-align: center;
    margin-bottom: 24px;
}

.paypal-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 12px;
}

.paypal-logo i {
    font-size: 2rem;
    color: #003087;
}

.paypal-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.paypal-summary {
    background: #f0f4f8;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.paypal-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.paypal-summary .summary-row strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #003087;
    font-weight: 700;
}

/* --- Processing & Success states --- */

.modal-state {
    padding: 60px 24px;
    text-align: center;
}

.modal-state[hidden] {
    display: none;
}

.modal-state h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 16px 0 8px;
}

.modal-state p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.modal-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid #f0f4f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spinModal 0.8s linear infinite;
}

@keyframes spinModal {
    to { transform: rotate(360deg); }
}

.modal-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 184, 0, 0.35);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-checkmark svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.modal-checkmark svg circle {
    stroke-dasharray: 158;
    stroke-dashoffset: 158;
    animation: drawCircle 0.7s ease-out 0.2s forwards;
}

.modal-checkmark svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease-out 0.7s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.modal-success-note {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px !important;
}

/* --- Mock notice --- */

.modal-mock-notice {
    padding: 8px 16px;
    background: #fff8e1;
    border-top: 1px solid #ffe082;
    color: #8a6d00;
    font-size: 0.72rem;
    text-align: center;
    font-style: italic;
    border-radius: 0 0 20px 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .payment-modal {
        max-width: 100%;
        border-radius: 16px;
        max-height: 95vh;
    }

    .modal-amount {
        font-size: 1.4rem;
    }

    .card-number-display {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .qr-placeholder {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }

    .modal-trust-badges {
        gap: 10px;
        font-size: 0.68rem;
    }
}

/* Payment method selector — sidebar variant (more compact) */
.sidebar-payment-method {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
}

.sidebar-payment-method label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sidebar-payment-method .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.sidebar-payment-method .payment-method {
    padding: 10px 6px;
    gap: 5px;
    border-radius: 10px;
}

.sidebar-payment-method .pm-icons {
    height: 22px;
    font-size: 1.15rem;
}

.sidebar-payment-method .pm-icons .fa-paypal { font-size: 1.3rem; }

.sidebar-payment-method .pm-yappy span {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.sidebar-payment-method .pm-name {
    font-size: 0.72rem;
}

.sidebar-payment-method .payment-method.active::after {
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
    top: 4px;
    right: 5px;
}

/* Tour detail "Book Now" CTA — compact for sidebar */
#detail-book-btn {
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.2px !important;
    text-transform: none !important;
    border-radius: 10px !important;
    gap: 6px !important;
    margin-top: 12px;
    line-height: 1.2;
}

#detail-book-btn i {
    font-size: 0.95rem;
}

#detail-book-btn.method-card {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}
#detail-book-btn.method-yappy {
    background: linear-gradient(135deg, #00a86b 0%, #008255 100%);
}
#detail-book-btn.method-paypal {
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
}
#detail-book-btn.method-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ========================================
   DJE PREMIUM POLISH — Black & Gold Cohesion
   Unified visual system for premium feel
   ======================================== */

:root {
    --dje-black: #0A0A0A;
    --dje-black-soft: #1A1A1A;
    --dje-gold: #F5B800;
    --dje-gold-light: #FFD54F;
    --dje-gold-dark: #C8951C;
    --dje-cream: #FAF8F4;
    --dje-grey-100: #F5F5F5;
    --dje-grey-200: #E8E8E8;
    --dje-grey-text: #6B6B6B;
}

/* --- Stats: cleaner background, no green tint --- */
.stats {
    background:
        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(245, 184, 0, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(245, 184, 0, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--dje-black) 0%, var(--dje-black-soft) 100%) !important;
}

.stats-eyebrow {
    background: rgba(245, 184, 0, 0.12) !important;
    border: 1px solid rgba(245, 184, 0, 0.35) !important;
    color: var(--dje-gold) !important;
}

/* --- Tours section: cream background with premium dark cards --- */
.tours {
    background: var(--dje-cream);
    padding: 100px 0;
}

.tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--dje-grey-200);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tour-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--dje-gold) 50%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(245, 184, 0, 0.2);
    border-color: rgba(245, 184, 0, 0.3);
}

.tour-card:hover::after {
    transform: scaleX(1);
}

.tour-card .price-value {
    color: var(--dje-black);
}

.tour-card .price-label {
    color: var(--dje-gold-dark);
}

.btn-book {
    background: var(--dje-black) !important;
    color: var(--dje-gold) !important;
    border: 1.5px solid var(--dje-black) !important;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--dje-gold) !important;
    color: var(--dje-black) !important;
    border-color: var(--dje-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 184, 0, 0.35);
}

/* --- About section: full dark premium --- */
.about {
    background: linear-gradient(180deg, var(--dje-black-soft) 0%, var(--dje-black) 100%) !important;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(245, 184, 0, 0.04) 1px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

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

.about .section-label {
    color: var(--dje-gold) !important;
}

.about .section-title {
    color: #ffffff !important;
}

.about-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.75;
}

.about-text p strong {
    color: var(--dje-gold-light);
}

.about-text p em {
    color: var(--dje-gold);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.15em;
}

.about-features .feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 184, 0, 0.15);
    padding: 16px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    background: rgba(245, 184, 0, 0.08);
    border-color: rgba(245, 184, 0, 0.4);
    transform: translateY(-2px);
}

.about-features .feature i {
    color: var(--dje-gold);
    background: rgba(245, 184, 0, 0.12);
    border: 1px solid rgba(245, 184, 0, 0.3);
}

.about-features .feature strong {
    color: #ffffff;
}

.about-features .feature p,
.about-features .feature span {
    color: rgba(255, 255, 255, 0.65);
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(245, 184, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* --- Reviews/Testimonials: dark premium --- */
.testimonials {
    background: linear-gradient(180deg, var(--dje-cream) 0%, #ffffff 100%);
    padding: 100px 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--dje-grey-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 22px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--dje-gold);
    opacity: 0.2;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 184, 0, 0.4);
}

.testimonial-stars i {
    color: var(--dje-gold) !important;
}

.testimonial-text {
    color: var(--dje-black-soft);
    font-style: italic;
    line-height: 1.65;
}

.author-avatar {
    background: linear-gradient(135deg, var(--dje-black) 0%, var(--dje-black-soft) 100%) !important;
    color: var(--dje-gold) !important;
    border: 1.5px solid var(--dje-gold);
}

.testimonial-author strong {
    color: var(--dje-black);
}

.testimonial-author span {
    color: var(--dje-grey-text);
}

/* --- Contact section: full dark premium --- */
.contact {
    background: linear-gradient(180deg, var(--dje-black) 0%, var(--dje-black-soft) 100%) !important;
    color: #ffffff;
    padding: 100px 0;
}

.contact .section-label {
    color: var(--dje-gold) !important;
}

.contact .section-title {
    color: #ffffff !important;
}

.contact .section-desc,
.contact-info p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-method {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(245, 184, 0, 0.2) !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
    border-radius: 14px !important;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(245, 184, 0, 0.1) !important;
    border-color: var(--dje-gold) !important;
    transform: translateY(-2px);
}

.contact-method i {
    color: var(--dje-gold) !important;
    background: rgba(245, 184, 0, 0.12) !important;
}

.contact-method strong {
    color: #ffffff !important;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-map iframe {
    border-radius: 20px;
    border: 2px solid rgba(245, 184, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    filter: grayscale(0.3) brightness(0.95);
    transition: filter 0.3s ease;
}

.contact-map iframe:hover {
    filter: grayscale(0) brightness(1);
}

/* --- Booking section refine --- */
.booking-compact-container {
    border: 1px solid var(--dje-grey-200) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06) !important;
}

.booking-compact .pay-option {
    background: var(--dje-grey-100) !important;
    border: 1.5px solid var(--dje-grey-200) !important;
    color: var(--dje-black) !important;
    transition: all 0.3s ease;
}

.booking-compact .pay-option:hover {
    border-color: var(--dje-gold);
    background: #ffffff !important;
}

.booking-compact .pay-option.active {
    background: linear-gradient(135deg, var(--dje-black) 0%, var(--dje-black-soft) 100%) !important;
    border-color: var(--dje-black) !important;
    color: var(--dje-gold) !important;
}

.booking-compact .pay-option.active strong,
.booking-compact .pay-option.active span {
    color: var(--dje-gold) !important;
}

.booking-compact .pay-option.active i {
    background: rgba(245, 184, 0, 0.2);
    color: var(--dje-gold);
}

.booking-compact .cal-day.selected,
.booking-compact .cal-day:hover:not(.disabled):not(.empty) {
    background: var(--dje-gold) !important;
    color: var(--dje-black) !important;
    font-weight: 700;
}

.booking-compact .cal-nav {
    color: var(--dje-gold-dark) !important;
    background: var(--dje-grey-100) !important;
}

.booking-compact .cal-nav:hover {
    background: var(--dje-gold) !important;
    color: var(--dje-black) !important;
}

.booking-compact .price-summary {
    background: linear-gradient(135deg, var(--dje-black) 0%, var(--dje-black-soft) 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(245, 184, 0, 0.3) !important;
}

.booking-compact .price-summary h4,
.booking-compact .summary-row,
.booking-compact .summary-row span,
.booking-compact .summary-row strong {
    color: #ffffff !important;
}

.booking-compact .price-summary .total span,
.booking-compact .price-summary .total strong {
    color: var(--dje-gold) !important;
}

.booking-compact .btn-full {
    background: linear-gradient(135deg, var(--dje-gold) 0%, var(--dje-gold-dark) 100%) !important;
    color: var(--dje-black) !important;
    font-weight: 700 !important;
    border: none !important;
}

.booking-compact .btn-full:hover {
    background: linear-gradient(135deg, var(--dje-gold-light) 0%, var(--dje-gold) 100%) !important;
    box-shadow: 0 10px 28px rgba(245, 184, 0, 0.4) !important;
}

/* --- Hero: stronger dark cinematic overlay + gold tagline --- */
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%) !important;
}

.hero-title {
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Hero buttons: bulletproof centering */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    width: 100%;
}

.hero-buttons::after {
    content: none !important;
}

/* --- Footer: keep dark, refine gold accents --- */
.footer {
    background: var(--dje-black) !important;
    border-top: 1px solid rgba(245, 184, 0, 0.15);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 184, 0, 0.2);
    color: var(--dje-gold);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--dje-gold);
    color: var(--dje-black);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--dje-gold) !important;
    font-family: var(--font-heading);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--dje-gold) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* --- Section header refinement --- */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    position: relative;
    padding-bottom: 8px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--dje-gold);
}

.section-title {
    margin-top: 16px;
}

/* --- Carousel: gold dots --- */
.carousel-dot.active {
    background: var(--dje-gold) !important;
    box-shadow: 0 0 12px rgba(245, 184, 0, 0.5);
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--dje-gold) !important;
    border: 1px solid rgba(245, 184, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--dje-black) !important;
    border-color: var(--dje-gold);
}

/* --- Photo dividers: refined gold accents --- */
.photo-divider .divider-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}

.photo-divider .divider-overlay h3 {
    color: var(--dje-gold-light);
}

/* --- Header: refined sticky bar --- */
.header {
    border-bottom: 1px solid var(--dje-grey-200);
}

.nav-link:hover {
    color: var(--dje-gold-dark) !important;
}

.nav-link.active {
    color: var(--dje-black) !important;
    background: rgba(245, 184, 0, 0.12) !important;
    border-bottom: 2px solid var(--dje-gold);
}


/* ========================================
   STATS V2 — Editorial premium redesign
   Mono-gold, big typography, clean lines
   ======================================== */

/* Override stats section */
.stats {
    padding: 120px 0 !important;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245, 184, 0, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, var(--dje-black) 0%, var(--dje-black-soft) 50%, var(--dje-black) 100%) !important;
}

/* Soften the dot pattern */
.stats-bg-pattern {
    background-image: radial-gradient(circle, rgba(245, 184, 0, 0.025) 1px, transparent 1.5px) !important;
    background-size: 32px 32px !important;
    opacity: 1 !important;
}

/* Refined intro */
.stats-intro {
    margin-bottom: 72px !important;
}

.stats-eyebrow {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(245, 184, 0, 0.5) !important;
    border-radius: 0 !important;
    padding: 0 0 6px !important;
    color: var(--dje-gold) !important;
    font-size: 0.78rem !important;
    letter-spacing: 4px !important;
    margin-bottom: 24px !important;
}

.stats-heading {
    font-size: 2.8rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    max-width: 720px;
    margin: 0 auto !important;
}

/* New grid: big numbers, vertical dividers */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    border-top: 1px solid rgba(245, 184, 0, 0.15);
    border-bottom: 1px solid rgba(245, 184, 0, 0.15);
    padding: 56px 0 !important;
}

/* Reset card styling — minimal editorial */
.stat-item {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 32px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    position: relative !important;
    transition: transform 0.4s ease !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.stat-item::before,
.stat-item::after {
    display: none !important;
}

/* Vertical divider between items */
.stat-item:not(:last-child)::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 20% !important;
    right: 0 !important;
    height: 60% !important;
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(245, 184, 0, 0.3) 50%, transparent 100%) !important;
}

.stat-item:hover {
    transform: translateY(-6px) !important;
}

/* Icon: minimal thin gold */
.stat-icon-wrap {
    width: auto !important;
    height: auto !important;
    margin-bottom: 4px !important;
}

.stat-icon-glow {
    display: none !important;
}

.stat-icon {
    background: transparent !important;
    color: var(--dje-gold) !important;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(245, 184, 0, 0.4) !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    font-size: 1.15rem !important;
    transition: all 0.4s ease !important;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) !important;
    background: rgba(245, 184, 0, 0.08) !important;
    border-color: var(--dje-gold) !important;
    box-shadow: 0 0 24px rgba(245, 184, 0, 0.25) !important;
}

/* HUGE numbers — editorial weight */
.stat-body {
    align-items: center !important;
    gap: 6px !important;
}

.stat-number-wrap {
    align-items: baseline !important;
    gap: 2px !important;
    justify-content: center;
}

.stat-number {
    font-family: 'Playfair Display', serif !important;
    font-size: 4.5rem !important;
    font-weight: 300 !important;
    line-height: 0.95 !important;
    letter-spacing: -3px !important;
    color: #ffffff !important;
    background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.stat-plus {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    color: var(--dje-gold) !important;
    line-height: 1 !important;
    opacity: 1 !important;
    margin-left: -2px;
}

/* Label minimalist */
.stat-label {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-top: 4px !important;
}

/* Remove old underline (replaced by section borders) */
.stat-underline {
    display: none !important;
}

/* Sequential entrance animation */
@keyframes statFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: statFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.25s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.55s; }

/* Responsive */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 48px 0 !important;
    }

    .stat-item:not(:last-child)::after {
        display: none !important;
    }

    .stat-item:nth-child(odd):not(:last-child)::after {
        display: block !important;
        top: 15% !important;
        height: 70% !important;
    }

    .stat-number {
        font-size: 3.5rem !important;
    }

    .stats-heading {
        font-size: 2rem !important;
    }
}

@media (max-width: 540px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        padding: 32px 0 !important;
    }

    .stat-item:not(:last-child)::after {
        display: block !important;
        top: auto !important;
        bottom: -24px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        height: 1px !important;
        width: 60% !important;
        background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.4), transparent) !important;
    }

    .stat-item:nth-child(odd):not(:last-child)::after {
        height: 1px !important;
    }
}


/* ========================================
   BTN-BOOK V3 — Clean outline → gold fill on hover (DJE signature)
   ======================================== */

.btn-book {
    background: transparent !important;
    color: var(--dje-black) !important;
    border: 1.5px solid var(--dje-black) !important;
    padding: 9px 16px !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative !important;
    overflow: visible !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    min-height: 0 !important;
}

.btn-book::after {
    font-size: 0.62rem !important;
}

/* Remove any pseudo-elements from previous versions */
.btn-book::before {
    content: none !important;
    display: none !important;
}

/* Clean arrow icon */
.btn-book::after {
    content: '\f061' !important; /* fa-arrow-right */
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 0.7rem !important;
    transition: transform 0.3s ease !important;
    line-height: 1 !important;
}

/* HOVER: fill with GOLD (DJE signature, not black) */
.btn-book:hover {
    background: var(--dje-gold) !important;
    color: var(--dje-black) !important;
    border-color: var(--dje-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(245, 184, 0, 0.4) !important;
}

.btn-book:hover::after {
    transform: translateX(5px) !important;
    color: var(--dje-black) !important;
}

/* Active state: slight press */
.btn-book:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 12px rgba(245, 184, 0, 0.3) !important;
}

/* Tour footer: nowrap layout (price left, button right) */
.tour-footer {
    padding-top: 18px !important;
    border-top: 1px solid var(--dje-grey-200) !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    display: flex !important;
    justify-content: space-between !important;
}

.tour-footer .tour-price {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}


/* ========================================
   "VER MÁS" CLICK INDICATOR ON TOUR CARDS
   + MOBILE OPTIMIZATIONS
   ======================================== */

/* Card click indicator: subtle "view more" badge appearing on hover */
.tour-card .tour-image {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.tour-card .tour-image::after {
    content: 'Ver más →';
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(245, 184, 0, 0.95);
    color: var(--dje-black);
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

html[lang="en"] .tour-card .tour-image::after {
    content: 'View details →';
}

.tour-card:hover .tour-image::after {
    opacity: 1;
    transform: translateY(0);
}

/* Permanent visible chevron arrow on tour title */
.tour-info h3 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, gap 0.25s ease;
    color: inherit;
    text-decoration: none;
}

.tour-info h3 a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--dje-gold-dark);
    opacity: 0.6;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tour-card:hover .tour-info h3 a {
    color: var(--dje-gold-dark);
    gap: 12px;
}

.tour-card:hover .tour-info h3 a::after {
    opacity: 1;
    transform: translateX(4px);
}

/* Image zoom on hover */
.tour-card .tour-image img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-image img {
    transform: scale(1.06);
}

/* Subtle dark overlay on image hover for click affordance */
.tour-card .tour-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0.6;
    transition: opacity 0.35s ease;
    z-index: 2;
    pointer-events: none;
}

.tour-card:hover .tour-image::before {
    opacity: 0.9;
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) {
    /* Hero: less aggressive padding-top */
    .hero {
        padding-top: 18vh !important;
        min-height: 92vh !important;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle {
        font-size: 0.92rem !important;
        padding: 0 12px;
    }

    .hero-buttons {
        gap: 10px !important;
    }

    .hero-buttons .btn {
        padding: 12px 22px;
        font-size: 0.85rem;
    }

    /* Stats: better mobile spacing */
    .stats {
        padding: 70px 0 !important;
    }

    .stats-heading {
        font-size: 1.6rem !important;
    }

    .stat-item {
        padding: 16px !important;
    }

    .stat-number {
        font-size: 3rem !important;
        letter-spacing: -2px !important;
    }

    .stat-plus {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.62rem !important;
    }

    /* Tours: 1 column always under 768px */
    .tours-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tour-card .tour-image::after {
        opacity: 1;
        transform: translateY(0);
        bottom: 10px;
        left: 10px;
        font-size: 0.66rem;
        padding: 5px 10px;
    }

    .tour-card .tour-image::before {
        opacity: 0.85;
    }

    /* About: stack vertically */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .about-img-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    /* Reviews: 1 column */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Contact: stack */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .contact-map iframe {
        height: 300px !important;
    }

    /* Section headers: tighter */
    .section-header {
        margin-bottom: 36px !important;
    }

    .section-title {
        font-size: 1.7rem !important;
    }

    /* Booking: even more compact */
    .booking-compact-container {
        padding: 16px !important;
    }

    /* Top bar: hide on mobile (info already in header) */
    .top-bar {
        display: none !important;
    }

    /* Logo: slightly larger touch target */
    .logo-image {
        height: 52px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem !important;
    }

    .stats-heading {
        font-size: 1.4rem !important;
    }

    .stat-number {
        font-size: 2.6rem !important;
    }

    /* Tour card image height limited */
    .tour-card .tour-image img {
        height: 220px;
        object-fit: cover;
    }

    /* Hero buttons stack */
    .hero-buttons {
        flex-direction: column !important;
        width: 100%;
        padding: 0 30px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .booking-compact-header h2 {
        font-size: 1.5rem;
    }
}


/* ========================================
   STATS BUGFIX — Plus alignment + visual
   ======================================== */

/* Force all + to occupy space, even when hidden (Servicios Premium = 4 exact) */
.stat-plus {
    display: inline-block !important;
    visibility: visible !important;
    font-size: 2.6rem !important;
    color: var(--dje-gold) !important;
    line-height: 0.95 !important;
    margin-left: 4px !important;
    font-weight: 300 !important;
}

/* When inline style display:none was set on Bocas, override to keep space */
.stat-plus[style*="display: none"],
.stat-plus[style*="display:none"] {
    display: inline-block !important;
    visibility: hidden !important;
}

/* Tighter spacing between stat-number-wrap items (keep numbers truly centered) */
.stat-number-wrap {
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0 !important;
}

/* Slight letter-spacing fix on stat-number for better optical alignment */
.stat-number {
    letter-spacing: -2px !important;
}


/* ========================================
   STATS BUGFIX FINAL — overflow + plus alignment
   ======================================== */

/* Remove overflow:hidden that was clipping the "+" */
.stat-item {
    overflow: visible !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Background pattern behind everything */
.stats-bg-pattern {
    z-index: 0 !important;
}

.stats .container {
    z-index: 2 !important;
    position: relative !important;
}

.stats-grid,
.stat-item,
.stat-body,
.stat-number-wrap,
.stat-icon-wrap {
    position: relative !important;
    z-index: 2 !important;
}

/* Plus must be inline next to number, slight baseline tweak */
.stat-plus {
    display: inline-block !important;
    font-size: 2rem !important;
    color: var(--dje-gold) !important;
    line-height: 1 !important;
    margin-left: 4px !important;
    font-weight: 400 !important;
    transform: translateY(-8px);  /* lift to align with number top */
    flex-shrink: 0 !important;
}

/* Number wrap: align items at top instead of baseline (cleaner) */
.stat-number-wrap {
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 2px !important;
}

/* Number stays huge */
.stat-number {
    font-size: 4.2rem !important;
    line-height: 1 !important;
    letter-spacing: -2px !important;
    display: inline-block !important;
}


/* ========================================
   WHATSAPP CTAs — All green brand color
   ======================================== */

/* All buttons that link to WhatsApp */
.hero .btn-secondary,                          /* Hero "Contáctanos" */
#btn-reserve,                                  /* Booking form CTA */
#detail-book-btn,                              /* Tour detail "Book Now" */
.btn-reserve-v2,                               /* Transfer reserve (if active) */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.30) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.hero .btn-secondary:hover,
#btn-reserve:hover,
#detail-book-btn:hover,
.btn-reserve-v2:hover,
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #34D870 0%, #1AA086 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45) !important;
}

/* Strong fix for tour detail btn (override the !important compact rules) */
#detail-book-btn,
#detail-book-btn.method-card,
#detail-book-btn.method-yappy,
#detail-book-btn.method-paypal,
#detail-book-btn.method-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
}

#detail-book-btn:hover,
#detail-book-btn.method-card:hover,
#detail-book-btn.method-yappy:hover,
#detail-book-btn.method-paypal:hover,
#detail-book-btn.method-whatsapp:hover {
    background: linear-gradient(135deg, #34D870 0%, #1AA086 100%) !important;
}

/* Booking form variants */
#btn-reserve.method-card,
#btn-reserve.method-yappy,
#btn-reserve.method-paypal,
#btn-reserve.method-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
}

#btn-reserve.method-card:hover,
#btn-reserve.method-yappy:hover,
#btn-reserve.method-paypal:hover,
#btn-reserve.method-whatsapp:hover {
    background: linear-gradient(135deg, #34D870 0%, #1AA086 100%) !important;
}

/* Booking-compact CTA override — was gold gradient, now green */
.booking-compact .btn-full {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.booking-compact .btn-full:hover {
    background: linear-gradient(135deg, #34D870 0%, #1AA086 100%) !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45) !important;
}

/* Contact section WhatsApp box: green accent instead of gold */
.contact-method[href*="wa.me"] {
    border-color: rgba(37, 211, 102, 0.4) !important;
}

.contact-method[href*="wa.me"]:hover {
    background: rgba(37, 211, 102, 0.12) !important;
    border-color: #25D366 !important;
}

.contact-method[href*="wa.me"] i {
    color: #25D366 !important;
    background: rgba(37, 211, 102, 0.15) !important;
}

/* Hero contact button: ensure WA icon is white inside green button */
.hero .btn-secondary i.fa-whatsapp {
    color: #ffffff !important;
}


/* ========================================
   ABOUT FEATURES — Fix titles on dark bg
   ======================================== */

/* Override the legacy black titles */
.about .feature h4,
.about-features .feature h4 {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.about .feature p,
.about-features .feature p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Feature icon on dark bg */
.about .feature i,
.about-features .feature i {
    color: var(--dje-gold) !important;
    background: rgba(245, 184, 0, 0.12) !important;
    border: 1px solid rgba(245, 184, 0, 0.25);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ========================================
   MOBILE OPTIMIZATIONS — DJE
   ======================================== */

@media (max-width: 768px) {
    /* Hero buttons: stack & better sized */
    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100%;
        align-items: center !important;
    }

    .hero-buttons .btn {
        width: auto !important;
        min-width: 220px;
        max-width: 280px;
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.6px !important;
    }

    /* Hero title smaller, breathing room */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.15;
        padding: 0 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 16px;
        line-height: 1.5;
    }

    .hero {
        padding-top: 20vh !important;
    }

    /* About features: stack better */
    .about-features {
        gap: 10px !important;
    }

    .about-features .feature {
        padding: 14px 14px !important;
        gap: 12px !important;
    }

    .about .feature h4 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    .about .feature p {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }

    .about .feature i {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    /* About section padding tighter on mobile */
    .about {
        padding: 60px 0 !important;
    }

    .about-grid {
        gap: 28px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem !important;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-buttons .btn {
        min-width: 200px;
        font-size: 0.8rem !important;
        padding: 11px 20px !important;
    }
}


/* ========================================
   HERO BUTTONS V3 — Equal width, centered, balanced
   ======================================== */

/* Desktop & tablet: side by side, equal width */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 36px auto 0 !important;
}

.hero-buttons .btn {
    flex: 1 1 220px !important;
    max-width: 240px !important;
    min-width: 200px !important;
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.8px !important;
    text-align: center !important;
    justify-content: center !important;
    height: 52px !important;
    box-sizing: border-box !important;
}

/* Mobile: stack equal width */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column !important;
        max-width: 280px !important;
        gap: 12px !important;
    }

    .hero-buttons .btn {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 280px !important;
        padding: 13px 20px !important;
        font-size: 0.85rem !important;
        height: 50px !important;
    }
}

@media (max-width: 380px) {
    .hero-buttons {
        max-width: 240px !important;
    }

    .hero-buttons .btn {
        max-width: 240px !important;
        font-size: 0.8rem !important;
        height: 46px !important;
    }
}


/* ========================================
   BOOKING MOBILE — Compatto su telefono
   ======================================== */

@media (max-width: 768px) {
    .booking-compact {
        padding: 40px 0 50px !important;
    }

    .booking-compact-header {
        margin-bottom: 22px !important;
    }

    .booking-compact-header .section-label {
        font-size: 0.72rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 6px !important;
    }

    .booking-compact-header .section-title {
        font-size: 1.55rem !important;
        line-height: 1.15 !important;
        margin-bottom: 8px !important;
        padding: 0 16px;
    }

    .booking-compact-header .section-desc {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
        padding: 0 20px;
    }

    /* Single column layout, very compact */
    .booking-compact-container {
        padding: 18px !important;
        border-radius: 16px !important;
        gap: 14px !important;
    }

    .booking-col-left,
    .booking-col-right {
        gap: 12px !important;
    }

    .booking-compact .form-group label {
        font-size: 0.78rem !important;
        margin-bottom: 4px !important;
    }

    .booking-compact input,
    .booking-compact select,
    .booking-compact textarea {
        padding: 10px 12px !important;
        font-size: 0.92rem !important;
    }

    /* Calendar smaller on mobile */
    .booking-compact .calendar {
        padding: 10px !important;
    }

    .booking-compact .cal-month {
        font-size: 0.88rem !important;
    }

    .booking-compact .calendar-weekdays {
        font-size: 0.66rem !important;
        padding: 2px 0 !important;
    }

    .booking-compact .calendar-days > button {
        font-size: 0.78rem !important;
        min-height: 30px !important;
    }

    /* Form rows stack on small mobile */
    .booking-compact .form-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    /* Payment toggle compact */
    .booking-compact .payment-toggle {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .booking-compact .pay-option {
        padding: 12px !important;
    }

    .booking-compact .pay-option strong {
        font-size: 0.88rem !important;
    }

    .booking-compact .pay-option span {
        font-size: 0.74rem !important;
    }

    /* CTA button mobile */
    .booking-compact .btn-full {
        padding: 13px 16px !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.4px !important;
    }

    .booking-compact .booking-note {
        font-size: 0.7rem !important;
        margin-top: 6px !important;
    }
}

@media (max-width: 480px) {
    .booking-compact-header .section-title {
        font-size: 1.35rem !important;
    }

    .booking-compact-container {
        padding: 14px !important;
    }

    .booking-compact .form-row {
        grid-template-columns: 1fr !important;
    }
}


/* ========================================
   FINAL POLISH — Pre-launch fixes
   ======================================== */

/* Hero title: explicit line break via <br> in i18n */
.hero-title {
    line-height: 1.15 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem !important;
    }
}

/* Hero subtitle: balanced wrap, comfortable max width */
.hero-subtitle {
    text-wrap: balance;
    -webkit-text-wrap: balance;
    max-width: 620px;
    margin: 0 auto 28px;
}

