/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Reset and CSS Custom Properties */
:root {
  /* Color Palette */
  --primary: #D4AF37;       /* Lanna Gold */
  --primary-hover: #B89320;
  --secondary: #1C352D;     /* Deep Emerald Green */
  --secondary-light: #2A4D42;
  --bg-dark: #0B130F;        /* Deep Green-Black for high-contrast dark sections */
  --bg-light: #F4F6F5;       /* Warm light grey-green */
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;      /* Slate 800 */
  --text-light: #F8FAF8;     /* Off-white */
  --text-muted: #64748B;
  
  /* Borders and Shadow */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(28, 53, 45, 0.1), 0 10px 10px -5px rgba(28, 53, 45, 0.04);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Max width */
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-light);
  border: 2px solid var(--bg-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Global Layout & Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-dark .section-header p {
  color: #94A3B8;
}

.home-intro-section {
  padding-bottom: 3rem;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.wise-payment-button {
  background-color: #9FE870;
  color: #123300;
  border: 1px solid rgba(18, 51, 0, 0.16);
  box-shadow: 0 8px 18px rgba(18, 51, 0, 0.12);
}

.wise-payment-button:hover {
  background-color: #8FE05F;
  color: #123300;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(18, 51, 0, 0.2);
}

.wise-payment-logo {
  width: 78px;
  height: auto;
  display: block;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 53, 45, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 0.95rem 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(11, 19, 15, 0.08);
  border-bottom: 1px solid rgba(28, 53, 45, 0.08);
}

header.sticky {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 0.65rem 0;
  box-shadow: 0 10px 30px rgba(11, 19, 15, 0.12);
  border-bottom: 1px solid rgba(28, 53, 45, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.brand-logo img {
  width: clamp(188px, 18vw, 250px);
  height: auto;
  max-height: 52px;
  border-radius: 0;
  border: 0;
  object-fit: contain;
}

header.sticky .brand-logo {
  padding: 0;
  box-shadow: none;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-light);
  line-height: 1.15;
}

.logo-text span {
  color: var(--primary);
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav-links a {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--secondary);
  z-index: 1001;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.75rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-nav-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.mobile-nav-contact a {
  color: var(--primary);
}

.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  border-top: 2px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  line-height: 1.7;
}

.footer-about .logo {
  margin-bottom: 1rem;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 1.25rem;
  box-shadow: none;
}

.footer-brand img {
  width: 230px;
  max-height: none;
}

.mobile-brand img {
  width: 210px;
  max-height: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}

.site-photo-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.site-photo-rail figure {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.site-photo-rail img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transform: scale(1.02);
}

.site-photo-rail figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.site-photo-rail figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 15, 0.74), rgba(11, 19, 15, 0.04) 55%);
  z-index: 1;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: zoom-out-hero 20s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 19, 15, 0.92) 20%, rgba(28, 53, 45, 0.6) 80%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 750px;
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #CBD5E1;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.home-visual-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.4fr);
  gap: 2rem;
  align-items: stretch;
  margin: -0.5rem 0 3rem;
}

.home-visual-copy {
  background: var(--secondary);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}

.home-visual-copy h3 {
  color: var(--text-light);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
}

.home-visual-copy p {
  color: #D9E3DD;
  font-size: 1.02rem;
  line-height: 1.75;
}

.route-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.route-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 600;
}

.route-highlights i {
  color: var(--primary);
}

.home-photo-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 1rem;
}

.home-photo-mosaic figure,
.image-ribbon figure,
.tour-destination-strip figure,
.fleet-showcase figure,
.contact-photo-card,
.tour-context-photos figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  background: var(--secondary);
}

.home-photo-mosaic .mosaic-large {
  grid-row: span 2;
}

.home-photo-mosaic img,
.image-ribbon img,
.tour-destination-strip img,
.fleet-showcase img,
.contact-photo-card img,
.tour-context-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-photo-mosaic figcaption,
.image-ribbon figcaption,
.tour-context-photos figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.home-photo-mosaic figure::after,
.image-ribbon figure::after,
.tour-context-photos figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 15, 0.72), rgba(11, 19, 15, 0.04) 58%);
  z-index: 1;
}

.image-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background-color: var(--secondary);
  gap: 1px;
}

.image-ribbon figure {
  border-radius: 0;
  min-height: 300px;
  box-shadow: none;
}

.image-ribbon img {
  min-height: 300px;
}

.image-ribbon-home {
  border-top: 1px solid rgba(28, 53, 45, 0.12);
  border-bottom: 1px solid rgba(28, 53, 45, 0.12);
}

/* Inner Page Hero (Subheader) */
.inner-hero {
  position: relative;
  padding: 10rem 0 6rem 0;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 15, 0.95), rgba(28, 53, 45, 0.8));
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  color: var(--text-light);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.inner-hero p {
  color: var(--primary);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(28, 53, 45, 0.05);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Tour Cards Grid & Filter UI */
.tours-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tour-destination-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: -1.75rem 0 3.25rem;
}

.tour-destination-strip figure {
  min-height: 270px;
}

.tour-destination-strip img {
  min-height: 270px;
}

.tour-destination-strip figure::after,
.fleet-showcase figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 15, 0.82), rgba(11, 19, 15, 0.06) 58%);
  z-index: 1;
}

.tour-destination-strip figcaption,
.fleet-showcase figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--text-light);
  z-index: 2;
}

.tour-destination-strip strong,
.fleet-showcase strong {
  display: block;
  color: var(--text-light);
  font-family: var(--font-headings);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.tour-destination-strip span,
.fleet-showcase span {
  display: block;
  color: #D9E3DD;
  font-size: 0.88rem;
  line-height: 1.45;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--secondary);
  background-color: transparent;
  color: var(--secondary);
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--secondary);
  color: var(--text-light);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.tour-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28, 53, 45, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.2);
}

.tour-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #E2E8F0;
}

.tour-img-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.tour-img-link:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -5px;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  z-index: 2;
  pointer-events: none;
}

.tour-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tour-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid #F1F5F9;
  padding-top: 1.25rem;
  margin-top: auto;
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

.tour-duration i {
  color: var(--primary);
}

.tour-link {
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tour-link:hover {
  color: var(--secondary);
}

/* Drivers Grid */
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.driver-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28, 53, 45, 0.05);
  transition: var(--transition-normal);
}

.driver-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.driver-img-wrapper {
  aspect-ratio: 1;
  background-color: #E2E8F0;
  overflow: hidden;
  position: relative;
}

.driver-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.driver-card:hover img {
  transform: scale(1.05);
}

.driver-info {
  padding: 2.25rem;
}

.driver-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.driver-role {
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.driver-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.home-cta-section {
  position: relative;
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(28, 53, 45, 0.96), rgba(11, 19, 15, 0.9)),
    url('/assets/img/tours/chiang-mai-private-driver-guide-45.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-media-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.7fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cta-mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* Tabs & Pricing Layout */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: -1.75rem 0 3rem;
}

.fleet-showcase figure {
  min-height: 310px;
}

.fleet-showcase img {
  min-height: 310px;
}

.pricing-search {
  max-width: 450px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.pricing-search input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: 30px;
  border: 1.5px solid rgba(28, 53, 45, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: #FFF;
}

.pricing-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.pricing-search i {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.table-wrapper {
  overflow-x: auto;
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28, 53, 45, 0.05);
  margin-bottom: 2.5rem;
}

.table-container {
  display: none;
}

.table-container.active {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

th {
  background-color: var(--secondary);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
}

td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1.5px solid #F1F5F9;
  font-size: 0.95rem;
  color: var(--text-dark);
}

tr:last-child td {
  border-bottom: none;
}

tbody tr:nth-child(even) {
  background-color: #F8FAF9;
}

tbody tr {
  transition: var(--transition-fast);
}

tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.04);
}

.price-notes {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 3.5rem;
  border-left: 4px solid var(--primary);
}

.price-notes h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.price-notes ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-notes li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Gallery Masonry Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '\f002'; /* FontAwesome Magnifying Glass */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: var(--text-light);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 3;
}

.gallery-item.row-span-2 {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 53, 45, 0.8);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 19, 15, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 2px solid var(--primary);
}

.lightbox-caption {
  color: var(--text-light);
  margin-top: 1rem;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* Contact Details & Booking Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-photo-card {
  min-height: 290px;
  margin-bottom: 0.25rem;
}

.contact-photo-card img {
  min-height: 290px;
}

.contact-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 15, 0.82), rgba(11, 19, 15, 0.1) 58%);
  z-index: 1;
}

.contact-photo-card figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #D9E3DD;
  z-index: 2;
}

.contact-photo-card strong {
  display: block;
  color: var(--text-light);
  font-family: var(--font-headings);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.contact-info-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid rgba(28, 53, 45, 0.05);
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 48px;
  height: 48px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-info-card a {
  color: var(--secondary);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.booking-form-wrapper {
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28, 53, 45, 0.05);
}

.booking-form-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.booking-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(28, 53, 45, 0.15);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  display: block;
}

.form-status-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
}

.form-status-info {
  background: #F8FAFC;
  border: 1px solid rgba(28, 53, 45, 0.15);
  color: var(--text-muted);
}

/* Tour Details Page Specific Styles */
.tour-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.tour-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(28, 53, 45, 0.1);
}

.tour-details-main h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-details-main h2 i {
  color: var(--primary);
  font-size: 1.4rem;
}

.tour-details-main > p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.itinerary-timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 7px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: var(--primary);
}

.timeline-day {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-day:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 4px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 2;
  transition: var(--transition-fast);
}

.timeline-day:hover .timeline-marker {
  background-color: var(--secondary);
}

.timeline-day h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.timeline-day h4 span {
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

.timeline-day p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-items li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.timeline-items li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.tour-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
  background-color: #FFF;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.meta-column h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.meta-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meta-column li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.inc-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 700;
}

.exc-col li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
}

.tour-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tour-context-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 4rem;
}

.tour-context-photos figure {
  min-height: 260px;
}

.tour-context-photos img {
  min-height: 260px;
}

.sidebar-card {
  background-color: #FFF;
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(28, 53, 45, 0.05);
}

.sidebar-booking h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.sidebar-booking p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sidebar-booking .btn {
  width: 100%;
}

.sidebar-help {
  background-color: var(--secondary);
  color: var(--text-light);
  border-left: 4px solid var(--primary);
}

.sidebar-help h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.sidebar-help ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-help li {
  font-size: 0.95rem;
}

.sidebar-help a {
  color: var(--primary);
  font-weight: 600;
}

/* Animations */
@keyframes zoom-out-hero {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Scroll Fade Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Split Layout for Inner Pages */
.inner-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Policies Section */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.policy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.policy-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
}

.policy-card h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text-light);
}

.policy-card-content {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-card-content p {
  margin: 0 0 1rem 0;
}

.policy-card-content p:last-child {
  margin-bottom: 0;
}

.policy-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Responsive Breakpoints */
@media only screen and (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }

  .brand-logo img {
    width: 205px;
  }

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

  .home-visual-panel,
  .cta-media-layout {
    grid-template-columns: 1fr;
  }

  .tour-destination-strip,
  .site-photo-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .tour-details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .tour-hero-img {
    max-height: 380px;
  }

  .tour-context-photos {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
  
  .brand-logo {
    padding: 0;
  }

  .brand-logo img {
    width: 185px;
    max-height: 42px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-text span {
    font-size: 0.8rem;
  }
  
  .nav-links {
    display: none;
  }

  .mobile-nav {
    width: min(330px, 88vw);
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .home-photo-mosaic,
  .image-ribbon,
  .fleet-showcase,
  .tour-context-photos {
    grid-template-columns: 1fr;
  }

  .home-photo-mosaic {
    grid-template-rows: none;
  }

  .home-photo-mosaic .mosaic-large {
    grid-row: auto;
  }

  .home-photo-mosaic figure,
  .image-ribbon figure,
  .fleet-showcase figure,
  .tour-context-photos figure {
    min-height: 260px;
  }

  .home-visual-copy {
    min-height: auto;
    padding: 2rem;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .drivers-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .booking-form-wrapper {
    padding: 2rem;
  }

  .inner-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .policies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-logo img {
    width: 165px;
  }

  .mobile-brand img,
  .footer-brand img {
    width: 205px;
  }

  .tour-destination-strip,
  .site-photo-rail {
    grid-template-columns: 1fr;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .tour-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
