/* ============================================================
   INTERVISTA THEME — main.css
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --iv-dark:       #0a0a14;
  --iv-dark-2:     #111121;
  --iv-dark-3:     #1a1a2e;
  --iv-gold:       #c9a84c;
  --iv-gold-lt:    #e2c06b;
  --iv-white:      #ffffff;
  --iv-off-white:  #f5f2ed;
  --iv-muted:      rgba(255,255,255,0.65);
  --iv-border:     rgba(255,255,255,0.10);
  --iv-border-dk:  rgba(0,0,0,0.09);
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Raleway', 'Helvetica Neue', sans-serif;
  --font-ui:       'Josefin Sans', sans-serif;
  --section-py:    90px;
  --container-px:  60px;
  --gap:           30px;
  --t-fast:        0.2s ease;
  --t-med:         0.35s ease;
  --t-slow:        0.6s ease;
  --shadow:        0 20px 60px rgba(0,0,0,0.14);
  --shadow-hover:  0 30px 80px rgba(0,0,0,0.24);
}

/* 2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: #1a1a1a; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.2; font-weight: 600; }
p { line-height: 1.75; color: #666; }

/* 3. UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--container-px); }
.section { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--iv-gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--iv-dark-3);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--iv-gold); }
.section-subtitle { font-size: 1rem; line-height: 1.75; color: #777; max-width: 620px; }
.text-center .section-subtitle { margin: 0 auto; }
.section-cta { margin-top: 50px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 32px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; transition: var(--t-med); cursor: pointer;
}
.btn-primary { background: var(--iv-gold); color: var(--iv-dark); border: 2px solid var(--iv-gold); }
.btn-primary:hover { background: transparent; color: var(--iv-gold); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: white; color: var(--iv-dark); border-color: white; }
.btn-outline-dark { background: transparent; color: var(--iv-dark-3); border: 2px solid var(--iv-dark-3); }
.btn-outline-dark:hover { background: var(--iv-dark-3); color: white; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* 4. SITE HEADER
   ============================================================ */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 999;
  padding: 16px var(--container-px);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding var(--t-med), background var(--t-med), box-shadow var(--t-med);
  background: white;
  box-shadow: 0 1px 15px rgba(0,0,0,0.05); /* Soft border/shadow for white bg */
}
.site-header.is-sticky {
  position: fixed;
  background: white;
  padding: 12px var(--container-px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo */
.site-logo a, .footer-logo a { display: inline-block; }
.logo-text-link { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif); font-style: italic; font-size: 2rem;
  font-weight: 400; color: var(--iv-dark-3); line-height: 1;
  /* Reduced gradient for white background to keep it professional */
  background: linear-gradient(135deg, var(--iv-dark-3) 0%, var(--iv-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-sub {
  font-family: var(--font-ui); font-size: 0.52rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: #888; margin-top: 2px;
}
.site-logo img, .footer-logo img { max-height: 70px; width: auto; max-width: 260px; object-fit: contain; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu li a {
  font-family: var(--font-ui); font-size: 0.77rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--iv-dark-3); position: relative; padding-bottom: 4px;
}
.nav-menu li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--iv-gold); transition: width var(--t-med);
}
.nav-menu li a:hover { color: var(--iv-gold); }
.nav-menu li a:hover::after { width: 100%; }
.nav-menu li a.nav-cta {
  background: var(--iv-dark-3); color: white !important;
  padding: 9px 20px; border-radius: 2px; font-weight: 700;
}
.nav-menu li a.nav-cta::after { display: none; }
.nav-menu li a.nav-cta:hover { background: var(--iv-gold); color: var(--iv-dark-3) !important; }

/* Dropdown Sub-Menu */
.nav-menu li { position: relative; }
.nav-menu .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;           /* starts right below the nav item — no gap */
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 14px;   /* invisible mouse bridge over the gap */
  background: transparent;
  z-index: 9999;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
  list-style: none;
}
.nav-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
/* The visual dropdown box is on a pseudo-element or inner wrapper.
   We put background/shadow/border on the li items themselves. */
.nav-menu .sub-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: 14px; left: 0; right: 0; bottom: 0;
  background: white;
  border-radius: 4px;
  border-top: 2px solid var(--iv-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: -1;
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--iv-dark-3);
  white-space: nowrap;
  text-transform: uppercase;
  border-bottom: none;
  position: relative;
  z-index: 1;
}
.nav-menu .sub-menu li a::after { display: none; }
.nav-menu .sub-menu li:first-child a { padding-top: 14px; }
.nav-menu .sub-menu li:last-child a { padding-bottom: 14px; }
.nav-menu .sub-menu li a:hover { color: var(--iv-gold); background: rgba(0,0,0,0.03); padding-left: 26px; }

/* Arrow indicator for parent items with dropdown */
.nav-menu li.menu-item-has-children > a::before {
  content: '▾';
  margin-left: 5px;
  font-size: 0.6rem;
  vertical-align: middle;
  opacity: 0.6;
}

/* Mobile sub-menu */
.mobile-menu .sub-menu { display: none; padding-left: 16px; }
.mobile-menu .menu-item-has-children.open > .sub-menu { display: block; }
.mobile-menu .sub-menu li a { padding: 10px 0; font-size: 0.78rem; color: rgba(255,255,255,0.6); border-bottom: none; }
.mobile-menu .menu-item-has-children > a::after { content: ' +'; font-size: 0.7rem; opacity: 0.6; }
.mobile-menu .menu-item-has-children.open > a::after { content: ' −'; }

/* Mobile Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1002; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--iv-dark-3); transition: var(--t-med); transform-origin: center; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; z-index: 1001;
  background: white;
  transition: right var(--t-med);
  display: flex; flex-direction: column; padding-top: 80px;
  box-shadow: -5px 0 40px rgba(0,0,0,0.1);
}
.mobile-nav.is-open { right: 0; }
.mobile-nav-inner { padding: 0 30px; flex: 1; overflow-y: auto; }
.mobile-menu li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-menu li a {
  display: block; padding: 16px 0;
  font-family: var(--font-ui); font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--iv-dark-3);
  font-weight: 600;
}
.mobile-menu li a:hover { color: var(--iv-gold); }
.mobile-nav-footer { padding: 24px 30px; border-top: 1px solid rgba(0,0,0,0.05); }
.mobile-phone { display: flex; align-items: center; gap: 10px; color: var(--iv-gold); font-size: 0.85rem; font-weight: 700; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity var(--t-med);
}
.mobile-overlay.is-active { opacity: 1; pointer-events: all; }

/* 5. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--iv-dark-3);
  animation: heroZoom 20s ease alternate infinite;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,15,0.50) 0%, rgba(5,5,15,0.15) 40%, rgba(5,5,15,0.45) 65%, rgba(5,5,15,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 0 40px; margin-bottom: 110px;
}
.hero-label {
  display: block; font-family: var(--font-ui); font-size: 0.72rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--iv-gold);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  font-weight: 400; color: white; line-height: 1.45;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s ease 0.55s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease 0.85s forwards;
}
.scroll-indicator {
  position: absolute; bottom: 105px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-indicator span { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.scroll-line { width: 1px; height: 45px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* 6. DESTINATIONS BAR
   ============================================================ */
.destinations-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
  display: flex; background: rgba(5,5,15,0.88);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.dest-item {
  flex: 1; padding: 20px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer; transition: var(--t-med); position: relative; overflow: hidden;
}
.dest-item:last-child { border-right: none; }
.dest-item::after {
  content: ''; position: absolute; bottom: 0; left: 15%; right: 15%;
  height: 2px; background: var(--iv-gold); transform: scaleX(0); transition: transform var(--t-med);
}
.dest-item:hover { background: rgba(201,168,76,0.08); }
.dest-item:hover::after { transform: scaleX(1); }
.dest-name { font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700; color: white; letter-spacing: 0.18em; text-transform: uppercase; }
.dest-type { font-family: var(--font-ui); font-size: 0.58rem; color: rgba(255,255,255,0.48); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 5px; }

/* 7. PACKAGES SECTION
   ============================================================ */
.packages-section { background: var(--iv-off-white); }
.packages-header { margin-bottom: 55px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

.package-card { background: white; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); transition: var(--t-med); }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.package-card__img { position: relative; height: 235px; overflow: hidden; }
.package-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.package-card:hover .package-card__img img { transform: scale(1.07); }

.package-card__img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--iv-dark-3), var(--iv-dark));
}
.package-card__img-fallback--india     { background: linear-gradient(135deg, #7b4f2e, #2a1a0e); }
.package-card__img-fallback--bhutan    { background: linear-gradient(135deg, #1a3a2e, #0a1a14); }
.package-card__img-fallback--maldives  { background: linear-gradient(135deg, #0e3a4a, #051520); }

.package-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--iv-gold); color: var(--iv-dark);
  font-family: var(--font-ui); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 11px; border-radius: 2px;
}
.package-card__body { padding: 26px; }
.package-card__destination { font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--iv-gold); margin-bottom: 7px; }
.package-card__title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--iv-dark-3); margin-bottom: 10px; line-height: 1.3; }
.package-card__details { display: flex; gap: 18px; margin-bottom: 14px; }
.package-card__detail { display: flex; align-items: center; gap: 5px; font-family: var(--font-ui); font-size: 0.7rem; color: #999; }
.package-card__detail svg { color: var(--iv-gold); flex-shrink: 0; }
.package-card__desc { font-size: 0.87rem; color: #777; line-height: 1.65; margin-bottom: 22px; }
.package-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--iv-border-dk); }
.package-card__price-label { font-family: var(--font-ui); font-size: 0.58rem; letter-spacing: 0.1em; color: #bbb; text-transform: uppercase; }
.package-card__price-amount { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--iv-dark-3); line-height: 1; }
.package-card__link { display: flex; align-items: center; gap: 5px; font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--iv-gold); }
.package-card__link svg { transition: transform var(--t-fast); }
.package-card:hover .package-card__link svg { transform: translateX(4px); }

/* 8. ABOUT SECTION
   ============================================================ */
.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); }
.about-image-main img { width: 100%; height: 520px; object-fit: cover; }
.about-image-placeholder { width: 100%; height: 520px; background: linear-gradient(135deg, var(--iv-dark-3) 0%, #16213e 100%); border-radius: 3px; }

.about-stats {
  position: absolute; top: 30px; left: -28px;
  background: var(--iv-gold); padding: 26px 28px; border-radius: 3px;
  text-align: center; box-shadow: var(--shadow);
}
.stat-number { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: var(--iv-dark); line-height: 1; }
.stat-label { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--iv-dark); opacity: 0.75; margin-top: 5px; }

.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--iv-dark-3); padding: 22px 26px; border-radius: 3px;
  text-align: center; box-shadow: var(--shadow-hover); border: 3px solid white;
}
.about-badge-number { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--iv-gold); line-height: 1; }
.about-badge-text { font-family: var(--font-ui); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 5px; }

.about-content .section-subtitle { margin-bottom: 28px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.about-feature { display: flex; gap: 14px; }
.about-feature__icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature__icon svg { color: var(--iv-gold); }
.about-feature__title { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--iv-dark-3); margin-bottom: 4px; }
.about-feature__desc { font-size: 0.84rem; color: #888; line-height: 1.6; }
.about-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* 9. DESTINATIONS SHOWCASE
   ============================================================ */
.destinations-section { background: var(--iv-dark-3); }
.section-header { margin-bottom: 55px; }
.destinations-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 260px 260px; gap: 14px; }
.dest-card { position: relative; border-radius: 3px; overflow: hidden; cursor: pointer; display: block; }
.dest-card:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
.dest-card:nth-child(2) { grid-column: 2/3; grid-row: 1/2; }
.dest-card:nth-child(3) { grid-column: 3/4; grid-row: 1/2; }
.dest-card:nth-child(4) { grid-column: 2/3; grid-row: 2/3; }
.dest-card:nth-child(5) { grid-column: 3/4; grid-row: 2/3; }

/* Destination card background gradients (replaced with real images later) */
.dest-card--india     { background: linear-gradient(135deg, #7b4f2e 0%, #2d1204 100%); }
.dest-card--bhutan    { background: linear-gradient(135deg, #1b5e3d 0%, #0a1a14 100%); }
.dest-card--srilanka  { background: linear-gradient(135deg, #2e5e4e 0%, #0a2018 100%); }
.dest-card--maldives  { background: linear-gradient(135deg, #0d5e7e 0%, #031520 100%); }
.dest-card--indonesia { background: linear-gradient(135deg, #5e2e0e 0%, #1a0a04 100%); }

.dest-card::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); transition: background var(--t-med); }
.dest-card:hover::before { background: rgba(0,0,0,0.1); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 26px; }
.dest-card__name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: white; margin-bottom: 4px; }
.dest-card__packages { font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--iv-gold); }

/* 10. TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--iv-off-white); }
.testimonials-header { margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.testimonial-card { background: white; padding: 36px 32px; border-radius: 3px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.testimonial-card::before { content: '"'; font-family: var(--font-serif); font-size: 7rem; font-weight: 700; color: var(--iv-gold); opacity: 0.08; position: absolute; top: -10px; right: 16px; line-height: 1; pointer-events: none; }
.testimonial-stars { color: var(--iv-gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; line-height: 1.8; color: #555; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--iv-gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--iv-dark); flex-shrink: 0; }
.testimonial-author-name { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700; color: var(--iv-dark-3); }
.testimonial-author-place { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.1em; color: #999; text-transform: uppercase; margin-top: 2px; }

/* 11. CTA SECTION
   ============================================================ */
.cta-section { position: relative; padding: 110px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-color: var(--iv-dark-3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(5, 5, 15, 0.75) url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: white; margin-bottom: 16px; line-height: 1.35; }
.cta-title em { font-style: italic; color: var(--iv-gold); }
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-trust span { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* 12. FOOTER
   ============================================================ */
.site-footer { background: var(--iv-dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-about { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--t-med); }
.footer-social a:hover { border-color: var(--iv-gold); color: var(--iv-gold); background: rgba(201,168,76,0.1); }
.footer-heading { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: var(--t-fast); }
.footer-links li a:hover { color: var(--iv-gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: rgba(255,255,255,0.5); }
.footer-contact-list li svg { color: var(--iv-gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,0.5); }
.footer-contact-list li a:hover { color: var(--iv-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.copyright, .footer-tagline { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); }

/* 13. INNER PAGES
   ============================================================ */
.inner-page { padding-top: 0; }
.page-hero-bar { background: var(--iv-dark-3); padding: 120px 0 50px; }
.page-title { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); color: white; font-weight: 400; margin-bottom: 14px; }
.breadcrumb { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 10px; }
.breadcrumb a:hover { color: var(--iv-gold); }
.page-body { padding: 70px var(--container-px); }
.page-content-wrap .page-body { max-width: 860px; margin: 0 auto; }

/* 404 */
.error-404-inner { text-align: center; padding: 120px 0; }
.error-code { font-family: var(--font-serif); font-size: 8rem; font-weight: 700; color: var(--iv-gold); opacity: 0.15; line-height: 1; }
.error-title { font-family: var(--font-serif); font-size: 2.5rem; color: var(--iv-dark-3); margin-bottom: 16px; }
.error-desc { color: #888; font-size: 1rem; max-width: 480px; margin: 0 auto 36px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 14. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 15. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --container-px: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 50px; }
  .about-image-main img { height: 420px; }
}

@media (max-width: 900px) {
  :root { --section-py: 65px; --container-px: 30px; --gap: 20px; }
  .packages-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .destinations-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; grid-template-rows: none; }
  .dest-card:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 260px; }
  .about-badge { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .destinations-bar { flex-wrap: wrap; }
  .dest-item { flex: 0 0 33.33%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-title { font-size: 1.7rem; }
  .destinations-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; grid-template-rows: none; height: auto; }
  .cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
  :root { --container-px: 20px; }
  .hero-content { margin-bottom: 180px; }
  .dest-item { flex: 0 0 50%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
}
