/*
Theme Name: Travels House Jodhpur
Theme URI: https://jodhpur-ride-luxury.lovable.app
Description: A complete WordPress theme replicating the Travels House Jodhpur website - Premium taxi and tour services in Jodhpur, Rajasthan.
Author: Travels House Jodhpur
Author URI: https://jodhpur-ride-luxury.lovable.app
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travels-house-jodhpur
Tags: travel, taxi, tours, rajasthan, jodhpur, custom-menu, featured-images
*/

/* ===== CSS Variables ===== */
:root {
  /* Deep forest green / near-black for hero and footer */
  --background: hsl(45, 23%, 93%);
  --foreground: hsl(150, 30%, 8%);

  --card: hsl(45, 23%, 96%);
  --card-foreground: hsl(150, 30%, 8%);

  /* Deep forest green */
  --primary: hsl(150, 35%, 8%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Lime accent */
  --secondary: hsl(80, 100%, 62%);
  --secondary-foreground: hsl(150, 35%, 8%);

  --muted: hsl(45, 15%, 88%);
  --muted-foreground: hsl(150, 10%, 40%);

  --accent: hsl(80, 100%, 62%);
  --accent-foreground: hsl(150, 35%, 8%);

  --border: hsl(45, 15%, 85%);

  --radius: 0.75rem;

  /* Custom colors */
  --hero-bg: hsl(150, 35%, 8%);
  --hero-bg-lighter: hsl(152, 32%, 12%);
  --cream: hsl(45, 23%, 93%);
  --cream-dark: hsl(45, 20%, 88%);
  --lime: hsl(80, 100%, 42%);
  --lime-hover: hsl(80, 100%, 38%);
  --charcoal: hsl(150, 30%, 8%);
  --charcoal-muted: hsl(150, 15%, 35%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(150, 35%, 8%) 0%, hsl(152, 32%, 14%) 100%);
  --gradient-lime: linear-gradient(135deg, hsl(80, 100%, 42%) 0%, hsl(85, 100%, 38%) 100%);

  /* Shadows */
  --shadow-card: 0 4px 20px -4px hsla(150, 30%, 8%, 0.08);
  --shadow-card-hover: 0 12px 40px -8px hsla(150, 30%, 8%, 0.15);
  --shadow-button: 0 4px 16px -2px hsla(80, 100%, 50%, 0.4);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Hero Section ===== */
.hero-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, hsla(80, 100%, 62%, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, hsla(80, 100%, 62%, 0.05) 0%, transparent 40%);
  opacity: 0.5;
}

/* ===== Section Backgrounds ===== */
.section-light {
  background-color: var(--cream);
}

.section-cream-dark {
  background-color: var(--cream-dark);
}

/* ===== Buttons ===== */
.btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--lime);
  color: var(--charcoal);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
}

.btn-lime:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px -4px hsla(80, 100%, 50%, 0.5);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--primary-foreground);
}

/* ===== Badge ===== */
.badge-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(80, 100%, 42%, 0.15);
  color: var(--lime);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Text Gradient ===== */
.text-gradient-lime {
  background: var(--gradient-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Card Styles ===== */
.card-premium {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.card-premium:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* ===== Navigation ===== */
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  /* Reset button defaults for dropdown triggers */
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: white;
}

.nav-link:focus {
  outline: none;
}

/* ===== Header ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
}

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

.site-logo img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 4rem;
  }
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 18rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  transition: background 0.2s ease;
}

.dropdown-link:hover {
  background: var(--cream);
}

.dropdown-link-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.dropdown-link-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dropdown-footer {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.dropdown-footer a {
  color: var(--lime);
  font-weight: 600;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  color: var(--primary-foreground);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: rgba(11, 26, 18, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.mobile-nav-section-title {
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.5rem 0;
}

.mobile-nav-items {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 0;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Hero Home ===== */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 4rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--lime);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn-lime,
.hero-buttons .btn-outline-light {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Wave decoration */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ===== Page Hero ===== */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.page-hero-inner {
  text-align: center;
}

.page-hero .badge-service {
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 3.75rem;
  }
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title-light {
  color: var(--primary-foreground);
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Tours Grid ===== */
.tours-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tours-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Tour Card ===== */
.tour-card {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.tour-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tour-card-image {
    height: 18rem;
  }
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tour-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 18, 0.7), transparent);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(11, 26, 18, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  z-index: 1;
}

.tour-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--lime);
}

.tour-type-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime);
  z-index: 1;
}

.tour-price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--lime);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--charcoal);
  z-index: 1;
}

.tour-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .tour-card-title {
    font-size: 1.5rem;
  }
}

.tour-card:hover .tour-card-title {
  color: var(--lime);
}

.tour-card-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.tour-card-location svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.tour-card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.highlight-tag {
  font-size: 0.75rem;
  background: var(--muted);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  color: var(--muted-foreground);
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tour-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.tour-card-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--lime);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.tour-card:hover .tour-card-link {
  gap: 0.5rem;
}

.tour-card-link svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Vehicle Card ===== */
.vehicle-card {
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.vehicle-card-image {
  height: 12rem;
  overflow: hidden;
}

.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.vehicle-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--lime);
  color: var(--charcoal);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.vehicle-card-content {
  padding: 1.25rem;
}

.vehicle-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.vehicle-card-title {
  font-size: 1.25rem;
  color: var(--charcoal);
}

.vehicle-card-price {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.vehicle-card-price.on-request {
  background: rgba(11, 26, 18, 0.1);
  color: var(--charcoal);
}

.vehicle-card-price.fixed {
  background: rgba(122, 204, 0, 0.1);
  color: var(--charcoal);
}

.vehicle-card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vehicle-card-features {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.vehicle-card-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.vehicle-card-features svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Why Choose Us ===== */
.reason-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.reason-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(122, 204, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.reason-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--lime);
}

.reason-title {
  font-size: 1.25rem;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.reason-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===== Services Section ===== */
.service-images {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .service-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-image-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 18rem;
}

@media (min-width: 768px) {
  .service-image-card {
    height: 20rem;
  }
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 18, 0.8) 0%, rgba(11, 26, 18, 0.2) 50%, transparent 100%);
}

.service-image-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
}

.service-image-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.service-image-title {
  font-size: 1.5rem;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .service-image-title {
    font-size: 1.875rem;
  }
}

.price-anchor {
  text-align: center;
  margin-bottom: 4rem;
}

.price-anchor-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.price-anchor-value {
  font-size: 3rem;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .price-anchor-value {
    font-size: 3.75rem;
  }
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  text-align: center;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(122, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--lime);
}

.service-title {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: rgba(122, 204, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--lime);
  color: var(--lime);
}

.testimonial-text {
  color: rgba(11, 26, 18, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: var(--lime);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 500;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Customer Photos */
.customer-photos-title {
  font-size: 1.5rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .customer-photos-title {
    font-size: 1.875rem;
  }
}

.customer-photos-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .customer-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.customer-photo {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.customer-photo img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .customer-photo img {
    height: 20rem;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--gradient-hero);
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.footer-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  opacity: 0.2;
  display: none;
}

@media (min-width: 1024px) {
  .footer-image {
    display: block;
  }
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-bg), rgba(11, 26, 18, 0.8), transparent);
}

.footer-cta {
  text-align: center;
  margin-bottom: 5rem;
}

.footer-cta-title {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-cta-title {
    font-size: 3.75rem;
  }
}

.footer-content {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.footer-brand-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--lime);
  color: var(--charcoal);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-heading {
  color: var(--primary-foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--lime);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-link {
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--lime);
}

.footer-contact-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    gap: 1rem;
    text-align: left;
  }
}

.footer-copyright-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright-separator {
  display: none;
  color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .footer-copyright-separator {
    display: inline;
  }
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--primary-foreground);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-foreground);
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
  fill: white;
}

/* ===== Tour Guide Page ===== */
.guide-features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .guide-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guide-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-feature-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.guide-feature-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.guide-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(122, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.guide-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--lime);
}

.guide-feature-title {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.guide-feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.guide-services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .guide-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guide-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-service-card {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.guide-service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-service-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.guide-service-duration svg {
  width: 1rem;
  height: 1rem;
  color: var(--lime);
}

.guide-service-title {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.guide-service-card:hover .guide-service-title {
  color: var(--lime);
}

.guide-service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.guide-cta-box {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guide-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .guide-cta-buttons {
    flex-direction: row;
  }
}

/* ===== Tour Detail Page ===== */
.tour-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tour-detail-price-badge {
  background: rgba(122, 204, 0, 0.2);
  color: var(--lime);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary-foreground);
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

.tour-detail-content {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .tour-detail-content {
    grid-template-columns: 2fr 1fr;
  }
}

.tour-section {
  margin-bottom: 3rem;
}

.tour-section-title {
  font-size: 1.875rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.tour-section-text {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.highlights-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
}

.highlight-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--lime);
  flex-shrink: 0;
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itinerary-item {
  display: flex;
  gap: 1rem;
}

.itinerary-day-number {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--charcoal);
}

.itinerary-content h4 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.itinerary-content p {
  color: var(--muted-foreground);
}

.inclusions-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.inclusion-list,
.exclusion-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inclusion-item,
.exclusion-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
}

.inclusion-item svg {
  width: 1rem;
  height: 1rem;
  color: #16a34a;
}

.exclusion-item svg {
  width: 1rem;
  height: 1rem;
  color: #dc2626;
}

/* Sidebar */
.tour-sidebar {
  position: sticky;
  top: 6rem;
}

.tour-sidebar-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.tour-sidebar-price {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.tour-sidebar-note {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.tour-sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== 404 Page ===== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
}

.page-404-content {
  text-align: center;
}

.page-404-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-404-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.page-404-link {
  color: var(--primary);
  text-decoration: underline;
}

.page-404-link:hover {
  color: rgba(11, 26, 18, 0.8);
}

/* ===== Filter Bar ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.filter-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--card);
  color: var(--muted-foreground);
}

.filter-btn:hover {
  background: var(--muted);
}

.filter-btn.active {
  background: var(--charcoal);
  color: var(--primary-foreground);
}

/* ===== Rating Stars ===== */
.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--lime);
  color: var(--lime);
}

/* ===== Section Padding ===== */
.section-padding {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 8rem 0;
  }
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

/* ===== Responsive Visibility ===== */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.hide-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}
