/* ============================================================
   ZANZIBAR SPICE ROUTES — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── Variables ── */
:root {
  --teal:      #0d5c4a;
  --teal-mid:  #1a7a63;
  --teal-lt:   #2a9d7e;
  --gold:      #c9922a;
  --gold-lt:   #f0b84a;
  --coral:     #d45c3d;
  --sand:      #f7f1e8;
  --white:     #ffffff;
  --dark:      #0a1a14;
  --dark-mid:  #142d22;
  --text:      #2c3e35;
  --text-lt:   #5a7060;
  --border:    rgba(10,26,20,0.1);
  --shadow:    0 4px 30px rgba(10,26,20,0.12);
  --shadow-lg: 0 20px 60px rgba(10,26,20,0.2);
  --radius:    12px;
  --radius-lg: 20px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-alt:  'Cormorant Garamond', serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }


/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10,26,20,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--gold-lt); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-lt);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1559827291-72ee739d0d9a?w=1920&q=90') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,26,20,0.75) 0%, rgba(10,26,20,0.3) 50%, rgba(10,26,20,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold-lt);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.3s both;
}
.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
  max-width: 750px;
  animation: fadeInUp 0.8s 0.5s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  font-family: var(--font-alt);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-top: 20px;
  line-height: 1.6;
  animation: fadeInUp 0.8s 0.7s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.9s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(201,146,42,0.4);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,146,42,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease infinite;
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 32px;
  animation: fadeIn 1s 1.2s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes heroZoom { from{transform:scale(1.05)} to{transform:scale(1.12)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.5} }

/* ── Section Wrapper ── */
.section {
  padding: 100px 0;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  color: var(--teal-lt);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
.section-title em { font-style: italic; color: var(--teal-mid); }
.section-sub {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  color: var(--text-lt);
  max-width: 560px;
  margin: 16px auto 0;
}

/* ── Why Zanzibar ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image {
  position: relative;
  min-height: 500px;
}
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,26,20,0.4), transparent);
}
.why-content {
  background: var(--dark);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-content .section-tag { text-align: left; color: var(--gold-lt); }
.why-content .section-title { text-align: left; color: var(--white); font-size: 2.2rem; }
.why-content .section-title em { color: var(--gold-lt); }
.why-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  background: rgba(201,146,42,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(201,146,42,0.3);
}
.why-item-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.why-item-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Tour Cards ── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tour-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-image img {
  transform: scale(1.08);
}
.tour-card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,26,20,0.8);
  backdrop-filter: blur(10px);
  color: var(--gold-lt);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tour-card-discount {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}
.tour-card-body {
  padding: 24px;
}
.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.tour-card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-lt);
}
.tour-card-meta-item svg { color: var(--teal-lt); }
.tour-card-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.tour-card-desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}
.star { color: #f4b93a; }
.tour-card-rating-count { color: var(--text-lt); font-weight: 400; }
.tour-card-price {
  text-align: right;
}
.tour-card-price-old {
  font-size: 0.78rem;
  color: var(--text-lt);
  text-decoration: line-through;
}
.tour-card-price-current {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 700;
}
.tour-card-price-current span {
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.tour-card-link {
  display: block;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  padding: 12px;
  margin: 20px 24px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.tour-card-link:hover {
  background: var(--teal-lt);
}

/* ── Parallax Band ── */
.parallax-band {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.parallax-band-bg {
  position: absolute; inset: 0;
  background: url('../images/parallax-beach.jpg') center/cover no-repeat;
  transform: translateY(var(--parallax-offset, 0px));
  transition: none;
}
.parallax-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,26,20,0.45) 0%,
    rgba(6,40,60,0.55) 50%,
    rgba(10,26,20,0.5) 100%
  );
}
.parallax-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 40px;
}
.parallax-band-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  font-style: italic;
}
.parallax-band-content p {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-alt);
  font-size: 1.2rem;
  margin-top: 12px;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-body { padding: 24px; }
.blog-card-category {
  display: inline-block;
  background: var(--sand);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-date { font-size: 0.78rem; color: var(--text-lt); }
.blog-card-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card-read:hover { color: var(--teal-lt); }

/* ── Testimonials ── */
.testimonials { background: var(--sand); }
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-country { font-size: 0.78rem; color: var(--text-lt); }

/* ── Experience Highlights ── */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.experience-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.experience-item:hover {
  border-color: var(--teal-lt);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.experience-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.experience-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.experience-desc {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.6;
}

/* ── Instagram Grid ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,26,20,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 1.2rem;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 80px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-lt); }
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
  font-family: var(--font-alt);
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}

/* ════════════════════════════════════════════
   HERO PORTFOLIO — Personal / Influencer Style
   ════════════════════════════════════════════ */

.hero-portfolio {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* LEFT PHOTO SIDE */
.hero-photo-side {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 100px 40px 60px 60px;
  overflow: hidden;
}
.hero-photo-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,92,74,0.15) 0%, rgba(201,146,42,0.06) 100%);
  z-index: 0;
}

/* Animated background texture */
.hero-photo-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(13,92,74,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,146,42,0.12) 0%, transparent 50%);
  z-index: 0;
}

.hero-photo-blob {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
}

.hero-photo-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  animation: blobMorph 8s ease-in-out infinite;
  box-shadow:
    0 0 0 8px rgba(201,146,42,0.15),
    0 0 0 20px rgba(201,146,42,0.06),
    0 30px 80px rgba(0,0,0,0.5);
  filter: saturate(1.1) contrast(1.05);
}

@keyframes blobMorph {
  0%   { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  25%  { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; }
  50%  { border-radius: 45% 55% 60% 40% / 55% 45% 45% 55%; }
  75%  { border-radius: 60% 40% 50% 50% / 40% 60% 55% 45%; }
  100% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.4;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 3;
}
.hero-float-badge.top-left {
  top: 120px;
  left: -10px;
  animation-delay: 0s;
}
.hero-float-badge.bottom-right {
  bottom: 80px;
  right: -10px;
  animation-delay: 2s;
}
.badge-icon { font-size: 1.3rem; }
.hero-float-badge strong { display: block; font-size: 0.9rem; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Decorative dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(201,146,42,0.4) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 1;
  animation: floatBadge 5s ease-in-out infinite 1s;
}

/* Decorative ring */
.hero-ring {
  position: absolute;
  top: 120px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed rgba(201,146,42,0.25);
  animation: spinSlow 20s linear infinite;
  z-index: 1;
}
@keyframes spinSlow { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* RIGHT CONTENT SIDE */
.hero-content-side {
  display: flex;
  align-items: center;
  padding: 100px 60px 60px 40px;
  background: linear-gradient(135deg, rgba(13,92,74,0.05) 0%, transparent 100%);
  position: relative;
}
.hero-content-side::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,146,42,0.3), transparent);
}

.hero-content-inner { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.3s both;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-lt);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,184,74,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(240,184,74,0); }
}

.hero-personal-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.5s both;
}
.hero-personal-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-title-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  color: transparent;
  font-style: italic;
}

.hero-personal-sub {
  font-family: var(--font-alt);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s 0.7s both;
}
.hero-personal-sub strong { color: var(--gold-lt); font-style: italic; }

/* Service Pills */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.9s both;
}
.service-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: default;
}
.service-pill:hover {
  background: rgba(201,146,42,0.15);
  border-color: rgba(201,146,42,0.4);
  color: var(--gold-lt);
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 1.1s both;
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  padding: 15px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.btn-wa-hero:hover {
  background: rgba(37,211,102,0.1);
  border-color: #25D366;
  color: #25D366;
}

/* Mini Stats */
.hero-mini-stats {
  display: flex;
  gap: 0;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.7s 1.3s both;
}
.mini-stat {
  flex: 1;
  text-align: center;
}
.mini-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1.1;
}
.mini-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mini-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeIn 1s 2s both;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
  0%  { transform: translateY(0); opacity: 1; }
  100%{ transform: translateY(8px); opacity: 0; }
}

/* ════════════════════════════════════════════
   ZANZIBAR ISLAND SECTION
   ════════════════════════════════════════════ */

.island-section {
  background: #050f0b;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Ocean background animation */
.island-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(13,92,74,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(6,80,100,0.15) 0%, transparent 60%);
  animation: oceanPulse 8s ease-in-out infinite;
}
@keyframes oceanPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

/* Subtle moving waves at bottom */
.island-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(13,92,74,0.08)' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L0,120Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  pointer-events: none;
}

.island-section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.island-map-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

/* SVG Container */
.island-svg-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zanzibar-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(13,92,74,0.5));
  animation: islandFloat 6s ease-in-out infinite;
}
@keyframes islandFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Island dot animation */
.island-dot {
  animation: dotPulse 2.5s ease-in-out infinite;
  cursor: pointer;
  transition: r 0.2s;
}
.island-dot:nth-child(1) { animation-delay: 0s; }
.island-dot:nth-child(2) { animation-delay: 0.4s; }
.island-dot:nth-child(3) { animation-delay: 0.8s; }
.island-dot:nth-child(4) { animation-delay: 1.2s; }
.island-dot:nth-child(5) { animation-delay: 1.6s; }
.island-dot:nth-child(6) { animation-delay: 2.0s; }
@keyframes dotPulse {
  0%,100% { opacity: 1; r: 7px; filter: none; }
  50%      { opacity: 0.7; r: 9px; filter: url(#islandGlow); }
}

.island-label {
  fill: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.island-body {
  transition: fill 0.5s ease;
}

/* Ocean rings */
.ocean-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: -1;
}
.ocean-ring {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  border: 1px solid rgba(13,92,74,0.2);
  animation: ringExpand 4s ease-out infinite;
}
.ocean-ring.r1 { width: 110%; height: 110%; animation-delay: 0s; }
.ocean-ring.r2 { width: 125%; height: 125%; animation-delay: 1.3s; }
.ocean-ring.r3 { width: 142%; height: 142%; animation-delay: 2.6s; }
@keyframes ringExpand {
  0%   { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Destinations */
.island-destinations {}

.island-intro {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}

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

.dest-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: var(--transition);
  cursor: default;
}
.dest-card:hover {
  background: rgba(13,92,74,0.2);
  border-color: rgba(13,92,74,0.4);
  transform: translateY(-2px);
}
.dest-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.dest-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}
.dest-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* island section header overrides (dark bg) */
.island-section .section-title { color: var(--white); }
.island-section .section-tag { color: var(--gold-lt); }

/* ════════════════════════════════════════════
   INSTAGRAM / GALLERY SECTION
   ════════════════════════════════════════════ */

.insta-section {
  padding: 80px 0 0;
  background: var(--white);
  overflow: hidden;
}

/* Follow Button */
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(220,39,67,0.3);
}
.insta-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(220,39,67,0.45);
}

/* SnapWidget wrapper */
.snapwidget-wrapper {
  width: 100%;
}

/* ── Infinite Marquee ── */
.insta-marquee-outer {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 40px;
  cursor: grab;
  user-select: none;
}
.insta-marquee-outer:active { cursor: grabbing; }

.insta-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.insta-marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.insta-marquee-item {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insta-marquee-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  z-index: 2;
}
.insta-marquee-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.insta-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-marquee-item:hover img { transform: scale(1.06); }

.insta-marquee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.insta-marquee-item:hover .insta-marquee-overlay { opacity: 1; }

.insta-overlay-icon {
  position: absolute;
  top: 14px; right: 14px;
  color: rgba(255,255,255,0.9);
}
.insta-overlay-cap {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  line-height: 1.4;
}


/* ── OLD insta-grid (keep for other pages) ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,26,20,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 1.2rem;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
  .insta-marquee-item { width: 220px; height: 220px; }
  .snap-notice-inner { padding: 14px 20px; }
}
@media (max-width: 480px) {
  .insta-marquee-item { width: 180px; height: 180px; }
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Animations (scroll reveal) ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Tour Detail Page ── */
.tour-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.tour-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.tour-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,26,20,0.9) 0%, rgba(10,26,20,0.2) 60%, transparent 100%);
}
.tour-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 60px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.tour-hero-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.tour-hero-breadcrumb a { color: var(--gold-lt); }
.tour-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
  max-width: 700px;
  line-height: 1.15;
}
.tour-hero-sub {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-alt);
  font-size: 1.2rem;
  margin-top: 12px;
  max-width: 600px;
}
.tour-hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.tour-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

.tour-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.tour-main {}
.tour-sidebar {
  position: sticky;
  top: 100px;
}
.tour-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.tour-sidebar-top {
  padding: 28px;
  border-bottom: 1px solid var(--border);
}
.tour-sidebar-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--teal);
  font-weight: 700;
}
.tour-sidebar-price-old {
  font-size: 0.9rem;
  color: var(--text-lt);
  text-decoration: line-through;
  margin-left: 8px;
}
.tour-sidebar-price-note {
  font-size: 0.78rem;
  color: var(--text-lt);
  margin-top: 4px;
}
.tour-sidebar-details {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.tour-sidebar-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.tour-sidebar-detail-label { color: var(--text-lt); display: flex; align-items: center; gap: 6px; }
.tour-sidebar-detail-value { font-weight: 600; color: var(--dark); }
.tour-sidebar-actions { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}
.btn-whatsapp-full:hover { background: #20ba5a; }
.tour-sidebar-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-lt);
  padding: 0 28px 20px;
  line-height: 1.5;
}

.tour-section { margin-bottom: 52px; }
.tour-section h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--sand);
}
.tour-section p {
  color: var(--text);
  line-height: 1.8;
  font-size: 0.95rem;
  white-space: pre-line;
}
.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.highlight-item::before {
  content: '✦';
  color: var(--teal-lt);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.included-list li.yes::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.included-list li.no::before { content: '✗'; color: #ef4444; font-weight: 700; flex-shrink: 0; }

.itinerary { display: flex; flex-direction: column; gap: 0; }
.itinerary-day {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.itinerary-day-num {
  width: 52px; height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.itinerary-day-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.itinerary-day-desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-grid img {
  border-radius: var(--radius);
  height: 220px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ── Blog ── */
.blog-hero {
  padding: 140px 40px 80px;
  background: var(--dark);
  text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-style: italic;
}
.blog-hero p {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-alt);
  font-size: 1.2rem;
  margin-top: 12px;
}

.blog-post-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px;
}
.blog-post-content h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--dark);
  margin: 36px 0 16px;
}
.blog-post-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}
.blog-post-content strong { color: var(--dark); }

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-lt);
  margin: 24px 0 40px;
  flex-wrap: wrap;
}
.post-meta-divider { color: var(--border); }

/* ── Tours List Page ── */
.tours-hero {
  padding: 140px 40px 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 100%);
  text-align: center;
}
.tours-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
}
.tours-hero p {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-alt);
  font-size: 1.2rem;
  margin-top: 12px;
}
.tours-filters {
  background: var(--white);
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 72px;
  z-index: 100;
}
.tours-filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.w-100 { width: 100%; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── Mobile Nav ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 2rem;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .island-map-wrapper { grid-template-columns: 360px 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { min-height: 300px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  /* Hero portfolio tablet */
  .hero-portfolio {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-photo-side {
    padding: 100px 40px 40px;
    min-height: 55vh;
  }
  .hero-photo-img { height: 420px; }
  .hero-content-side {
    padding: 40px 40px 60px;
  }
  .hero-content-side::before { display: none; }
  .hero-scroll-hint { display: none; }
  /* Island section tablet */
  .island-map-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .island-svg-container { max-width: 360px; margin: 0 auto; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 20px; }
  .hero-stats { display: none; }
  .tours-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .highlights-list { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .parallax-band { height: 260px; }
  .tours-hero, .blog-hero { padding: 120px 20px 60px; }
  .tour-hero-content { padding: 0 20px 40px; }
  .tour-layout { padding: 40px 20px; }
  .tours-filters { padding: 16px 20px; top: 60px; }
  .blog-post-content { padding: 40px 20px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Hero portfolio mobile */
  .hero-photo-side { padding: 90px 20px 32px; min-height: 50vh; }
  .hero-photo-img { height: 340px; }
  .hero-float-badge { display: none; }
  .hero-content-side { padding: 32px 20px 48px; }
  .hero-personal-title { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-wa-hero { width: 100%; justify-content: center; }
  .hero-mini-stats { gap: 0; padding: 16px; }
  .mini-stat strong { font-size: 1.3rem; }
  /* Island section mobile */
  .island-section { padding: 60px 0; }
  .island-section-inner { padding: 0 20px; }
  .dest-grid { grid-template-columns: 1fr; }
  .island-svg-container { max-width: 280px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .experiences-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 300px; }
  .hero-badge { font-size: 0.7rem; }
  .hero-services { gap: 7px; }
  .service-pill { font-size: 0.76rem; padding: 6px 12px; }
}
