/* ========================================
   TROPICAL TOUR - Warm Beach Theme
   ======================================== */

:root {
    --sand: #F5E6C8;
    --sand-light: #FFF8ED;
    --sand-dark: #E8D5B0;
    --ocean: #0EA5E9;
    --ocean-deep: #0369A1;
    --ocean-light: #7DD3FC;
    --sunset-orange: #F97316;
    --sunset-coral: #FB923C;
    --sunset-gold: #F59E0B;
    --palm-green: #22C55E;
    --palm-dark: #15803D;
    --text-dark: #1C1917;
    --text-medium: #44403C;
    --text-light: #78716C;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Skip to Content (A11y) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--sand-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--white);
    border: 2px solid var(--sunset-orange);
    border-radius: 30px;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--sunset-orange);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow);
}

.lang-toggle:hover {
    background: var(--sunset-orange);
    color: var(--white);
    transform: scale(1.05);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-tour {
    color: var(--white);
    transition: var(--transition);
}

.logo-tropical {
    color: var(--sunset-gold);
    font-family: 'Playfair Display', serif;
}

.navbar.scrolled .logo-tour {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: var(--transition);
}

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

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-menu-btn span {
    background: var(--text-dark);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text always visible over video */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 20px;
}

.title-tour {
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.title-tropical {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--sunset-gold);
    text-shadow: 2px 4px 20px rgba(245, 158, 11, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

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

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    opacity: 0.7;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--sunset-orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: var(--sunset-orange);
    color: var(--white);
}

.btn-sm:hover {
    background: #EA580C;
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1rem;
    margin-top: 24px;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

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

/* ========================================
   ABOUT STRIP (Stats)
   ======================================== */
.about-strip {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
    padding: 48px 0;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

/* ========================================
   SECTION HEADERS (Parallax)
   ======================================== */
.section-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-header-bg {
    position: absolute;
    inset: -30%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Tayrona banner uses real photo */
.section-header-bg.tayrona-bg {
    background-image: url('images/tayrona-banner.avif');
}

/* JPEG fallback for browsers without AVIF */
@supports not (background-image: url('test.avif')) {
    .section-header-bg.tayrona-bg {
        background-image: url('images/tayrona-banner.jpg');
    }
}

.section-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(3, 105, 161, 0.45),
        rgba(0, 0, 0, 0.35)
    );
}

.section-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

.section-title-inline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    position: relative;
}

.section-title-inline::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--sunset-orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ========================================
   TOUR CARDS
   ======================================== */
.tours-section {
    padding: 80px 0;
}

.tours-section .container {
    padding-top: 40px;
}

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

.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

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

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

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

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

.tour-card-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

/* Fallback placeholder for cards without images */
.tour-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-type {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.tour-card-body {
    padding: 24px;
}

.tour-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.tour-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tour-includes {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tour-includes li {
    font-size: 0.78rem;
    color: var(--ocean-deep);
    background: rgba(14, 165, 233, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

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

.tour-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.tour-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ========================================
   PARALLAX DIVIDERS
   ======================================== */
.parallax-divider {
    position: relative;
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-divider-1 {
    background-image:
        linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(14, 165, 233, 0.2)),
        url('images/beyond-tayrona-banner.avif');
}

@supports not (background-image: url('test.avif')) {
    .parallax-divider-1 {
        background-image:
            linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(14, 165, 233, 0.2)),
            url('images/beyond-tayrona-banner.jpg');
    }
}

.parallax-divider-2 {
    background-image:
        linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(249, 115, 22, 0.2)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23F97316" width="1200" height="600"/><circle cx="600" cy="200" r="300" fill="%23F59E0B" opacity="0.3"/><path d="M0 350 Q300 280 600 320 Q900 360 1200 300 L1200 600 L0 600Z" fill="%230EA5E9" opacity="0.3"/></svg>');
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.parallax-divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.parallax-divider-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.parallax-divider-content p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ========================================
   EXPERIENCES
   ======================================== */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 28px;
}

.experience-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: var(--transition);
}

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

.experience-image {
    width: 200px;
    min-height: 240px;
    flex-shrink: 0;
}

.exp-placeholder {
    height: 100%;
    border-radius: 0;
    font-size: 0;
}

.experience-card:nth-child(1) .exp-placeholder { background: linear-gradient(135deg, #0369A1, #0EA5E9); }
.experience-card:nth-child(2) .exp-placeholder { background: linear-gradient(135deg, #F97316, #F59E0B); }
.experience-card:nth-child(3) .exp-placeholder { background: linear-gradient(135deg, #EC4899, #F97316); }
.experience-card:nth-child(4) .exp-placeholder { background: linear-gradient(135deg, #EF4444, #F59E0B); }
.experience-card:nth-child(5) .exp-placeholder { background: linear-gradient(135deg, #22C55E, #0EA5E9); }

.experience-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.experience-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.exp-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
    font-style: italic;
}

.experience-body .tour-includes {
    flex: 1;
}

.chiva-options {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.chiva-option {
    background: var(--sand);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    flex: 1;
}

.chiva-option span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.chiva-option strong {
    font-size: 1rem;
    color: var(--text-dark);
}

/* ========================================
   ADDITIONAL SERVICES
   ======================================== */
.additional-services {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--sand-light), var(--sand));
}

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

.service-item {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--sunset-orange);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
    position: relative;
}

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

.booking-info {
    color: var(--white);
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.booking-info p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e7e5e4;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--sand-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="date"] {
    cursor: pointer;
}

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

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

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--sunset-gold);
}

.footer-contact a,
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
    opacity: 0.5;
}

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

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

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ========================================
   FADE-IN ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ========================================
   FORM SUCCESS
   ======================================== */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success .checkmark {
    width: 60px;
    height: 60px;
    background: var(--palm-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--white);
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--sand);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--sunset-orange);
    opacity: 0.15;
    line-height: 1;
}

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

.testimonial-stars {
    color: var(--sunset-gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

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

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-deep));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

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

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

/* ========================================
   IMPROVED PLACEHOLDER IMAGES
   ======================================== */
.tour-placeholder {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    position: relative;
    overflow: hidden;
}

.tour-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='55' text-anchor='middle' font-family='sans-serif' font-size='12' fill='rgba(255,255,255,0.25)' font-weight='700'%3EFOTO%3C/text%3E%3Ccircle cx='50' cy='35' r='12' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2'/%3E%3Cpath d='M25 70 L40 55 L55 65 L70 45 L85 60 L85 85 L25 85Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") center/80% no-repeat;
}

/* Regional tour placeholder colors */
.tours-regional .tour-card:nth-child(1) .tour-placeholder { background: linear-gradient(135deg, #047857, #10B981); }
.tours-regional .tour-card:nth-child(2) .tour-placeholder { background: linear-gradient(135deg, #0369A1, #38BDF8); }
.tours-regional .tour-card:nth-child(3) .tour-placeholder { background: linear-gradient(135deg, #B45309, #FCD34D); }
.tours-regional .tour-card:nth-child(4) .tour-placeholder { background: linear-gradient(135deg, #9333EA, #C084FC); }
.tours-regional .tour-card:nth-child(5) .tour-placeholder { background: linear-gradient(135deg, #DC2626, #FB923C); }

/* ========================================
   FOCUS STYLES (A11y)
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--ocean);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--sunset-orange);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .lang-toggle {
        top: 14px;
        right: 70px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .nav-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }

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

    .nav-links a {
        color: var(--text-dark) !important;
        padding: 14px 0;
        border-bottom: 1px solid #f0ebe3;
        font-size: 1rem;
    }

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

    .experience-card {
        flex-direction: column;
    }

    .experience-image {
        width: 100%;
        min-height: 180px;
    }

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

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

    .about-stats {
        gap: 40px;
    }

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

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

    .booking-form {
        padding: 24px;
    }

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

    .parallax-divider {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

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

    .booking-info h2 {
        font-size: 2rem;
    }

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