/* Experience Kurugama - Main Stylesheet */
:root {
  --green-dark: #2d4a1e; --green-mid: #4a7c34; --green-light: #7ab648;
  --orange: #c8502a; --orange-light: #e07a50;
  --cream: #faf6ef; --cream-dark: #f0e8d8;
  --text-dark: #1a2e10; --text-mid: #3d5230; --text-light: #6b7c65;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 136px; transition: height 0.35s ease, box-shadow 0.35s ease; }
nav.scrolled { height: 64px; box-shadow: 0 2px 24px rgba(0,0,0,0.13); }
nav.scrolled .nav-logo img { height: 48px !important; }
nav.scrolled .btn-book-nav { padding: 8px 16px; font-size: 13px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { display: block; height: 120px; width: auto; transition: height 0.35s ease; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--text-mid); padding-bottom: 4px; border-bottom: 2px solid transparent; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-links li { list-style: none; }
.btn-book-nav { background: var(--orange); color: white; border: none; padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: background 0.2s, transform 0.2s; text-decoration: none; }
.btn-book-nav:hover { background: #a83e1f; transform: translateY(-1px); }

/* HERO */
#hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 136px; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,30,5,0.78) 0%, rgba(10,30,5,0.45) 60%, rgba(10,30,5,0.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; }
.hero-text { max-width: 560px; }
.hero-tagline { font-family: 'Dancing Script', cursive; font-size: 26px; color: #c8e88a; margin-bottom: 10px; display: block; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,58px); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 18px; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 50px; padding: 7px 16px; color: white; font-size: 12px; font-weight: 600; backdrop-filter: blur(8px); }

/* BOOKING CARD */
.booking-card { background: white; border-radius: 20px; padding: 30px; width: 320px; flex-shrink: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.28); }
.booking-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green-dark); margin-bottom: 20px; }
.form-field { border: 1.5px solid #e0d8cc; border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.form-field:hover { border-color: var(--green-mid); }
.form-field input, .form-field select { border: none; outline: none; background: transparent; font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text-dark); width: 100%; cursor: pointer; }
.btn-check { width: 100%; background: var(--green-dark); color: white; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; margin-top: 4px; }
.btn-check:hover { background: var(--green-mid); }
.free-cancel { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { font-family: 'Dancing Script', cursive; font-size: 22px; color: var(--green-mid); display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,40px); color: var(--text-dark); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--text-light); max-width: 500px; margin: 0 auto; }

/* PACKAGES */
#packages { padding: 80px 40px; background: var(--cream); }
.packages-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.pkg-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; border: 1.5px solid transparent; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); border-color: var(--green-light); }
.pkg-img { height: 180px; overflow: hidden; position: relative; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge { position: absolute; top: 10px; left: 10px; background: var(--orange); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.pkg-badge.green { background: var(--green-dark); }
.pkg-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text-dark); margin-bottom: 6px; }
.pkg-duration { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.pkg-features { list-style: none; margin-bottom: 16px; flex: 1; }
.pkg-features li { font-size: 13px; color: var(--text-mid); padding: 3px 0; display: flex; align-items: flex-start; gap: 7px; }
.pkg-features li::before { content: "✓"; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.pkg-price { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; }
.pkg-price span { font-size: 13px; font-weight: 400; color: var(--text-light); }
.btn-select { width: 100%; background: transparent; color: var(--green-dark); border: 1.5px solid var(--green-dark); padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.btn-select:hover { background: var(--green-dark); color: white; }

/* HIGHLIGHTS */
#highlights { padding: 60px 40px; background: white; }
.highlights-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(7,1fr); gap: 16px; }
.hl-item { text-align: center; padding: 20px 12px; }
.hl-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 12px; transition: background 0.2s, transform 0.2s; }
.hl-item:hover .hl-icon { background: var(--green-dark); transform: scale(1.1); }
.hl-item h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.hl-item p { font-size: 12px; color: var(--text-light); line-height: 1.4; }

/* HOW IT WORKS */
#how { padding: 70px 40px; background: white; }
.how-container { max-width: 1100px; margin: 0 auto; display: flex; gap: 40px; align-items: stretch; }
.how-steps { flex: 1; }
.how-steps h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text-dark); margin-bottom: 30px; }
.step-row { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark); color: white; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.step-connector { width: 2px; height: 20px; background: var(--green-light); margin: 4px 0 4px 21px; opacity: 0.4; }
.how-cta { width: 280px; background: var(--green-dark); border-radius: 20px; padding: 36px 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.how-cta h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 22px; }
.btn-book-big { background: var(--orange); color: white; border: none; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; width: 100%; display: flex; justify-content: center; align-items: center; gap: 8px; transition: background 0.2s; }
.btn-book-big:hover { background: #a83e1f; }
.quick-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.quick-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); font-size: 11px; padding: 5px 12px; border-radius: 20px; }

/* GALLERY */
#gallery { padding: 70px 40px; background: var(--cream); }
.gallery-grid { max-width: 1200px; margin: 0 auto 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gallery-item { overflow: hidden; border-radius: 12px; height: 220px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-btn-wrap { text-align: center; }
.btn-gallery { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--green-dark); color: var(--green-dark); background: transparent; padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.btn-gallery:hover { background: var(--green-dark); color: white; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: white; font-size: 32px; cursor: pointer; background: none; border: none; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 40px; cursor: pointer; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-prev { left: 20px; } .lightbox-next { right: 20px; }

/* TESTIMONIALS */
#testimonials { padding: 70px 40px; background: white; }
.reviews-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.review-card { background: var(--cream); border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s; }
.review-card:hover { transform: translateY(-4px); }
.review-quote { font-size: 36px; color: var(--green-light); line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.stars { color: #f5a623; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark); font-size: 20px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.reviewer-country { font-size: 12px; color: var(--text-light); }

/* WHY VISIT */
#why { padding: 70px 40px; background: var(--cream); }
.why-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-left h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--text-dark); margin-bottom: 24px; }
.why-list { list-style: none; margin-bottom: 24px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-mid); padding: 7px 0; }
.why-list li::before { content: "✓"; color: var(--green-mid); font-weight: 700; margin-top: 2px; }
.why-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.why-img { border-radius: 20px; overflow: hidden; height: 400px; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }

/* TOURS PAGE */
.page-hero { background: var(--green-dark); position: relative; overflow: hidden; padding-top: 136px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 60px 40px; text-align: center; position: relative; z-index: 2; }
.page-hero-inner .eyebrow { font-family: 'Dancing Script', cursive; font-size: 24px; color: #c8e88a; display: block; margin-bottom: 10px; }
.page-hero-inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,5vw,54px); color: white; margin-bottom: 16px; }
.page-hero-inner p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.filter-bar { background: white; border-bottom: 1px solid #e8e0d0; padding: 0 40px; position: sticky; top: 64px; z-index: 900; }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; overflow-x: auto; }
.filter-tab { padding: 18px 28px; font-size: 14px; font-weight: 700; color: var(--text-light); border: none; background: transparent; cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; transition: all 0.2s; }
.filter-tab:hover { color: var(--green-mid); }
.filter-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.tours-section { max-width: 1200px; margin: 0 auto; padding: 60px 40px; }
.tour-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 6px 30px rgba(0,0,0,0.08); margin-bottom: 60px; display: grid; grid-template-columns: 1fr 1fr; transition: box-shadow 0.3s; border: 1.5px solid transparent; }
.tour-card:hover { box-shadow: 0 12px 50px rgba(0,0,0,0.14); border-color: var(--green-light); }
.tour-card.reverse { direction: rtl; }
.tour-card.reverse > * { direction: ltr; }
.tour-img-wrap { position: relative; min-height: 420px; overflow: hidden; }
.tour-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.04); }
.tour-badge { position: absolute; top: 20px; left: 20px; background: var(--orange); color: white; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; }
.tour-badge.best { background: var(--green-dark); }
.tour-body { padding: 40px 44px; display: flex; flex-direction: column; }
.tour-tag { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--green-mid); text-transform: uppercase; margin-bottom: 10px; }
.tour-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
.tour-meta { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.tour-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); font-weight: 600; }
.tour-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.tour-highlights { margin-bottom: 24px; }
.tour-highlights h4, .tour-includes h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hl-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-mid); }
.hl-row::before { content: "✓"; color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tour-includes { margin-bottom: 28px; }
.includes-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--cream-dark); color: var(--text-mid); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.tour-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid #eee; }
.tour-price .amount { font-size: 32px; font-weight: 700; color: var(--green-dark); }
.tour-price .per { font-size: 13px; color: var(--text-light); }
.tour-price .note { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.tour-btns { display: flex; gap: 10px; }
.btn-book { background: var(--orange); color: white; border: none; padding: 13px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: background 0.2s, transform 0.15s; }
.btn-book:hover { background: #a83e1f; transform: translateY(-1px); }
.btn-wa { background: #25d366; color: white; border: none; padding: 13px 18px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: background 0.2s; }
.btn-wa:hover { background: #1ebe5d; }
.compare-section { background: white; padding: 70px 40px; }
.compare-inner { max-width: 1100px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--green-dark); color: white; padding: 16px 20px; text-align: center; font-size: 14px; font-weight: 700; }
.compare-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; }
.compare-table td { padding: 14px 20px; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid #f0e8d8; text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-dark); }
.compare-table tr:nth-child(even) td { background: #faf6ef; }
.compare-table tr:hover td { background: #f0ebe0; }
.compare-table .check { color: var(--green-mid); font-size: 18px; }
.compare-table .cross { color: #ccc; font-size: 18px; }
.compare-table .price-row td { font-weight: 700; color: var(--green-dark); font-size: 16px; }
.faq-section { max-width: 800px; margin: 0 auto; padding: 70px 40px; }
.faq-item { border-bottom: 1px solid #e8e0d0; }
.faq-q { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; font-size: 16px; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Lato', sans-serif; }
.faq-q:hover { color: var(--orange); }
.faq-icon { font-size: 20px; color: var(--green-mid); transition: transform 0.3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 0 20px; font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.cta-strip { background: var(--green-dark); padding: 60px 40px; text-align: center; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: white; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--orange); color: white; border: none; padding: 15px 36px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s; }
.btn-cta-primary:hover { background: #a83e1f; transform: translateY(-2px); }
.btn-cta-wa { background: #25d366; color: white; border: none; padding: 15px 36px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
.btn-cta-wa:hover { background: #1ebe5d; }

/* FOOTER */
footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding: 60px 40px 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.brand-sub { font-size: 12px; opacity: 0.6; margin-top: 6px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; opacity: 0.75; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; color: white; transition: background 0.2s; }
.social-link:hover { background: var(--orange); }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-size: 13px; outline: none; font-family: 'Lato', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { background: var(--orange); color: white; border: none; padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; opacity: 0.55; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: white; border-radius: 20px; padding: 36px; width: 90%; max-width: 480px; position: relative; animation: modalIn 0.3s ease; }
@keyframes modalIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 22px; cursor: pointer; color: #aaa; }
.modal-close:hover { color: var(--text-dark); }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-dark); margin-bottom: 6px; }
.modal > p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form input, .modal-form select { padding: 12px 16px; border-radius: 10px; border: 1.5px solid #e0d8cc; font-family: 'Lato', sans-serif; font-size: 14px; outline: none; background: white; }
.modal-form input:focus, .modal-form select:focus { border-color: var(--green-mid); }
.modal-form button { background: var(--orange); color: white; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; }

/* WHATSAPP */
.wa-wrapper { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-popup { background: white; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); width: 300px; overflow: hidden; transform: scale(0.85) translateY(12px); opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; transform-origin: bottom right; }
.wa-popup.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }
.wa-popup-header { background: #25d366; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.wa-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.wa-header-info strong { display: block; color: white; font-size: 14px; font-weight: 700; }
.wa-online { display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #a8ffbe; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.wa-popup-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 18px; cursor: pointer; margin-left: auto; }
.wa-popup-body { padding: 16px 18px; background: #f0f4f3; }
.wa-chat-bubble { background: white; border-radius: 12px 12px 12px 2px; padding: 12px 14px; font-size: 13.5px; color: #333; line-height: 1.55; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.wa-chat-time { font-size: 11px; color: #aaa; text-align: right; margin-top: 4px; }
.wa-popup-footer { padding: 14px 18px; background: white; }
.wa-quick-btns { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.wa-quick-btn { background: #f0faf3; border: 1.5px solid #25d366; color: #1a7a3f; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.wa-quick-btn:hover { background: #d4f5e0; }
.wa-send-btn { width: 100%; background: #25d366; color: white; border: none; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.wa-send-btn:hover { background: #1ebe5d; }
.wa-fab { width: 60px; height: 60px; border-radius: 50%; background: #25d366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform 0.2s; position: relative; }
.wa-fab:hover { transform: scale(1.08); }
.wa-notif { position: absolute; top: 0; right: 0; width: 18px; height: 18px; border-radius: 50%; background: #ff4d4d; border: 2px solid white; color: white; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .highlights-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .tour-card { grid-template-columns: 1fr; }
  .tour-card.reverse { direction: ltr; }
  .tour-img-wrap { min-height: 260px; }
  .highlights-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { flex-direction: column; padding: 40px 20px; }
  .booking-card { width: 100%; }
  .packages-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(3,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-container { grid-template-columns: 1fr; }
  .why-img { height: 250px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .how-container { flex-direction: column; }
  .how-cta { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  #packages, #highlights, #gallery, #testimonials, #how, #why { padding: 50px 20px; }
  footer { padding: 40px 20px 24px; }
  .wa-wrapper { bottom: 16px; right: 16px; }
  .wa-popup { width: 260px; }
  .tour-body { padding: 24px; }
  .tour-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
  .tour-btns { width: 100%; }
  .btn-book, .btn-wa { flex: 1; justify-content: center; }
  .compare-section, .faq-section, .tours-section { padding: 40px 20px; }
}
