/* ==========================================================================
   Kalutara Tuk-Tuk & Van Tours — Modern, Clean & Joyful Stylesheet
   Designed with Sri Lankan Hospitality, Warmth & Mobile-First Performance
   ========================================================================== */

:root {
  /* Color Palette: Tropical Sri Lankan Theme */
  --primary: #0F5132;        /* Lush Ceylon Palm Green */
  --primary-light: #198754;  /* Vibrant Green */
  --primary-dark: #08331e;   /* Deep Forest Green */
  --ocean: #0077B6;          /* Tropical Indian Ocean Blue */
  --ocean-light: #0096C7;    /* Clear Lagoon Blue */
  --accent: #E76F51;         /* Warm Sunset Coral / Amber */
  --accent-gold: #F4A261;    /* Golden Sun / Ceylon Tea Gold */
  
  --bg: #FFFFFF;             /* Pure White */
  --bg-sand: #FAF8F5;        /* Soft Tropical Sand */
  --bg-card: #FFFFFF;        /* Crisp Card Background */
  --border: #E5E7EB;         /* Subtle Border */
  
  --text-main: #1E293B;      /* Deep Slate for high contrast */
  --text-muted: #64748B;     /* Muted Grey */
  --text-light: #94A3B8;     /* Light Slate */
  
  --whatsapp: #25D366;       /* Official WhatsApp Green */
  --whatsapp-hover: #1EBE5D;
  
  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 81, 50, 0.12);
  --shadow-float: 0 10px 25px rgba(37, 211, 102, 0.35);
  
  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Layout */
  --container-width: 1200px;
  --nav-height: 76px;
}

/* ==========================================================================
   CSS Reset & Base Rules
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background-color: var(--bg-sand);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.section {
  padding-block: clamp(50px, 8vw, 90px);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 81, 50, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.badge-pill.light {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 20px rgba(15, 81, 50, 0.35);
  color: #FFFFFF;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: var(--shadow-float);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--primary-dark);
  border-color: #FFFFFF;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-icon-img {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: block;
}

.brand-logo:hover .brand-icon-img {
  transform: rotate(-3deg) scale(1.06);
  box-shadow: 0 6px 18px rgba(15, 81, 50, 0.28);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language Switcher */
.lang-toggle-group {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  padding: 3px 4px;
  border-radius: var(--radius-pill);
  border: 1px solid #E2E8F0;
  gap: 3px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  padding: 0;
  font-family: var(--font-heading);
  background: transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  border: none;
  cursor: pointer;
}

.lang-btn:hover {
  background: rgba(15, 81, 50, 0.08);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 81, 50, 0.16);
  transform: scale(1.08);
}

.lang-flag {
  font-size: 1.18rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.nav-hamburger:hover, .nav-hamburger:active {
  background: rgba(15, 81, 50, 0.08);
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(92vh - var(--nav-height));
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(8, 42, 27, 0.76) 0%, rgba(8, 42, 27, 0.50) 48%, rgba(0, 50, 75, 0.36) 100%),
              url('assets/sri-lanka-panoramic-hero-bg.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding-block: clamp(60px, 10vw, 120px);
  overflow: hidden;
}

.hero-content {
  max-width: 820px;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 720px;
}

.hero-cta-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.trust-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
  background: #FFFFFF;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   About / Driver Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
}

.floating-flag-img {
  width: 48px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.floating-title {
  font-weight: 700;
  font-size: 1rem;
}

.floating-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text-content h2 {
  margin-bottom: 18px;
}

.about-p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.feature-box {
  background: #FFFFFF;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.feature-box:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-box h3,
.feature-box h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Fleet / Vehicles Section
   ========================================================================== */
.fleet-section {
  background: #FFFFFF;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fleet-card {
  background: var(--bg-sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.fleet-img-wrap {
  position: relative;
  height: 240px;
  background: radial-gradient(circle at center, #FFFFFF 45%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
  transform: translateY(2px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.fleet-tuktuk-isolated {
  max-width: 70%;
  max-height: 85%;
}

.fleet-van-isolated {
  max-width: 85%;
  max-height: 80%;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.18));
}

.fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fleet-pax {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.fleet-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.fleet-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.fleet-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.fleet-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.fleet-features-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Tours Section
   ========================================================================== */
.tour-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 81, 50, 0.3);
}

.tour-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-wrap img {
  transform: scale(1.06);
}

.tour-duration-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.75);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.tour-vehicle-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--ocean);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.tour-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.tour-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

.tour-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-grow: 1;
}

.tour-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-main);
}

.tour-highlights-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.tour-card-action {
  margin-top: auto;
}

.tour-card-action .btn {
  width: 100%;
}

/* Custom Tour Banner */
.custom-tour-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--primary-dark), var(--ocean));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.custom-tour-text {
  max-width: 600px;
}

.custom-tour-text h3 {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.custom-tour-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(15, 81, 50, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   Pickup Hotels Marquee / Grid
   ========================================================================== */
.hotels-section {
  background: #FFFFFF;
  padding-block: clamp(40px, 6vw, 60px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hotels-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hotel-pill {
  background: var(--bg-sand);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  color: #FFFFFF;
  padding: 20px 16px 14px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.review-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--ocean));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-country {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: #FFFFFF;
}

.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-sand);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Contact / Inquiry Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 60px);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(15, 81, 50, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  overflow: hidden;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.contact-card.whatsapp-card .contact-icon {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
}

.contact-details h3,
.contact-details h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.contact-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-form-wrap {
  background: #FFFFFF;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-sand);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--primary-dark);
  color: #FFFFFF;
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-icon-img {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: block;
}

.footer-brand .brand-name {
  color: #FFFFFF;
}

.footer-brand .brand-tag {
  color: var(--accent-gold);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h3,
.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after,
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-float);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse-green 2.5s infinite;
}

.floating-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-icon-pulse {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 998;
  gap: 12px;
}

.mobile-bottom-bar .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible !important;
  }

  .nav-wrap {
    width: 100%;
    gap: 8px;
    padding-inline: 0;
  }

  .brand-logo {
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-icon-img {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .brand-name {
    font-size: 1.15rem;
    white-space: nowrap;
  }

  .brand-tag {
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .lang-toggle-group {
    padding: 2px 3px;
    gap: 2px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
  }

  .lang-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
  }

  .lang-flag {
    font-size: 1.05rem;
  }

  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 16px 20px 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    gap: 4px;
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--primary);
    z-index: 9999;
    animation: menuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-links.open a {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F1F5F9;
    transition: all 0.2s ease;
  }

  .nav-links.open a:hover,
  .nav-links.open a.active {
    background: rgba(15, 81, 50, 0.08);
    color: var(--primary);
    padding-left: 18px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .fleet-grid,
  .contact-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .about-floating-card {
    position: static;
    margin-top: 16px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .gallery-item {
    height: 210px;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Hide floating button on mobile because bottom action bar handles WhatsApp/Calls */
  .floating-whatsapp {
    display: none !important;
  }
  
  .fleet-img-wrap {
    height: 200px;
    padding: 14px 18px;
  }

  .fleet-tuktuk-isolated {
    max-width: 70%;
    max-height: 85%;
  }

  .fleet-van-isolated {
    max-width: 85%;
    max-height: 80%;
  }

  .mobile-bottom-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 64px;
  }
}

/* Twin Guides Showcase */
.guides-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-block: 22px 26px;
}

.guide-profile-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(15, 81, 50, 0.05);
  transition: all 0.3s ease;
}

.guide-profile-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(15, 81, 50, 0.1);
}

.guide-avatar-wrap {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--primary);
  box-shadow: 0 4px 10px rgba(15, 81, 50, 0.15);
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.3s ease;
}

.guide-profile-card:hover .guide-avatar-photo {
  transform: scale(1.08);
}

.father-photo-slot {
  object-position: center;
  background: #082A1B;
}

.guide-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.guide-lang-pill {
  display: inline-block;
  background: rgba(15, 81, 50, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-block: 2px 4px;
}

.guide-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 640px) {
  .hero-section {
    background: linear-gradient(to bottom, rgba(8, 42, 27, 0.82) 0%, rgba(8, 42, 27, 0.65) 55%, rgba(0, 40, 60, 0.48) 100%),
                url('assets/sri-lanka-panoramic-hero-bg.jpg') center/cover no-repeat;
  }

  .guides-team-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-cta-wrap {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-cta-wrap .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }

  .trust-item {
    font-size: 0.88rem;
  }

  .badge-pill {
    font-size: 0.76rem;
    padding: 5px 12px;
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .section {
    padding-block: clamp(38px, 7vw, 60px);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info-card,
  .contact-form-wrap {
    padding: 20px 16px;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom in mobile Safari */
  }
}

@media (max-width: 480px) {
  .brand-icon-img {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tag {
    display: none; /* Prevents horizontal overflow on phones */
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-toggle-group {
    padding: 2px;
    gap: 2px;
  }

  .lang-btn {
    width: 27px;
    height: 27px;
    min-width: 27px;
    padding: 0;
  }

  .lang-flag {
    font-size: 0.95rem;
  }

  .nav-hamburger {
    padding: 4px;
  }

  .nav-hamburger span {
    width: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.76rem;
  }

  .tour-filters {
    gap: 6px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .guide-profile-card {
    padding: 14px 14px;
    gap: 12px;
  }

  .guide-avatar-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    height: 230px;
  }
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   Quick Facts & Contextual Links (AI & SEO Optimizations)
   ========================================================================== */
.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--primary-light);
}

.about-quick-facts {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(15, 81, 50, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-left-width: 4px;
}

.quick-facts-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.qf-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  flex-wrap: wrap;
}

.qf-label {
  font-weight: 700;
  color: var(--text-main);
  min-width: 140px;
  flex-shrink: 0;
}

.qf-val {
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .quick-facts-grid {
    grid-template-columns: 1fr;
  }
}
