/**
 * GrandVantage Tours — Homepage Sections CSS
 *
 * Exact match of homepage-mockup-v3.html.
 * All 15 sections styled with the warm luxury brown & gold palette.
 *
 * @package GrandVantageTours
 * @since   2.0.0
 */

/* ===================================================================
   SECTION UTILITIES
   =================================================================== */
.section-label {
  font-family: var(--ff-script, 'Dancing Script', cursive);
  font-size: 1.35rem;
  color: var(--gold, #C9982E);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--brown-deep, #3B2314);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted, #6B6058);
  max-width: 640px;
  line-height: 1.75;
}
.section-header {
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ===================================================================
   1. HERO — WITH LUXURY SEARCH BAR
   =================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 20, 16, 0.78) 0%,
    rgba(30, 20, 16, 0.48) 42%,
    rgba(30, 20, 16, 0.15) 72%,
    transparent 100%
  );
}
.hero-frame-left,
.hero-frame-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
}
.hero-frame-left {
  left: 0;
  background: linear-gradient(to right, rgba(30, 20, 16, 0.5), transparent);
}
.hero-frame-right {
  right: 0;
  background: linear-gradient(to left, rgba(30, 20, 16, 0.3), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 70px 0;
}
.hero-label {
  font-family: var(--ff-script, 'Dancing Script', cursive);
  font-size: 1.5rem;
  color: var(--gold-light, #E8C767);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white, #FFFFFF);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light, #E8C767);
  text-transform: none;
  font-family: var(--ff-script, 'Dancing Script', cursive);
  font-size: 0.85em;
  letter-spacing: 0;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Redesigned Search Bar */
.hero-search-wrapper {
  max-width: 680px;
}
.hero-search-label {
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light, #E8C767);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-search-label i {
  font-size: 0.7rem;
}
.hero-search {
  background: var(--white, #FFFFFF);
  border-radius: var(--radius-lg, 16px);
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(201, 152, 46, 0.2);
}
.search-field {
  padding: 18px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--cream-dark, #E8DCC8);
  position: relative;
}
.search-field:last-of-type {
  border-right: none;
}
.search-field-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brown-mid, #8B6B4A);
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-field-label i {
  color: var(--gold, #C9982E);
  font-size: 0.7rem;
}
.search-field select,
.search-field input {
  border: none;
  background: transparent;
  color: var(--brown-deep, #3B2314);
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0 0;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.search-field select {
  padding-right: 20px;
}
.search-field select option {
  color: var(--brown-deep, #3B2314);
  background: var(--cream-light, #FAF6EE);
  padding: 12px 16px;
}
.search-field-select {
  position: relative;
}
.search-field-select::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  bottom: 16px;
  font-size: 0.72rem;
  color: var(--gold, #C9982E);
  pointer-events: none;
}
.hero-search .search-btn {
  background: var(--gold, #C9982E);
  color: var(--white, #FFFFFF);
  border: none;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  cursor: pointer;
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
  transition: all var(--transition, 300ms ease);
  min-width: 110px;
  align-self: stretch;
  margin: 4px;
}
.hero-search .search-btn:hover {
  background: var(--amber, #D4943A);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(201, 152, 46, 0.4);
}
.hero-search-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-search-tags span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill, 50px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition, 300ms ease);
  cursor: pointer;
}
.hero-search-tags span:hover {
  background: rgba(201, 152, 46, 0.25);
  border-color: rgba(201, 152, 46, 0.4);
  color: var(--gold-light, #E8C767);
}

/* ===================================================================
   2. TRUST DIVIDER
   =================================================================== */
.divider-tribal {
  background: var(--brown-deep, #3B2314);
  padding: 18px 0;
  overflow: hidden;
}
.divider-tribal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.divider-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream, #F5EDE0);
}
.divider-stat i {
  color: var(--gold, #C9982E);
  font-size: 1.15rem;
}
.divider-stat strong {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.5rem;
  color: var(--gold-light, #E8C767);
  font-weight: 600;
}
.divider-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.divider-sep {
  color: var(--brown-mid, #8B6B4A);
  font-size: 0.7rem;
}

/* ===================================================================
   3. ARTISANAL ABOUT
   =================================================================== */
.artisan-section {
  padding: 110px 0;
  background: var(--cream-light, #FAF6EE);
  position: relative;
}
.artisan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.artisan-image {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(59,35,20,.16));
}
.artisan-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.artisan-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold, #C9982E);
  color: var(--brown-deep, #3B2314);
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.artisan-content h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  font-weight: 600;
  color: var(--brown-deep, #3B2314);
}
.artisan-content p {
  font-size: 1.08rem;
  color: var(--muted, #6B6058);
  line-height: 1.85;
  margin-bottom: 16px;
}
.artisan-accent {
  background: var(--cream-dark, #E8DCC8);
  border-left: 4px solid var(--gold, #C9982E);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
}
.artisan-accent p {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown-mid, #8B6B4A);
  margin: 0;
}

/* ===================================================================
   4. FEATURED DESTINATIONS
   =================================================================== */
.dest-section {
  padding: 110px 0;
  background: var(--brown-deep, #3B2314);
  color: var(--cream, #F5EDE0);
  position: relative;
}
.dest-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23C9982E' opacity='.06'/%3E%3C/svg%3E");
}
.dest-section .section-title {
  color: var(--cream, #F5EDE0);
}
.dest-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.dest-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 152, 46, 0.2);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  transition: all var(--transition, 300ms ease);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: var(--gold, #C9982E);
}
.dest-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.08);
}
.dest-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(30, 20, 16, 0.6), transparent);
}
.dest-card-body {
  padding: 26px;
  text-align: center;
}
.dest-card-body h3 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.6rem;
  color: var(--gold-light, #E8C767);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}
.dest-card-body .dest-region {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.dest-card-body p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}
.dest-tours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 152, 46, 0.15);
  border: 1px solid rgba(201, 152, 46, 0.25);
  padding: 7px 18px;
  border-radius: var(--radius-pill, 50px);
  font-size: 0.82rem;
  color: var(--gold-light, #E8C767);
  font-weight: 600;
}

/* ===================================================================
   5. POPULAR TOURS
   =================================================================== */
.tours-section {
  padding: 110px 0;
  background: var(--cream, #F5EDE0);
  position: relative;
}
.tours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold, #C9982E) 0px,
    var(--gold, #C9982E) 20px,
    var(--brown-mid, #8B6B4A) 20px,
    var(--brown-mid, #8B6B4A) 40px,
    var(--gold, #C9982E) 40px,
    var(--gold, #C9982E) 60px,
    transparent 60px,
    transparent 80px
  );
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tour-card {
  background: var(--white, #FFFFFF);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(59,35,20,.08));
  border: 1px solid var(--cream-dark, #E8DCC8);
  transition: all var(--transition, 300ms ease);
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(59,35,20,.16));
  border-color: var(--gold, #C9982E);
}
.tour-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img img {
  transform: scale(1.06);
}
.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 16px;
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white, #FFFFFF);
  z-index: 2;
}
.tour-badge.popular {
  background: var(--gold, #C9982E);
  color: var(--brown-deep, #3B2314);
}
.tour-badge.luxury {
  background: var(--brown-deep, #3B2314);
}
.tour-badge.adventure {
  background: var(--teal, #2A7B6F);
}
.tour-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(30, 20, 16, 0.78);
  backdrop-filter: blur(6px);
  color: var(--white, #FFFFFF);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  z-index: 2;
}
.tour-price-tag strong {
  color: var(--gold-light, #E8C767);
  font-size: 1.25rem;
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
}
.tour-card-body {
  padding: 26px;
}
.tour-card-body h3 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--brown-deep, #3B2314);
}
.tour-card:hover h3 {
  color: var(--gold, #C9982E);
}
.tour-card-body .tour-excerpt {
  font-size: 1rem;
  color: var(--muted, #6B6058);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-meta {
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark, #E8DCC8);
  font-size: 0.85rem;
  color: var(--muted, #6B6058);
}
.tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-meta i {
  color: var(--gold, #C9982E);
  font-size: 0.76rem;
}
.tour-rating {
  color: var(--gold, #C9982E);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.tour-rating span {
  color: var(--muted, #6B6058);
  font-weight: 400;
}

/* ===================================================================
   6. VIDEO / ABOUT STORY
   =================================================================== */
.video-section {
  padding: 0;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 16, 0.65);
}
.video-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.video-play {
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 152, 46, 0.3);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 0; }
}
.play-btn i {
  font-size: 2.2rem;
  color: var(--white, #FFFFFF);
  margin-left: 6px;
}
.play-btn:hover {
  background: var(--gold, #C9982E);
  border-color: var(--gold, #C9982E);
  transform: scale(1.08);
}
.play-label {
  text-align: center;
  margin-top: 18px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.video-text .section-label {
  color: var(--gold-light, #E8C767);
}
.video-text h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white, #FFFFFF);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}
.video-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}
.video-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
}
.video-stat {
  text-align: center;
}
.video-stat .stat-num {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light, #E8C767);
  line-height: 1;
}
.video-stat .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===================================================================
   7. EXPERIENCE / PRICING / TOUR STYLES
   =================================================================== */
.exp-section {
  padding: 110px 0;
  background: var(--cream-light, #FAF6EE);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.exp-card {
  background: var(--white, #FFFFFF);
  border: 2px solid var(--cream-dark, #E8DCC8);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  transition: all var(--transition, 300ms ease);
  position: relative;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(59,35,20,.16));
}
.exp-card.featured {
  border-color: var(--gold, #C9982E);
}
.exp-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold, #C9982E);
  color: var(--brown-deep, #3B2314);
  padding: 7px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 var(--radius-lg, 16px) 0 var(--radius, 8px);
}
.exp-header {
  padding: 34px 30px 22px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-dark, #E8DCC8), var(--cream, #F5EDE0));
  border-bottom: 2px solid var(--cream-dark, #E8DCC8);
}
.exp-card.featured .exp-header {
  background: linear-gradient(135deg, var(--brown-deep, #3B2314), var(--brown-rich, #5C3D2E));
  border-bottom-color: var(--gold, #C9982E);
}
.exp-card.featured .exp-header h3,
.exp-card.featured .exp-header i {
  color: var(--cream, #F5EDE0);
}
.exp-header i {
  font-size: 2.2rem;
  color: var(--gold, #C9982E);
  margin-bottom: 12px;
  display: block;
}
.exp-header h3 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 600;
}
.exp-price {
  font-size: 0.95rem;
  color: var(--muted, #6B6058);
}
.exp-card.featured .exp-price {
  color: rgba(255, 255, 255, 0.6);
}
.exp-price strong {
  font-size: 2.2rem;
  color: var(--gold, #C9982E);
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-weight: 600;
}
.exp-features {
  padding: 26px 30px;
  list-style: none;
  margin: 0;
}
.exp-features li {
  padding: 8px 0;
  font-size: 0.98rem;
  color: var(--body, #3D3530);
  display: flex;
  align-items: center;
  gap: 10px;
}
.exp-features li i.fa-check {
  color: var(--teal, #2A7B6F);
  font-size: 0.8rem;
}
.exp-features li i.fa-xmark {
  color: var(--cream-dark, #E8DCC8);
  font-size: 0.8rem;
}
.exp-features li.dimmed {
  color: var(--cream-dark, #E8DCC8);
}
.exp-footer {
  padding: 0 30px 30px;
}
.exp-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ===================================================================
   8. PACKAGE INCLUSIONS
   =================================================================== */
.package-section {
  padding: 90px 0;
  background: var(--gold, #C9982E);
  position: relative;
  overflow: hidden;
}
.package-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23fff' stroke-width='.3' opacity='.1'/%3E%3C/svg%3E");
}
.package-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.package-inner h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--brown-deep, #3B2314);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}
.package-inner > p {
  font-size: 1.05rem;
  color: var(--brown-rich, #5C3D2E);
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pkg-item {
  background: var(--white, #FFFFFF);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition, 300ms ease);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(59,35,20,.08));
  border: 2px solid transparent;
}
.pkg-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(59,35,20,.16));
  border-color: var(--brown-deep, #3B2314);
}
.pkg-item i {
  font-size: 2rem;
  color: var(--gold, #C9982E);
  margin-bottom: 14px;
  display: block;
}
.pkg-item h4 {
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--brown-deep, #3B2314);
}
.pkg-item p {
  font-size: 0.92rem;
  color: var(--muted, #6B6058);
  line-height: 1.6;
  margin: 0;
}

/* ===================================================================
   9. CULTURAL CONNECTIONS
   =================================================================== */
.cultural-section {
  padding: 110px 0;
  background: var(--brown-rich, #5C3D2E);
  color: var(--cream, #F5EDE0);
  position: relative;
  overflow: hidden;
}
.cultural-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l40 40L80 0M0 80l40-40 40 40' fill='none' stroke='%23C9982E' stroke-width='.4' opacity='.06'/%3E%3C/svg%3E");
}
.cultural-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cultural-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cultural-images img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius, 8px);
  border: 2px solid rgba(201, 152, 46, 0.2);
  transition: all var(--transition, 300ms ease);
}
.cultural-images img:hover {
  border-color: var(--gold, #C9982E);
  transform: scale(1.03);
}
.cultural-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}
.cultural-content .section-title {
  color: var(--gold-light, #E8C767);
}
.cultural-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 16px;
}
.cultural-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light, #E8C767);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 14px;
  border-bottom: 1px solid rgba(201, 152, 46, 0.3);
  padding-bottom: 4px;
  text-decoration: none;
  transition: all var(--transition, 300ms ease);
}
.cultural-link:hover {
  color: var(--gold, #C9982E);
  border-color: var(--gold, #C9982E);
}

/* ===================================================================
   10. PHOTO GALLERY
   =================================================================== */
.gallery-section {
  padding: 110px 0;
  background: var(--cream-light, #FAF6EE);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 16, 0);
  transition: background var(--transition, 300ms ease);
}
.gallery-item:hover::after {
  background: rgba(30, 20, 16, 0.25);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition, 300ms ease);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  font-size: 1.6rem;
  color: var(--white, #FFFFFF);
  background: rgba(201, 152, 46, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.gallery-item:nth-child(5) {
  grid-row: 1 / 3;
  grid-column: 4 / 5;
}

/* ===================================================================
   11. CLIENT TESTIMONIALS
   =================================================================== */
.testimonials-section {
  padding: 110px 0;
  background: var(--cream, #F5EDE0);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white, #FFFFFF);
  border: 1px solid var(--cream-dark, #E8DCC8);
  border-radius: var(--radius-lg, 16px);
  padding: 34px;
  transition: all var(--transition, 300ms ease);
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold, #C9982E), var(--amber, #D4943A));
  border-radius: var(--radius-lg, 16px) var(--radius-lg, 16px) 0 0;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md, 0 4px 20px rgba(59,35,20,.12));
  border-color: var(--gold, #C9982E);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 3.8rem;
  color: var(--gold-pale, #F5E6B8);
  line-height: 1;
  margin-bottom: 4px;
}
.testimonial-stars {
  color: var(--gold, #C9982E);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--body, #3D3530);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark, #E8DCC8);
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-mid, #8B6B4A), var(--gold, #C9982E));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #FFFFFF);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-deep, #3B2314);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--muted, #6B6058);
}

/* ===================================================================
   12. MEET OUR GUIDES
   =================================================================== */
.guides-section {
  padding: 110px 0;
  background: var(--cream-light, #FAF6EE);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.guide-card {
  text-align: center;
  transition: all var(--transition, 300ms ease);
}
.guide-card:hover {
  transform: translateY(-6px);
}
.guide-photo {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 4px solid var(--gold-pale, #F5E6B8);
  transition: border-color var(--transition, 300ms ease);
  background: linear-gradient(135deg, var(--brown-mid, #8B6B4A), var(--brown-warm, #A0825C));
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-card:hover .guide-photo {
  border-color: var(--gold, #C9982E);
}
.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-photo i {
  font-size: 3.2rem;
  color: var(--cream-dark, #E8DCC8);
}
.guide-card h3 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--brown-deep, #3B2314);
}
.guide-role {
  font-family: var(--ff-script, 'Dancing Script', cursive);
  font-size: 1.05rem;
  color: var(--gold, #C9982E);
  margin-bottom: 10px;
}
.guide-card p {
  font-size: 0.92rem;
  color: var(--muted, #6B6058);
  line-height: 1.65;
  max-width: 210px;
  margin: 0 auto;
}

/* ===================================================================
   13. BLOG PREVIEW
   =================================================================== */
.blog-section {
  padding: 110px 0;
  background: var(--cream, #F5EDE0);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white, #FFFFFF);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--cream-dark, #E8DCC8);
  transition: all var(--transition, 300ms ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(59,35,20,.16));
  border-color: var(--gold, #C9982E);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold, #C9982E);
  color: var(--brown-deep, #3B2314);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.blog-card-body {
  padding: 26px;
}
.blog-date {
  font-size: 0.82rem;
  color: var(--muted, #6B6058);
  margin-bottom: 10px;
  display: block;
}
.blog-date i {
  color: var(--gold, #C9982E);
  margin-right: 5px;
}
.blog-card-body h3 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--brown-deep, #3B2314);
}
.blog-card:hover h3 {
  color: var(--gold, #C9982E);
}
.blog-card-body p {
  font-size: 1rem;
  color: var(--muted, #6B6058);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold, #C9982E);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: gap var(--transition, 300ms ease);
}
.blog-card:hover .blog-read {
  gap: 12px;
}

/* ===================================================================
   14. NEWSLETTER
   =================================================================== */
.newsletter-section {
  padding: 72px 0;
  background: var(--cream-dark, #E8DCC8);
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.newsletter-text h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 2rem;
  color: var(--brown-deep, #3B2314);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}
.newsletter-text p {
  font-size: 1.02rem;
  color: var(--brown-mid, #8B6B4A);
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 440px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border: 2px solid var(--brown-deep, #3B2314);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: 0.95rem;
  background: var(--white, #FFFFFF);
  color: var(--body, #3D3530);
}
.newsletter-form input:focus {
  outline: none;
}
.newsletter-form button {
  padding: 16px 30px;
  background: var(--brown-deep, #3B2314);
  color: var(--cream, #F5EDE0);
  border: 2px solid var(--brown-deep, #3B2314);
  border-radius: 0 4px 4px 0;
  font-family: var(--ff-heading, 'Marcellus', Georgia, serif);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition, 300ms ease);
}
.newsletter-form button:hover {
  background: var(--brown-rich, #5C3D2E);
}

/* ===================================================================
   15. CTA BANNER
   =================================================================== */
.cta-section {
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 16, 0.82);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content .section-label {
  color: var(--gold-light, #E8C767);
}
.cta-content h2 {
  font-family: var(--ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white, #FFFFFF);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-weight: 600;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================================
   RESPONSIVE OVERRIDES
   =================================================================== */
@media (max-width: 1024px) {
  .artisan-grid,
  .cultural-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex: auto;
    width: 100%;
    max-width: 440px;
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: auto;
    grid-column: auto;
  }
  .hero-search {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tours-section .container,
  .dest-section .container,
  .blog-section .container,
  .testimonials-section .container,
  .guides-section .container {
    padding: 0 16px;
  }
  .tours-grid,
  .blog-grid,
  .testimonials-grid,
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-search {
    grid-template-columns: 1fr;
  }
  .search-field {
    border-right: none !important;
    border-bottom: 1px solid var(--cream-dark, #E8DCC8);
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    border-radius: 4px;
    border-right: 2px solid var(--brown-deep, #3B2314);
  }
  .newsletter-form button {
    border-radius: 4px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cultural-images {
    grid-template-columns: 1fr;
  }
  .cultural-images img:first-child {
    grid-column: auto;
  }
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: auto;
    grid-column: auto;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-stats {
    justify-content: center;
  }
  .artisan-grid {
    gap: 30px;
  }
  .section-header {
    margin-bottom: 32px;
    padding: 0 12px;
  }
}
