/* =============================================================
   Green Gold Vacations – Main Stylesheet
   Kerala-themed travel agency website
   ============================================================= */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
  --primary:        #2d6a4f;
  --primary-dk:     #1b4332;
  --primary-lt:     #52b788;
  --gold:           #c9a227;
  --gold-lt:        #f0c040;
  --cream:          #fffbf2;
  --gray-100:       #f8f9fa;
  --gray-200:       #e9ecef;
  --gray-400:       #ced4da;
  --gray-500:       #adb5bd;
  --gray-600:       #6c757d;
  --gray-900:       #1a1a2e;
  --white:          #ffffff;

  --font-head:      'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm:      0 1px 4px rgba(0,0,0,.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.18);

  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      22px;

  --ease:           all .3s ease;
  --max-w:          1200px;
  --nav-h:          70px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::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(--gray-900); background: var(--white); line-height: 1.65; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--font-body); }

/* ── 3. Typography ───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1  { font-size: clamp(2rem, 5vw, 3.6rem); }
h2  { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3  { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p   { color: var(--gray-600); }

/* ── 4. Layout Helpers ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section        { padding: 90px 0; }
.section--gray  { background: var(--gray-100); }
.section--cream { background: var(--cream); }
.section--dk    { background: var(--primary-dk); color: var(--white); }

.sec-header     { text-align: center; margin-bottom: 3.5rem; }
.sec-sub {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.sec-title      { color: var(--primary-dk); margin-bottom: 1rem; }
.sec-title--lt  { color: var(--white); }
.sec-desc       { max-width: 560px; margin: 0 auto; }
.sec-desc--lt   { color: rgba(255,255,255,.75); }

/* ── 5. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-size: .93rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--gold    { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: #b8911f; border-color: #b8911f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.4); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: var(--white); color: var(--primary-dk); border-color: var(--white); }

.btn--outline-dk { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline-dk:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ── 6. Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .35s ease, box-shadow .35s ease;
}
.nav--solid,
.nav--scrolled {
  background: var(--primary-dk);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav__logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav__logo-text { line-height: 1.1; }
.nav__logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.nav__logo-tagline {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  position: relative;
  transition: color .25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { margin-left: .75rem; padding: .6rem 1.5rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--primary-dk);
  padding: 1.25rem 1.5rem 1.75rem;
  flex-direction: column;
  gap: .25rem;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: .95rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile .btn { margin-top: .75rem; justify-content: center; }

/* ── 6b. Contact Dropdown ────────────────────────────────── */
.nav__contact-wrap { position: relative; }
.nav__contact-btn  { display: flex; align-items: center; gap: .35rem; }
.nav__contact-arrow {
  font-size: .7rem;
  display: inline-block;
  transition: transform .25s;
}
.nav__contact-btn[aria-expanded="true"] .nav__contact-arrow { transform: rotate(180deg); }

.contact-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.contact-dropdown.open {
  display: block;
  animation: dropFade .22s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-dropdown__inner {
  padding: .6rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact-dropdown__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
  color: var(--gray-900);
}
a.contact-dropdown__item:hover { background: var(--gray-100); }
.contact-dropdown__item--addr  { align-items: flex-start; }
.contact-dropdown__item strong {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-900);
}
.contact-dropdown__item small {
  display: block;
  font-size: .74rem;
  color: var(--gray-500);
  margin-top: .1rem;
  line-height: 1.55;
}
.contact-dropdown__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-dropdown__icon--wa  { background: #25d366; color: #fff; }
.contact-dropdown__icon--ig  {
  background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff;
}
.contact-dropdown__icon--em  { background: var(--primary); color: #fff; }
.contact-dropdown__icon--loc { background: var(--gold); color: #fff; }
.contact-dropdown__map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 .15rem .25rem;
}
.contact-dropdown__map iframe { display: block; }

/* Mobile contact block */
.nav__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.nav__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  padding: .65rem 0;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__mobile-contact-item:hover { color: var(--gold-lt); }
.nav__mobile-contact-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__mobile-contact-icon--wa  { background: #25d366; }
.nav__mobile-contact-icon--ig  {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}
.nav__mobile-contact-icon--em  { background: var(--primary-lt); }

/* ── 7. Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(27,67,50,.88) 0%,
    rgba(27,67,50,.65) 55%,
    rgba(0,0,0,.45) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,.18);
  border: 1px solid rgba(201,162,39,.5);
  color: var(--gold-lt);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero__title span { color: var(--gold-lt); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── 8. Stats Bar ────────────────────────────────────────── */
.stats { background: var(--primary-dk); padding: 2.75rem 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats__item {
  padding: .75rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats__item:last-child { border-right: none; }
.stats__number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.stats__label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── 9. Destination Cards (Home) ─────────────────────────── */
.dest-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
}
.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--ease);
}
.dest-card { grid-column: span 1; }
.dest-card:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.dest-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dest-card:hover .dest-card__img { transform: scale(1.07); }
.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 45%, transparent 100%);
}
.dest-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.dest-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .22rem .7rem;
  border-radius: 50px;
  margin-bottom: .55rem;
}
.dest-card__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.dest-card__meta {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
}

/* ── 10. Feature Cards ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 68px; height: 68px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.2rem;
  transition: background .3s;
}
.feature-card:hover .feature-card__icon { background: #d8f3dc; }
.feature-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--primary-dk);
  margin-bottom: .7rem;
}
.feature-card p { font-size: .88rem; line-height: 1.7; }

/* ── 11. Package Cards (Home) ────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pkg-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--ease);
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card--featured { border: 2px solid var(--gold); }
.pkg-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .8rem;
  border-radius: 50px;
  z-index: 1;
}
.pkg-card__img-wrap { height: 200px; overflow: hidden; }
.pkg-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.pkg-card:hover .pkg-card__img { transform: scale(1.08); }
.pkg-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-card__dur {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary-lt);
  margin-bottom: .4rem;
}
.pkg-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--primary-dk);
  margin-bottom: .85rem;
}
.pkg-card__includes { flex: 1; margin-bottom: 1.2rem; }
.pkg-card__inc {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--gray-600);
  padding: .22rem 0;
}
.pkg-card__inc::before { content: '✓'; color: var(--primary); font-weight: 700; }
.pkg-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.pkg-card__price-lbl { font-size: .72rem; color: var(--gray-500); display: block; }
.pkg-card__price-amt { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--primary); }
.pkg-card__price-per { font-size: .72rem; color: var(--gray-500); }

/* ── 12. Testimonials ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tcard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__stars { color: var(--gold); font-size: .9rem; margin-bottom: .6rem; }
.tcard__quote { font-size: 2.8rem; color: var(--primary-lt); line-height: .9; margin-bottom: .75rem; font-family: Georgia, serif; }
.tcard__text  { font-size: .9rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 1.5rem; }
.tcard__author { display: flex; align-items: center; gap: .75rem; }
.tcard__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--gray-200); }
.tcard__name   { font-weight: 600; font-size: .88rem; color: var(--primary-dk); }
.tcard__loc    { font-size: .78rem; color: var(--gray-500); }

/* ── 13. CTA Banner ──────────────────────────────────────── */
.cta-banner {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2    { color: var(--white); margin-bottom: 1rem; }
.cta-banner p     { color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner__tel  {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  margin-top: 1.5rem;
}

/* ── 14. Page Hero (Inner Pages) ─────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 1.5rem 4.5rem;
  background: linear-gradient(135deg, var(--primary-dk), var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .14;
}
.page-hero__inner  { position: relative; z-index: 1; }
.page-hero__sub    { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); display: block; margin-bottom: .5rem; }
.page-hero__title  { color: var(--white); margin-bottom: 1rem; }
.page-hero__desc   { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .45rem; font-size: .82rem; color: rgba(255,255,255,.55);
  margin-top: 1.25rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── 15. Destinations Full Page ──────────────────────────── */
.dest-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dest-full-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.dest-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-full-card__img-wrap { height: 215px; overflow: hidden; }
.dest-full-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.dest-full-card:hover .dest-full-card__img { transform: scale(1.08); }
.dest-full-card__body { padding: 1.5rem; }
.dest-full-card__tag {
  display: inline-block;
  background: #d8f3dc;
  color: var(--primary);
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .22rem .75rem; border-radius: 50px;
  margin-bottom: .7rem;
}
.dest-full-card__name { font-family: var(--font-head); font-size: 1.3rem; color: var(--primary-dk); margin-bottom: .5rem; }
.dest-full-card p     { font-size: .87rem; margin-bottom: 1rem; line-height: 1.7; }
.dest-full-card__meta { display: flex; gap: 1.2rem; font-size: .8rem; color: var(--gray-600); flex-wrap: wrap; }

/* ── 16. Packages Full Page ──────────────────────────────── */
.pkg-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pkg-full-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.pkg-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-full-card__img-wrap { overflow: hidden; }
.pkg-full-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.pkg-full-card:hover .pkg-full-card__img { transform: scale(1.07); }
.pkg-full-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.pkg-full-card__tags { display: flex; gap: .6rem; margin-bottom: .85rem; }
.pkg-tag {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .22rem .72rem; border-radius: 50px;
}
.pkg-tag--dur  { background: #d8f3dc; color: var(--primary); }
.pkg-tag--type { background: #fff3d4; color: #7a5900; }
.pkg-full-card__title { font-family: var(--font-head); font-size: 1.22rem; color: var(--primary-dk); margin-bottom: .7rem; }
.pkg-full-card p      { font-size: .87rem; line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.pkg-highlights       { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.pkg-hl {
  font-size: .78rem;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: .2rem .65rem;
  border-radius: 4px;
}
.pkg-full-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.pkg-full-card__price-amt  { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; color: var(--primary); }
.pkg-full-card__price-note { font-size: .76rem; color: var(--gray-500); }

/* ── 17. About Page ──────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-intro__img-wrap { position: relative; }
.about-intro__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-intro__badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-intro__badge-num  { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.about-intro__badge-text { font-size: .78rem; opacity: .9; }
.about-intro__content .sec-title { text-align: left; }
.about-intro__content p { margin-bottom: 1rem; }
.about-intro__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__img-wrap { height: 200px; overflow: hidden; }
.team-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-card__img { transform: scale(1.08); }
.team-card__body { padding: 1.2rem; }
.team-card__name { font-family: var(--font-head); font-size: 1.05rem; color: var(--primary-dk); margin-bottom: .25rem; }
.team-card__role { font-size: .8rem; color: var(--gold); font-weight: 600; }

/* ── 18. Contact Page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3    { font-family: var(--font-head); font-size: 1.55rem; color: var(--primary-dk); margin-bottom: .4rem; }
.contact-form > p   { margin-bottom: 2rem; }
.form-row           { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group         { margin-bottom: 1.2rem; }
.form-group label   { display: block; font-size: .83rem; font-weight: 600; color: var(--primary-dk); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--gray-100);
  outline: none;
  transition: var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group textarea { min-height: 115px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; border-radius: var(--radius-sm); }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.cinfo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--ease);
}
.cinfo-card:hover { box-shadow: var(--shadow-md); }
.cinfo-card__icon {
  width: 46px; height: 46px;
  background: #d8f3dc;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cinfo-card__lbl   { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: .2rem; }
.cinfo-card__val   { font-weight: 600; color: var(--primary-dk); font-size: .93rem; }
.cinfo-card__sub   { font-size: .8rem; color: var(--gray-600); margin-top: .15rem; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; margin-top: 1.25rem; }

/* ── 19. Footer ──────────────────────────────────────────── */
.footer { background: #0d1f14; color: rgba(255,255,255,.65); padding: 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 0;
}
.footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer__logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer__logo-name    { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); display: block; }
.footer__logo-tagline { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.footer__about { font-size: .87rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: .65rem; }
.footer__social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: var(--ease);
}
.footer__social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer__heading { font-family: var(--font-head); font-size: .97rem; color: var(--white); margin-bottom: 1.2rem; }
.footer__links   { display: flex; flex-direction: column; gap: .55rem; }
.footer__link    { font-size: .86rem; color: rgba(255,255,255,.6); transition: var(--ease); }
.footer__link:hover { color: var(--gold); padding-left: 4px; }
.footer__contact-item { display: flex; gap: .7rem; font-size: .85rem; margin-bottom: .7rem; align-items: flex-start; }
.footer__contact-icon { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.footer__bottom {
  border-top: none;
  padding: 1rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .8rem;
  text-align: center;
}

/* ── 20. Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }

/* ── 21. Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-mosaic { grid-auto-rows: 240px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid .pkg-card:nth-child(3) { display: none; }  /* show 2 on tablet */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .tcard:nth-child(3) { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-full-card { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__contact-wrap { display: none; }
  .nav__hamburger                  { display: flex; }

  .section  { padding: 65px 0; }
  :root     { --nav-h: 62px; }

  .dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .dest-card { grid-column: span 1; }

  .features-grid    { grid-template-columns: 1fr 1fr; }
  .pkg-grid         { grid-template-columns: 1fr; }
  .pkg-grid .pkg-card:nth-child(3) { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .tcard:nth-child(3) { display: block; }
  .stats__grid      { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .footer__grid     { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro      { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__badge { right: 1rem; }
  .contact-grid     { grid-template-columns: 1fr; }
  .pkg-full-grid    { grid-template-columns: 1fr; }
  .pkg-full-card    { grid-template-columns: 1fr; }
  .pkg-full-card__img-wrap { height: 200px; }
  .dest-full-grid   { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .hero__actions    { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .features-grid  { grid-template-columns: 1fr; }
  .dest-full-grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .cta-banner { padding: 65px 0; }
}
