/*
Theme Name: Travels to Sri Lanka
Theme URI: https://travelstosrilanka.com/
Author: Antigravity AI
Description: A premium, highly interactive and elegant WordPress theme built to attract international tourists to Sri Lanka, featuring custom layouts, interactive maps, and planners.
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travels-to-sri-lanka
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Brand Colors */
  --color-primary: #1d98ed;        /* Ocean Blue */
  --color-primary-rgb: 29, 152, 237;
  --color-secondary: #ff8210;      /* Sunny Orange */
  --color-secondary-rgb: 255, 130, 16;
  --color-dark: #0a1826;           /* Deep Navy */
  --color-dark-rgb: 10, 24, 38;
  --color-light: #f6f8fb;          /* Soft Off-White / Sandy Beige */
  --color-white: #ffffff;
  --color-text: #34495e;           /* Readable Charcoal */
  --color-text-muted: #7f8c8d;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* UI Tokens */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --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(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  
  --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);
  
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
}

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

a:hover {
  color: var(--color-secondary);
}

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

ul, ol {
  list-style: none;
}

/* --- Layout Utility Classes --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

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

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

.text-center { text-align: center; }
.text-orange { color: var(--color-secondary); }
.text-blue { color: var(--color-primary); }

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

.section-title-left {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title-left::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.section-dark .subtitle {
  color: #a4b4c4;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(29, 152, 237, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  box-shadow: 0 4px 14px rgba(255, 130, 16, 0.4);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(255, 130, 16, 0.4);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(29, 152, 237, 0.4);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

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

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}

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

/* --- Shared Navigation Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 24, 38, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background-color: var(--color-dark);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 80px;
  width: auto;
  transition: var(--transition-normal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
}

.nav-links a:hover,
.nav-links .current-menu-item a {
  color: var(--color-secondary);
}

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

.nav-links a:hover::after,
.nav-links .current-menu-item a::after {
  width: 100%;
}

.header-cta .btn {
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-normal);
}

/* --- Hero Slider (Home Page) --- */
.hero-slider-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.4) 0%, rgba(10, 24, 38, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-tagline {
  font-family: var(--font-sans);
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: slideUp 0.8s ease-out forwards;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  animation: slideUp 1s ease-out forwards;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 650px;
  animation: slideUp 1.2s ease-out forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  animation: slideUp 1.4s ease-out forwards;
}

/* Hero Search Panel */
.hero-search-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 90%;
  max-width: 1000px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  z-index: 10;
  border-bottom: 4px solid var(--color-secondary);
}

.hero-search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.5rem;
  align-items: flex-end;
}

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

.search-field-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-dark);
  letter-spacing: 1px;
}

.search-field-group input,
.search-field-group select {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(10, 24, 38, 0.15);
  border-radius: var(--border-radius-sm);
  background-color: #fcfdfe;
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-field-group input:focus,
.search-field-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 152, 237, 0.1);
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  right: 5%;
  bottom: 12%;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dot.active {
  background-color: var(--color-secondary);
  transform: scale(1.3);
}

/* --- Features / Value Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: var(--transition-normal);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(29, 152, 237, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-card:hover .feature-icon-wrapper {
  background-color: rgba(255, 130, 16, 0.1);
  color: var(--color-secondary);
}

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

/* --- Tour Packages (tours.html) --- */
.tour-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.6rem;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(10, 24, 38, 0.15);
  background-color: var(--color-white);
  color: var(--color-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.tour-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.tour-card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.tour-card-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-card-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(10, 24, 38, 0.75);
  color: var(--color-white);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  backdrop-filter: blur(4px);
}

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

.tour-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(10, 24, 38, 0.08);
  padding-top: 1.5rem;
  margin-top: auto;
}

.tour-card-price {
  display: flex;
  flex-direction: column;
}

.tour-card-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.tour-card-price-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
}

.tour-card-price-amount span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Modal / Lightbox Details */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 24, 38, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--color-secondary);
}

.modal-hero {
  height: 350px;
  position: relative;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,24,38,0) 50%, rgba(10,24,38,0.9) 100%);
}

.modal-hero-title-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  color: var(--color-white);
}

.modal-hero-title-wrapper h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.modal-body {
  padding: 3rem;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background-color: var(--color-light);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 2.5rem;
}

.modal-meta-item {
  display: flex;
  flex-direction: column;
}

.modal-meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.modal-meta-value {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: 600;
}

.modal-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(10,24,38,0.05);
  padding-bottom: 0.5rem;
}

.modal-itinerary-step {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  border-left: 2px dashed rgba(29, 152, 237, 0.3);
}

.modal-itinerary-step::before {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 2px solid var(--color-white);
}

.modal-itinerary-step h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* --- Destinations & SVG Map (destinations.html) --- */
.destinations-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.map-wrapper {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  position: sticky;
  top: 120px;
}

.sri-lanka-map {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* SVG Map Elements */
.map-hotspot {
  cursor: pointer;
  transition: var(--transition-normal);
}

.map-hotspot-pin {
  fill: var(--color-secondary);
  stroke: var(--color-white);
  stroke-width: 2px;
  transition: var(--transition-normal);
}

.map-hotspot-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  fill: var(--color-dark);
  pointer-events: none;
  opacity: 0.8;
}

.map-hotspot:hover .map-hotspot-pin,
.map-hotspot.active .map-hotspot-pin {
  fill: var(--color-primary);
  r: 10px; /* Expand if radius is defined */
  filter: drop-shadow(0 4px 6px rgba(29, 152, 237, 0.4));
}

.map-hotspot:hover .map-hotspot-label,
.map-hotspot.active .map-hotspot-label {
  fill: var(--color-primary);
  font-weight: 700;
  opacity: 1;
}

/* Info Side Panel */
.destination-detail-panel {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border-left: 5px solid var(--color-primary);
  transition: var(--transition-normal);
}

.dest-panel-img-wrapper {
  height: 250px;
  position: relative;
}

.dest-panel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-panel-content {
  padding: 2.5rem;
}

.dest-panel-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.dest-panel-region {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.dest-panel-highlights {
  margin: 1.5rem 0;
}

.dest-panel-highlights h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.dest-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dest-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.dest-highlight-item i,
.dest-highlight-item svg {
  color: var(--color-primary);
  width: 16px;
  flex-shrink: 0;
}

.dest-panel-footer {
  border-top: 1px solid rgba(10,24,38,0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dest-duration-badge {
  background-color: var(--color-light);
  color: var(--color-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
}

/* --- Travel Guide Accordion (guide.html) --- */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.guide-checklist-card {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.checklist-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

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

.guide-checklist-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.checklist-num {
  width: 28px;
  height: 28px;
  background-color: rgba(29, 152, 237, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checklist-text h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.checklist-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Accordion Accordance */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.faq-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-dark);
  transition: var(--transition-normal);
}

/* Horizontal bar */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical bar */
.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: var(--color-secondary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content {
  padding: 0 2rem 2.5rem 2rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(10,24,38,0.03);
}

/* --- Driver Fleet (about.html) --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.fleet-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.fleet-img-wrapper {
  height: 100%;
  min-height: 250px;
}

.fleet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-content {
  padding: 2.5rem;
}

.fleet-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.fleet-meta {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* --- Multi-step Custom Itinerary Planner Form (contact.html) --- */
.planner-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
}

.planner-container {
  background-color: var(--color-white);
  padding: 4rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.planner-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3.5rem;
}

.planner-stepper-progress {
  position: absolute;
  top: 18px;
  left: 0;
  height: 3px;
  background-color: var(--color-light);
  width: 100%;
  z-index: 1;
}

.planner-stepper-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-primary);
  width: 0%;
  transition: var(--transition-normal);
}

.step-indicator {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-light);
  border: 3px solid var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.step-indicator.active {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.step-indicator.completed {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.step-label {
  position: absolute;
  top: 45px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.step-indicator.active .step-label {
  color: var(--color-dark);
}

.planner-step-panel {
  display: none;
}

.planner-step-panel.active {
  display: block;
  animation: fadeIn var(--transition-normal);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(10,24,38,0.15);
  border-radius: var(--border-radius-sm);
  background-color: #fbfcfe;
  color: var(--color-dark);
  font-family: var(--font-sans);
  outline: none;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 152, 237, 0.15);
}

/* Card Selection Controls */
.interest-card-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.selector-card {
  border: 2px solid var(--color-light);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.selector-card:hover {
  border-color: rgba(29, 152, 237, 0.3);
  background-color: rgba(29, 152, 237, 0.02);
}

.selector-card.selected {
  border-color: var(--color-primary);
  background-color: rgba(29, 152, 237, 0.05);
}

.selector-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.form-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  border-top: 1px solid rgba(10,24,38,0.08);
  padding-top: 2rem;
}

/* Contact sidebar details */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.info-card-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: start;
}

.info-card-item svg,
.info-card-item i {
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
}

.info-card-item h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.info-card-item p,
.info-card-item a {
  font-size: 1.05rem;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 0;
}

.info-card-item a:hover {
  color: var(--color-secondary);
}

.map-placeholder-box {
  background-color: #e4ebf0;
  border-radius: var(--border-radius-md);
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Success form prompt */
.form-success-message {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(29, 152, 237, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  color: var(--color-primary);
  font-size: 2.5rem;
}

.form-success-message h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* --- Testimonials Slider --- */
.testimonials-section {
  background-color: var(--color-white);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding: 0 2rem;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  color: rgba(29, 152, 237, 0.15);
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* --- Shared Theme Footer --- */
.site-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 6rem 0 2rem 0;
  border-top: 4px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-about-text {
  color: #a4b4c4;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-credentials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-credential-logo {
  height: 45px;
  background-color: var(--color-white);
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
}

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

.footer-links-list a {
  color: #a4b4c4;
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: #a4b4c4;
  font-size: 0.95rem;
}

.footer-contact-item svg,
.footer-contact-item i {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a {
  color: #a4b4c4;
}

.footer-contact-item a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7f8c8d;
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: #7f8c8d;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* --- Contact Form 7 & Quick Enquiry Fallback Styling --- */
.tsl-cf7-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.tsl-cf7-wrapper .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .tsl-cf7-wrapper .cf7-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.tsl-cf7-wrapper label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tsl-cf7-wrapper input[type="text"],
.tsl-cf7-wrapper input[type="email"],
.tsl-cf7-wrapper input[type="tel"],
.tsl-cf7-wrapper input[type="date"],
.tsl-cf7-wrapper select,
.tsl-cf7-wrapper textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box;
}
.tsl-cf7-wrapper input::placeholder,
.tsl-cf7-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}
.tsl-cf7-wrapper input:focus,
.tsl-cf7-wrapper select:focus,
.tsl-cf7-wrapper textarea:focus {
  border-color: var(--color-secondary) !important;
  background-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 0 0 3px rgba(255, 130, 16, 0.3) !important;
}
.tsl-cf7-wrapper select option {
  background-color: var(--color-dark) !important;
  color: #fff !important;
}
.tsl-cf7-wrapper input[type="date"] {
  color-scheme: dark;
}
.tsl-cf7-wrapper .wpcf7-submit,
.tsl-cf7-wrapper button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-sans);
  margin-top: 1rem;
  align-self: center;
  min-width: 250px;
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(255, 130, 16, 0.4);
}
.tsl-cf7-wrapper .wpcf7-submit:hover,
.tsl-cf7-wrapper button[type="submit"]:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 14px rgba(29, 152, 237, 0.4);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

/* --- CSS Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 130, 16, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 130, 16, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 130, 16, 0); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .features-grid, .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .destinations-layout, .planner-layout, .guide-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-wrapper { position: static; margin-bottom: 2rem; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .section { padding: 5rem 0; }
  .section-title, .section-title-left { font-size: 2.2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
  .hero-actions .btn { width: 100%; }
  
  /* Responsive Menu */
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .main-nav.active { right: 0; }
  .nav-links { flex-direction: column; gap: 2rem; width: 100%; text-align: center; }
  .nav-links a { font-size: 1.2rem; display: block; }
  .header-cta { width: 100%; }
  .header-cta .btn { width: 100%; }
  
  .hero-search-wrapper { position: static; transform: none; width: 100%; margin-top: 2rem; border-radius: var(--border-radius-md); }
  .hero-search-form { grid-template-columns: 1fr; }
  
  .features-grid, .tours-grid { grid-template-columns: 1fr; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-img-wrapper { height: 200px; }
  .planner-container { padding: 2rem; }
  .interest-card-selector { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}
