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

:root {
  --dark: #0d3d2a;
  --dark2: #0f4a33;
  --accent: #1aab7a;
  --accent2: #16c986;
  --accent-light: #e6f5ee;
  --accent-pale: #f0faf5;
  --text: #1c2b22;
  --text-muted: #5a7066;
  --border: #d8eae1;
  --bg: #f6faf8;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(13,61,42,0.10);
  --shadow-sm: 0 2px 12px rgba(13,61,42,0.07);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: 0 2px 16px rgba(13,61,42,0.08);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo .logo-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nav-logo span { font-weight: 700; font-size: 15px; color: var(--text); line-height: 1.2; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.btn-plan {
  background: var(--dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s, transform .2s;
  border: none; cursor: pointer;
}
.btn-plan:hover { background: var(--accent); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  height: 480px;
  background: linear-gradient(to bottom, rgba(13,61,42,0.55) 0%, rgba(13,61,42,0.75) 100%),
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 20px;
  margin-top: 68px;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 52px); line-height: 1.15; margin-bottom: 16px; }
.hero p { font-size: 15px; opacity: .88; max-width: 560px; }

/* page heroes (inner pages) */
.page-hero {
  height: 300px;
  background: linear-gradient(to bottom, rgba(13,61,42,0.6) 0%, rgba(13,61,42,0.8) 100%),
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 20px;
  margin-top: 68px;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p { font-size: 15px; opacity: .88; max-width: 600px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-accent:hover { background: #13956b; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 11px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background .2s;
}
.btn-green:hover { background: #1ebe59; }

/* ── SECTION LAYOUT ── */
section { padding: 72px 5%; }
.section-center { text-align: center; }

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: var(--text);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px; max-width: 580px;
  margin: 0 auto 40px;
}
.section-divider {
  width: 48px; height: 3px; background: var(--accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ── STATS ── */
.stats-bar {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  display: flex; gap: 0;
  padding: 18px 40px;
  margin-top: 36px;
}
.stat-item {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,.25);
  padding: 0 20px;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 800; }
.stat-lbl { font-size: 12px; opacity: .82; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ── DESTINATION CARDS ── */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 260px; cursor: pointer;
  transition: transform .25s;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 18px;
  color: var(--white);
}
.dest-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 4px 12px;
  font-size: 12px; margin-bottom: 8px;
}
.dest-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.dest-info p { font-size: 13px; opacity: .88; }
.dest-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); border: 1px solid rgba(255,255,255,.3);
  font-size: 14px; opacity: 0; transition: opacity .2s;
}
.dest-card:hover .dest-arrow { opacity: 1; }

/* ── TOUR PACKAGE CARDS ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-img { position: relative; height: 200px; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.pkg-badge.honeymoon { background: #e91e8c; }
.pkg-badge.adventure { background: #f59e0b; }
.pkg-badge.spiritual { background: #7c3aed; }
.pkg-badge.luxury { background: #b45309; }
.pkg-rating {
  position: absolute; top: 14px; right: 14px;
  background: var(--white);
  padding: 4px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 4px;
  box-shadow: var(--shadow-sm);
}
.pkg-rating .star { color: #f59e0b; }
.pkg-body { padding: 20px; }
.pkg-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pkg-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 12px;
}
.pkg-meta span { display: flex; align-items: center; gap: 4px; }
.pkg-features { margin-bottom: 14px; }
.pkg-features li {
  font-size: 13px; color: var(--text-muted);
  padding: 3px 0;
  display: flex; align-items: center; gap: 6px;
}
.pkg-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.pkg-price { margin-bottom: 16px; }
.pkg-price .price-now {
  font-size: 22px; font-weight: 800; color: var(--accent);
}
.pkg-price .price-was {
  font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px;
}
.pkg-price .price-pp { font-size: 12px; color: var(--text-muted); display: block; }
.btn-view {
  display: block; width: 100%; text-align: center;
  background: var(--dark); color: var(--white);
  padding: 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-view:hover { background: var(--accent); }

/* ── FILTER TABS ── */
.filter-bar {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 36px;
}
.filter-tab {
  padding: 8px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--text);
  transition: all .2s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}
.filter-bar select {
  margin-left: auto; padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: 14px;
  font-family: 'Poppins', sans-serif; cursor: pointer;
  background: var(--white); color: var(--text);
}

/* ── FEATURES / WHY US ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: 16px;
  padding: 28px 24px; border: 1px solid var(--border);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.feature-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); }

/* ── DARK SECTION ── */
.dark-section {
  background: var(--dark);
  color: var(--white);
  padding: 72px 5%;
}
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,.75); }
.dark-section .section-divider { background: var(--accent2); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a6646 100%);
  color: var(--white); padding: 80px 5%;
  text-align: center;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 16px; }
.cta-section p { opacity: .85; font-size: 15px; max-width: 540px; margin: 0 auto 32px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FORM ── */
.form-card {
  background: var(--white); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 760px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group label span { color: #e53e3e; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 14px; font-family: 'Poppins', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.char-count { font-size: 11px; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white); border-radius: 16px;
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 6px; }

/* ── PERSON CARD ── */
.person-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}
.person-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 28px auto 16px; border: 3px solid var(--accent-light); }
.person-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.person-location { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.person-btns { display: flex; gap: 0; border-top: 1px solid var(--border); }
.person-btns a {
  flex: 1; padding: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.person-btns .call-btn { color: var(--accent); border-right: 1px solid var(--border); }
.person-btns .call-btn:hover { background: var(--accent-pale); }
.person-btns .whatsapp-btn { color: #25D366; }
.person-btns .whatsapp-btn:hover { background: #f0fff6; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 64px 5% 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.footer-logo .logo-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.footer-logo span { font-weight: 700; font-size: 14px; color: var(--white); line-height: 1.2; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 15px;
  transition: background .2s;
}
.social-btn:hover { background: var(--accent); color: var(--white); }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: var(--accent2); }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 14px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); }
.newsletter-form input {
  flex: 1; padding: 11px 14px; background: rgba(255,255,255,.08);
  border: none; outline: none; color: var(--white); font-size: 13px;
  font-family: 'Poppins', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  background: var(--accent); border: none; cursor: pointer;
  padding: 0 16px; color: var(--white); font-size: 16px;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--accent2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.45);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); font-size: 12px; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border-radius: 16px; overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-body { padding: 18px; }
.blog-tag { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }

/* ── ABOUT SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: 14px;
  padding: 24px 20px; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.service-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--text-muted); }

/* ── ABOUT STORY ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-text h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; margin-bottom: 16px; }
.story-text p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.story-img { border-radius: 20px; overflow: hidden; }
.story-img img { width: 100%; height: 400px; object-fit: cover; }

/* ── BUSINESS HOURS ── */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hours-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.hours-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hours-text h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.hours-text p { font-size: 13px; color: var(--text-muted); }

/* ── SOCIAL MEDIA SECTION ── */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.social-card { text-align: center; padding: 28px 20px; border-radius: 16px; background: var(--white); border: 1px solid var(--border); transition: transform .2s; }
.social-card:hover { transform: translateY(-4px); }
.social-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white); margin: 0 auto 14px; }
.social-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.social-card p { font-size: 13px; color: var(--text-muted); }
.insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb { background: #1877f2; }
.yt { background: #ff0000; }
.tw { background: #000; }

/* ── EXPERIENCE CARDS ── */
.exp-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 24px; }
.exp-card.reverse { direction: rtl; }
.exp-card.reverse > * { direction: ltr; }
.exp-img { height: 280px; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-content { padding: 32px; }
.exp-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.exp-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.exp-content p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.exp-content ul li { font-size: 13px; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.exp-content ul li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ── COMMITMENT BOX ── */
.commitment-box {
  background: var(--accent-light); border-radius: 14px;
  padding: 20px 24px; border-left: 4px solid var(--accent);
  display: flex; align-items: center; gap: 14px;
  margin-top: 40px;
}
.commitment-box .icon { font-size: 22px; color: var(--accent); }
.commitment-box p { font-size: 14px; color: var(--text); line-height: 1.6; }
.commitment-box strong { color: var(--accent); }

/* ── FOUNDER CARDS ── */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.founder-card { border-radius: 20px; overflow: hidden; background: var(--dark2); }
.founder-card img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.founder-info { padding: 24px 28px; color: var(--white); }
.founder-info h4 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.founder-location { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.founder-info p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ── WHATSAPP SECTION ── */
.wa-section { background: var(--accent); padding: 64px 5%; text-align: center; color: var(--white); }
.wa-section .wa-icon { font-size: 48px; margin-bottom: 16px; }
.wa-section h2 { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.wa-section p { opacity: .9; max-width: 480px; margin: 0 auto 28px; font-size: 15px; }
.wa-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.btn-wa:hover { background: rgba(255,255,255,.25); }

/* ── TRENDING PACKAGES SCROLL ── */
.trending-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trend-card { border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: transform .2s; }
.trend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trend-card img { width: 100%; height: 160px; object-fit: cover; }
.trend-body { padding: 14px 16px; }
.trend-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.trend-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.trend-features li { font-size: 12px; color: var(--text-muted); padding: 2px 0; display: flex; align-items: center; gap: 4px; }
.trend-features li::before { content: '✓'; color: var(--accent); font-size: 11px; }
.trend-price { margin-top: 10px; }
.trend-price .now { font-size: 17px; font-weight: 800; color: var(--accent); }
.trend-price .was { font-size: 12px; color: var(--text-muted); text-decoration: line-through; margin-left: 4px; }
.btn-book {
  display: block; width: 100%; background: var(--dark); color: var(--white);
  border: none; border-radius: 8px; padding: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer; margin-top: 10px;
  transition: background .2s;
}
.btn-book:hover { background: var(--accent); }

/* ── HAMBURGER / MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 5%; gap: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .dest-grid, .pkg-grid { grid-template-columns: 1fr 1fr; }
  .features-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .hours-grid { grid-template-columns: 1fr; }
  .exp-card { grid-template-columns: 1fr; }
  .exp-card.reverse { direction: ltr; }
  .founder-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .trending-scroll { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 16px 20px; }
  .stat-num { font-size: 22px; }
}

@media (max-width: 600px) {
  section { padding: 52px 4%; }
  .dest-grid, .pkg-grid { grid-template-columns: 1fr; }
  .features-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .trending-scroll { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 12px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 12px; }
  .stat-item:last-child { border-bottom: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}
