@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Caveat:wght@400..700&family=Akaya+Kanadaka&display=swap');

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --bg-body: #fff2cc;
  --bg-header: #39302a;
  --bg-footer: #000;
  --bg-card-hero: rgba(66,56,44,0.84);
  --bg-section-cta: #4d5d53;

  --color-primary: #6e9b65;
  --color-secondary: #42382c;
  --color-accent: #decb8a;
  --color-text: #222;
  --color-white: #fff;
  --color-nav-text: #ccc;
  --color-nav-hover: #6e935e;

  --btn-primary-bg: #e97906;
  --btn-contact-bg: #ff6410;

  --submenu-bg: #fff2cc;
  --submenu-border: #6e9b65;

  --card-radius: 20px;
  --hero-card-radius: 50px;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Caveat', sans-serif;
  --font-display: 'Akaya Kanadaka', sans-serif;

  --container: 1160px;
  --header-h: 72px;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section shared */
.sec-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.sec-title {
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 15px;
  color: #555;
  max-width: 620px;
  line-height: 1.8;
}
section { padding: 70px 0; }

/* ===========================
   HEADER & NAV
=========================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg-header);
  z-index: 1000;
  display: flex;
  align-items: center;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img {
  max-width: 120px;
  height: auto;
}

/* Desktop nav */
.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: var(--color-nav-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--color-nav-hover); }
.nav-caret {
  font-size: 10px;
  opacity: .6;
  transition: transform .2s;
  display: inline-block;
}
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* Dropdown flyout */
.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--submenu-bg);
  border: 1px solid var(--submenu-border);
  border-radius: 6px;
  min-width: 230px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 200;
}
.dd-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--color-secondary);
  transition: background .15s, color .15s;
}
.dd-menu a:hover {
  background: var(--color-primary);
  color: #fff;
}
.nav-item:hover .dd-menu { display: block; }

/* Mega menu */
.dd-mega {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--submenu-bg);
  border: 1px solid var(--submenu-border);
  border-radius: 6px;
  min-width: 540px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 200;
  gap: 0;
}
.dd-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 16px;
}
.dd-mega-col a {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--color-secondary);
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.dd-mega-col a:hover {
  background: var(--color-primary);
  color: #fff;
}
.nav-item:hover .dd-mega { display: block; }

/* Contact button */
.btn-contact {
  background: var(--btn-contact-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 9px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .1s;
  white-space: nowrap;
  margin-left: 10px;
}
.btn-contact:hover { background: #e05500; transform: scale(1.03); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-header);
  z-index: 999;
  flex-direction: column;
  padding: 90px 30px 40px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
}
.nav-mobile a:hover { color: var(--color-primary); }
.mob-section-title {
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 0 6px;
  font-weight: 600;
}
.mob-close {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* Page body offset for fixed header */
body { padding-top: var(--header-h); }

/* ===========================
   HERO SLIDESHOW
=========================== */
.hero {
  position: relative;
  min-height: 625px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 625px;
  width: 100%;
}
.hero-card {
  background: var(--bg-card-hero);
  border-radius: var(--hero-card-radius);
  padding: 54px 60px;
  text-align: center;
  width: 63%;
  max-width: 760px;
}
.hero-card h1 {
  font-family: var(--font-display);
  font-size: 52px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-card p {
  color: rgba(255,255,255,.88);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--btn-primary-bg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--btn-primary-radius);
  transition: background .2s, transform .1s;
  letter-spacing: .3px;
}
.btn-primary:hover { background: #c86800; transform: scale(1.03); }

/* ===========================
   TOUR CARDS CAROUSEL
=========================== */
.tours-section {
  background: var(--bg-body);
  padding: 70px 0;
}
.tours-section .sec-header {
  margin-bottom: 36px;
}
.carousel-wrapper {
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tour-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  min-height: 316px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform .3s;
}
.tour-card:hover { transform: translateY(-4px); }
.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px 20px;
  transition: background .3s;
}
.tour-card:hover .tour-card-overlay { background: rgba(0,0,0,.55); }
.tour-card-name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.tour-card-duration {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.tour-card-price {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
}
.carousel-btn:hover { background: var(--color-secondary); }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* ===========================
   EXPLORE TANZANIA (TABS)
=========================== */
.explore-section {
  background: #fff;
  padding: 70px 0;
}
.explore-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  background: #eee;
  color: #555;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dest-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 12px 10px;
}

/* CTA sidebar card */
.explore-cta {
  background: var(--bg-section-cta);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
}
.explore-cta h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.explore-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 22px; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}
.btn-outline-white:hover { background: #fff; color: var(--bg-section-cta); }

/* ===========================
   EXPERIENCE AFRICA
=========================== */
.experience-section {
  background: var(--bg-body);
  padding: 70px 0;
}
.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.experience-text h2 { margin-bottom: 20px; }
.experience-text p { color: #444; margin-bottom: 16px; font-size: 15px; }
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.photo-grid-item {
  overflow: hidden;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.photo-grid-item:hover img { transform: scale(1.06); }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section {
  background: #fff;
  padding: 70px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(110,155,101,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===========================
   BANNER CTA
=========================== */
.banner-cta {
  background: var(--color-secondary);
  background-image: url('images/giraffes.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 90px 0;
  text-align: center;
}
.banner-cta h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--color-primary);
  max-width: 740px;
  margin: 0 auto 24px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.banner-cta p { color: rgba(255,255,255,.85); margin-bottom: 30px; font-size: 16px; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  background: var(--bg-body);
  padding: 70px 0;
  overflow: hidden;
}
.testi-track-outer { overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .5s ease;
}
.testi-card {
  flex: 0 0 100%;
  padding: 36px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  max-width: 760px;
  margin: 0 auto;
}
.testi-stars { color: #f5a623; font-size: 20px; margin-bottom: 14px; }
.testi-text {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testi-author { font-weight: 700; color: var(--color-secondary); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  border: none; cursor: pointer;
}
.testi-btn:hover { background: var(--color-secondary); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.testi-dot.active { background: var(--color-primary); }

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-section {
  background: #fff;
  padding: 70px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid #e8e0d0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-secondary);
  cursor: pointer;
  gap: 12px;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .3s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

/* ===========================
   BESPOKE SECTION
=========================== */
.bespoke-section {
  background: var(--bg-body);
  padding: 70px 0;
}
.bespoke-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bespoke-img {
  border-radius: 16px;
  overflow: hidden;
  height: 440px;
}
.bespoke-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bespoke-text h2 { margin-bottom: 16px; }
.bespoke-text p { color: #555; margin-bottom: 28px; font-size: 15px; }
.bespoke-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-brown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}
.btn-brown:hover { background: #2a2016; }
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}
.btn-green:hover { background: #4e7a46; }

/* ===========================
   PARTNERS
=========================== */
.partners-section {
  background: #fff;
  padding: 50px 0;
}
.partners-section .sec-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-logo {
  filter: grayscale(1);
  opacity: .55;
  transition: filter .3s, opacity .3s;
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
}
.partner-logo:hover { filter: none; opacity: 1; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--bg-footer);
  color: #bbb;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo { max-width: 110px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #888; line-height: 1.8; margin-bottom: 14px; }
.footer-contact-item {
  font-size: 13.5px;
  color: #999;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: #999;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #555;
}

/* ===========================
   COMPANY PAGE
=========================== */
.page-hero {
  background: var(--color-secondary);
  color: #fff;
  padding: 50px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 50px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 15px; }

/* Gallery top */
.gallery-top {
  padding: 60px 0;
  background: var(--bg-body);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gal-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gal-item:first-child {
  grid-row: 1 / 3;
}
.gal-item:nth-child(2) { grid-column: 2; }
.gal-item:nth-child(3) { grid-column: 3; }
.gal-item:nth-child(4) { grid-column: 2; }
.gal-item:nth-child(5) { grid-column: 3; }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gal-item:hover img { transform: scale(1.07); }

/* About text */
.about-section {
  background: #fff;
  padding: 70px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 15px; color: #444; line-height: 1.9; margin-bottom: 16px; }
.about-img { border-radius: 16px; overflow: hidden; height: 500px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* Why Choose Us — company (7 cards) */
.why-7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-7-grid .why-card:last-child {
  grid-column: 2 / 4;
}

/* Ready to serve */
.serve-section {
  background: var(--bg-body);
  padding: 70px 0;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.serve-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.serve-card h3 {
  color: var(--color-primary);
  font-size: 17px;
  margin-bottom: 10px;
}
.serve-card p { font-size: 14px; color: #555; line-height: 1.8; }

/* Contact form */
.contact-form-section {
  background: #fff;
  padding: 70px 0;
}
.contact-form {
  width: 80%;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-full { grid-column: 1 / -1; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  background: #fafafa;
  transition: border-color .2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}
.form-textarea { min-height: 120px; resize: vertical; }
.checkbox-group {
  grid-column: 1 / -1;
}
.checkbox-group label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 600;
}
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
}
.btn-submit {
  grid-column: 1 / -1;
  background: #4f320b;
  color: #fff;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  justify-self: start;
}
.btn-submit:hover { background: #3a2407; }
.form-success {
  display: none;
  grid-column: 1 / -1;
  background: #e6f4ea;
  color: #1b5e20;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.form-error {
  display: none;
  grid-column: 1 / -1;
  background: #fce8e8;
  color: #8B0000;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff; font-size: 36px;
  cursor: pointer; background: none; border: none;
}

/* ===========================
   TRAVEL TIPS PAGE
=========================== */
.blog-section {
  background: var(--bg-body);
  padding: 70px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 22px 20px; }
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.blog-card:hover .read-more { gap: 9px; }

/* ===========================
   COMING SOON (stub pages)
=========================== */
.coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.coming-soon h2 { margin-bottom: 16px; }
.coming-soon p { color: #666; max-width: 480px; }

/* ===========================
   REVEAL ON SCROLL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1060px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card { flex: 0 0 calc(50% - 10px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-7-grid { grid-template-columns: repeat(3, 1fr); }
  .why-7-grid .why-card:last-child { grid-column: auto; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-main { display: none; }
  .btn-contact { display: none; }
  .nav-hamburger { display: flex; }

  .hero-card { width: 90%; padding: 36px 28px; }
  .hero-card h1 { font-size: 38px; }

  .experience-inner,
  .bespoke-inner,
  .about-inner { grid-template-columns: 1fr; }
  .photo-grid { grid-template-rows: 180px 180px; }
  .bespoke-img { height: 300px; }
  .about-img { height: 320px; order: -1; }

  .explore-inner { grid-template-columns: 1fr; }
  .explore-cta { order: -1; }

  .faq-grid { grid-template-columns: 1fr; }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gal-item:first-child { grid-row: auto; }
  .gal-item { grid-column: auto !important; }

  .contact-form { width: 100%; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .sec-title { font-size: 34px; }
  .tour-card { flex: 0 0 calc(100% - 0px); }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-7-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .partners-row { gap: 24px; }
  .banner-cta h2 { font-size: 36px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form > * { grid-column: 1 / -1; }
  .bespoke-btns { flex-direction: column; }
  .gallery-masonry { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
}
