﻿/*
Theme Name:  Madurai Trip
Theme URI:   https://maduraitrip.com
Author:      Madurai Trip Team
Author URI:  https://maduraitrip.com
Description: A premium SEO-optimized WordPress theme for Madurai Trip travel agency. Features temple tourism inspired design, tour package management, taxi booking, and comprehensive travel services for Madurai and South India tours.
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: maduraitrip
Tags:        travel, tourism, tour-packages, taxi, responsive, seo-optimized, custom-post-types, elementor-compatible, woocommerce-support, full-width-template, custom-menu, custom-logo, featured-images, threaded-comments, sticky-post, translation-ready
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4

This theme is built for Madurai Trip travel agency — optimized for Madurai Travels,
Madurai Taxi Service, Madurai Tour Packages, Temple Tours, and South India Travel.
*/

/* =====================================================
   TABLE OF CONTENTS
   1. CSS Variables & Root
   2. Reset & Base
   3. Typography
   4. Layout & Container
   5. Header & Navigation
   6. Hero Slider
   7. Buttons & CTAs
   8. Cards & Packages
   9. Services Section
   10. About Section
   11. Testimonials
   12. Gallery
   13. Blog & Posts
   14. Sidebar
   15. Footer
   16. Forms & Booking
   17. WhatsApp Widget
   18. Breadcrumbs
   19. Pagination
   20. Utilities & Animations
   21. Responsive
===================================================== */

/* ---- 1. CSS Variables ---- */
:root {
  --primary:        #fec017;
  --primary-dark:   #d49f13;
  --primary-light:  #fed44d;
  --secondary:      #8B1A1A;
  --secondary-dark: #6B1010;
  --accent:         #FF6B35;
  --dark:           #1C1C2E;
  --dark-2:         #2D2D45;
  --light:          #FFF8F0;
  --light-2:        #F5F0E8;
  --white:          #FFFFFF;
  --text:           #3D3D3D;
  --text-light:     #6B7280;
  --border:         #E5DDD0;
  --shadow:         0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.18);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', 'Segoe UI', sans-serif;
  --font-accent:    'Poppins', sans-serif;
  --header-height:  80px;
  --container-max:  1280px;
}

/* ---- 2. Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
ul, ol { list-style: none; }
table { width: 100%; border-collapse: collapse; }
input, textarea, select, button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ---- 3. Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.2rem; color: var(--text-light); }
.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-light); max-width: 600px; margin: 0 auto 2.5rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-white { color: var(--white) !important; }

/* ---- 4. Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-fluid { width: 100%; padding: 0 1.5rem; }
.row { display: flex; flex-wrap: wrap; margin: 0 -0.75rem; }
.col { flex: 1; padding: 0 0.75rem; }
.col-2 { width: 16.666%; padding: 0 0.75rem; }
.col-3 { width: 25%; padding: 0 0.75rem; }
.col-4 { width: 33.333%; padding: 0 0.75rem; }
.col-6 { width: 50%; padding: 0 0.75rem; }
.col-8 { width: 66.666%; padding: 0 0.75rem; }
.col-12 { width: 100%; padding: 0 0.75rem; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 120px 0; }
.bg-light { background: var(--light); }
.bg-light-2 { background: var(--light-2); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.bg-temple {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
}
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.site-content { flex: 1; }

/* ---- 5. Header & Navigation ---- */

/* Top bar — fixed at very top, full width */
.top-bar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  width: 100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Site header — sits directly below the top bar */
:root { --top-bar-height: 34px; }

.site-header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,26,0.82) 0%, transparent 100%);
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  height: var(--header-height);
}
/* When scrolled: top-bar scrolls into view above, header slides to top:0 */
.site-header.scrolled {
  background: rgba(16, 14, 38, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  height: 70px;
  top: 0; /* top-bar is scrolled away, header moves to top */
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 0 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img { height: 50px; width: auto; }
.site-logo-link { display: flex; align-items: center; text-decoration: none; }
.site-logo-img  { height: 60px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.footer-logo-img { height: 54px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.logo-text a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 0.6rem;
  color: var(--primary-light);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 2px;
}
/* Navigation — centred in the 1fr column */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.8rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-accent);
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current-page-ancestor > a {
  color: var(--primary-light);
  background: rgba(255,255,255,0.07);
}
.main-nav .current-menu-item > a {
  color: var(--primary-light);
  border-bottom: 2px solid var(--primary-light);
  border-radius: 0;
}
/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  border-top: 3px solid var(--primary);
  padding: 0.5rem 0;
  list-style: none;
}
.main-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.main-nav .sub-menu li a {
  color: var(--text);
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: none;
}
.main-nav .sub-menu li a:hover {
  background: var(--light);
  color: var(--secondary);
  padding-left: 1.5rem;
}

/* ── Header CTA (right side) ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.header-phone-icon {
  width: 36px;
  height: 36px;
  background: rgba(254,192,23,0.15);
  border: 1px solid rgba(254,192,23,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.75rem;
  flex-shrink: 0;
  animation: phonePulse 2.5s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,192,23,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(254,192,23,0); }
}
.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-phone-text small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header-phone-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-light);
}
.header-book-btn {
  white-space: nowrap;
  font-size: 0.78rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.header-phone svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.top-bar {
  background: var(--secondary);
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.top-bar a { color: var(--primary-light); }
.top-bar a:hover { color: var(--white); }
.top-bar-contact { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-social { display: flex; gap: 0.75rem; }

/* ---- 6. Hero Slider ---- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,8,30,0.88) 0%,
    rgba(28,28,46,0.65) 50%,
    rgba(0,0,0,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  /* account for top-bar + header */
  padding-top: calc(var(--top-bar-height) + var(--header-height));
  padding-bottom: 140px;
}
.hero-text { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254,192,23,0.18);
  border: 1px solid rgba(254,192,23,0.5);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.7s ease;
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  font-weight: 700;
  animation: fadeInUp 0.8s ease 0.15s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span {
  color: var(--primary-light);
  position: relative;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 580px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.45s both;
}

/* Hero Stats Bar — floating glass panel at bottom */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, rgba(16,14,38,0.96), rgba(139,26,26,0.9));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(254,192,23,0.25);
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(254,192,23,0.08); }
.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(254,192,23,0.15);
  border: 1px solid rgba(254,192,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-stat-info { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Floating Quick Booking Strip ── */
.quick-booking-strip {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 50;
}
.quick-booking-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.qb-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
  cursor: pointer;
}
.qb-item:last-of-type { border-right: none; }
.qb-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.qb-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.qb-btn-wrap { padding: 0.75rem 0 0.75rem 1.25rem; }
.qb-btn-wrap .btn { white-space: nowrap; }

/* ── Modern Service Cards ── */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.svc-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.svc-card-icon.gold { background: rgba(254,192,23,0.12); }
.svc-card-icon.red  { background: rgba(139,26,26,0.1); }
.svc-card-icon.blue { background: rgba(37,99,235,0.1); }
.svc-card-icon.green{ background: rgba(5,150,105,0.1); }
.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.svc-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.svc-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.svc-card-link:hover { gap: 8px; color: var(--primary); }

/* ── Destination Cards — Clean Grid ── */
.dest-row {
  display: grid;
  gap: 1.25rem;
}
.dest-row-3 { grid-template-columns: repeat(3, 1fr); }
.dest-row-2 { grid-template-columns: repeat(2, 1fr); }

.dest-card-new {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
}
.dest-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.dest-img-wrap {
  position: relative;
  overflow: hidden;
}
.dest-row-3 .dest-img-wrap { height: 240px; }
.dest-row-2 .dest-img-wrap { height: 290px; }
.dest-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.dest-card-new:hover img { transform: scale(1.08); }
.dest-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,30,0.5) 0%, transparent 60%);
  transition: background 0.35s ease;
}
.dest-card-new:hover .dest-overlay-new {
  background: linear-gradient(to top, rgba(10,8,30,0.7) 0%, rgba(139,26,26,0.25) 60%, transparent 100%);
}

/* Destination content slides up on hover */
.dest-content-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.dest-card-new:hover .dest-content-new { transform: translateY(0); }

.dest-tag-new {
  display: inline-block;
  background: rgba(254,192,23,0.92);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.dest-title-new {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.dest-row-2 .dest-title-new { font-size: 1.6rem; }
.dest-dist-new {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.dest-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: background 0.25s, border-color 0.25s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s, background 0.25s;
}
.dest-card-new:hover .dest-btn-new {
  opacity: 1;
  transform: translateY(0);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* Keep legacy dest-card-m for fallback compatibility */
.dest-card-m { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.dest-card-m img { width: 100%; height: 250px; object-fit: cover; }
.dest-card-m-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,30,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.dest-card-m-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: #fff; }
.dest-card-m-meta { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.dest-tag { display: inline-block; background: rgba(254,192,23,0.9); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 0.4rem; width: fit-content; }

/* ── Offers Banner Strip ── */
.offers-strip {
  background: linear-gradient(135deg, var(--secondary), #6b1212);
  padding: 1rem 0;
  overflow: hidden;
}
.offers-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.offers-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
}
.offer-item .badge {
  background: var(--primary);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ── Taxi Fleet Cards ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.fleet-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.fleet-card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 30px rgba(254,192,23,0.2);
}
.fleet-card-featured:hover {
  box-shadow: 0 24px 60px rgba(254,192,23,0.3);
}
.fleet-popular-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary), #fed44d);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 5;
}
.fleet-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 5;
}
.fleet-tag-gold { background: rgba(254,192,23,0.15); color: #7a5c00; border: 1px solid rgba(254,192,23,0.4); }
.fleet-tag-blue  { background: rgba(37,99,235,0.1);  color: #1d4ed8; border: 1px solid rgba(37,99,235,0.3); }
.fleet-tag-red   { background: rgba(139,26,26,0.1);  color: var(--secondary); border: 1px solid rgba(139,26,26,0.3); }
.fleet-tag-green { background: rgba(5,150,105,0.1);  color: #065f46; border: 1px solid rgba(5,150,105,0.3); }
.fleet-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f1f0ee;
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
/* MaduraiTrip Logo watermark on vehicle image */
.fleet-logo-watermark {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10,8,30,0.7);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 3px 10px 3px 6px;
  border: 1px solid rgba(254,192,23,0.4);
}
.fleet-logo-watermark span:first-child { font-size: 0.75rem; }
.fleet-logo-text {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}
.fleet-body { padding: 1.25rem; }
.fleet-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-light);
  background: var(--light);
  padding: 3px 8px;
  border-radius: 50px;
}
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.fleet-features span {
  font-size: 0.78rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
}
.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.fleet-rate { display: flex; flex-direction: column; }
.fleet-rate-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.fleet-rate-label {
  font-size: 0.62rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ── TN Registered Fleet ── */
.fleet-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tn-badge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(254,192,23,0.06);
  border: 1px solid rgba(254,192,23,0.2);
  border-radius: 12px;
  padding: 0.875rem 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tn-plate-demo {
  background: #fff;
  border: 2px solid #003580;
  border-radius: 5px;
  padding: 4px 14px;
  font-family: 'Courier New', monospace;
  font-weight: 800;
  font-size: 0.85rem;
  color: #003580;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,53,128,0.12);
}
.tn-strip-text { font-size: 0.88rem; color: var(--text); text-align: center; }
.tn-strip-text strong { color: var(--secondary); }
.fleet-tn-plate {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.96);
  border: 1.5px solid #003580;
  border-radius: 5px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.fleet-tn-flag { font-size: 0.75rem; line-height: 1; }
.fleet-tn-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: #003580;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

/* ── Why Choose Us Parallax Band ── */
.why-band {
  background: url('https://images.unsplash.com/photo-1609766818211-9cfb5e3b0ce1?auto=format&fit=crop&w=1920&q=60') center/cover no-repeat fixed;
  position: relative;
}
.why-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,30,0.88);
}
.why-band-inner { position: relative; z-index: 2; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover {
  background: rgba(254,192,23,0.1);
  transform: translateY(-5px);
  border-color: rgba(254,192,23,0.3);
}
.why-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.why-card h4 {
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}
.slider-controls {
  position: absolute;
  bottom: calc(130px + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.slider-dot.active {
  background: var(--primary);
  border-color: var(--primary-light);
  width: 30px;
  border-radius: 5px;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
}
.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
/* Search Bar on Hero */
.hero-search {
  margin-top: 2rem;
  animation: fadeInUp 1.3s ease 1s both;
}
.search-form {
  display: flex;
  background: rgba(255,255,255,0.95);
  border-radius: 60px;
  padding: 0.5rem;
  gap: 0.5rem;
  max-width: 600px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.search-input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}
.search-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover { background: var(--secondary); }

/* ---- 7. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(254,192,23,0.4);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; }
.btn-icon {
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- 8. Cards & Packages ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.08); }
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-badge.hot { background: var(--accent); color: var(--white); }
.card-badge.popular { background: var(--secondary); color: var(--white); }
.card-body { padding: 1.5rem; }
.card-title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.card-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.card-price {
  display: flex;
  flex-direction: column;
}
.card-price .from { font-size: 0.75rem; color: var(--text-light); }
.card-price .amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}
.card-price .per { font-size: 0.75rem; color: var(--text-light); }
/* Rating Stars */
.star-rating { display: flex; gap: 2px; color: var(--primary); font-size: 0.85rem; }
/* Package Features */
.pkg-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.pkg-feature {
  background: var(--light);
  color: var(--text);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
/* Package Card Wide */
.pkg-card-wide {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 1.5rem;
}
.pkg-card-wide:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pkg-card-wide .pkg-img {
  width: 300px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.pkg-card-wide .pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card-wide .pkg-content { padding: 1.75rem; flex: 1; }
.pkg-card-wide .pkg-footer {
  padding: 1rem 1.75rem;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

/* ---- 9. Services Section ---- */
.service-icon-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-icon-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-icon-card:hover::before { transform: scaleX(1); }
.service-icon-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.service-icon-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  transform: scale(1.1) rotate(5deg);
}
.service-title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9rem; color: var(--text-light); }
/* Service Highlight */
.service-highlight {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.service-highlight h3 { color: var(--primary-light); }

/* ---- 10. About Section ---- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--white);
}
.about-img-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.about-img-badge .label { font-size: 0.7rem; color: var(--dark); font-weight: 600; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--primary);
}
.about-feature-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.about-feature-text p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ── Modern About Section ── */
.about-section { background: #f9f8f5; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: 4rem;
  align-items: center;
}

/* Left image column */
.about-img-col { position: relative; }
.about-img-stack {
  position: relative;
  padding-bottom: 90px;
  padding-right: 90px;
}
.about-img-main-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}
.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.about-img-main-wrap:hover .about-img-main { transform: scale(1.04); }
.about-img-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(254,192,23,0.12) 100%);
  pointer-events: none;
}

/* Floating second image */
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 5px solid #fff;
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-img-float img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.about-img-float-label {
  display: block;
  background: var(--dark);
  color: var(--primary-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gold years badge */
.about-years-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: linear-gradient(135deg, #fec017 0%, #fed44d 100%);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(254,192,23,0.45);
  z-index: 5;
}
.about-years-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.about-years-num sup { font-size: 1.2rem; vertical-align: super; }
.about-years-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(28,28,46,0.75);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
  line-height: 1.4;
}

/* Stat pill bottom-left */
.about-stat-pill {
  position: absolute;
  bottom: 92px;
  left: -12px;
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Right content column */
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0;
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.about-check-item:last-child { border-bottom: none; }
.check-tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(254,192,23,0.12);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  color: var(--primary);
  flex-shrink: 0;
}
.about-mini-stats {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.about-mini-stat {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid var(--border);
}
.about-mini-stat:last-child { border-right: none; }
.about-mini-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.about-mini-stat span {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  display: block;
}

/* ── Page Animations (slide-in) ── */
.anim-slide-left,
.anim-slide-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-slide-left  { transform: translateX(-50px); }
.anim-slide-right { transform: translateX(50px); }
.anim-slide-left.in-view,
.anim-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.35s; }
.anim-delay-4 { transition-delay: 0.5s; }

/* ---- 11. Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testimonial-text { color: var(--text); font-style: italic; margin-bottom: 1.5rem; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }
/* Testimonial Slider */
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }

/* ---- 12. Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; min-height: 200px; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,46,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 1rem; }

/* ---- 13. Blog & Posts ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.blog-title { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-title a { color: var(--dark); }
.blog-title a:hover { color: var(--primary); }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.75rem; }
.blog-excerpt { font-size: 0.875rem; color: var(--text-light); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.blog-read-more svg { transition: transform 0.3s; }
.blog-read-more:hover svg { transform: translateX(4px); }
/* Single Post */
.single-post { max-width: 800px; }
.post-header { margin-bottom: 2rem; }
.post-thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.post-content { font-size: 1.05rem; line-height: 1.8; }
.post-content h2, .post-content h3 { margin: 2rem 0 1rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
}
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.post-tag {
  background: var(--light);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: var(--transition);
}
.post-tag:hover { background: var(--primary); color: var(--dark); }
.post-share { display: flex; gap: 0.75rem; align-items: center; margin-top: 1.5rem; }
/* Related Posts */
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ---- 14. Sidebar ---- */
.sidebar { padding-left: 2rem; }
.widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.widget-title {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  position: relative;
}
.widget-search { display: flex; gap: 0.5rem; }
.widget-search input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.widget-search input:focus { border-color: var(--primary); }
.widget-search button {
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.widget-search button:hover { background: var(--secondary); color: var(--white); }
.widget-categories li {
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}
.widget-categories li:last-child { border-bottom: none; }
.widget-categories a {
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 0.9rem;
}
.widget-categories a:hover { color: var(--primary); }
.widget-categories .count {
  background: var(--light);
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
}
.widget-recent li { display: flex; gap: 1rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.widget-recent li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.widget-recent img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.widget-recent-text a { color: var(--text); font-size: 0.875rem; font-weight: 600; display: block; margin-bottom: 0.25rem; }
.widget-recent-text a:hover { color: var(--primary); }
.widget-recent-date { font-size: 0.75rem; color: var(--text-light); }
.widget-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-link {
  background: var(--light);
  color: var(--text);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: var(--transition);
}
.tag-link:hover { background: var(--primary); color: var(--dark); }
/* Quick Booking Widget */
.booking-widget {
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.booking-widget .widget-title { border-color: rgba(255,255,255,0.3); color: var(--primary-light); }
.booking-widget .form-control {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.booking-widget .form-control::placeholder { color: rgba(255,255,255,0.6); }

/* ---- 15. Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-wrap { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.25rem; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
}
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }
.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 0.4rem; }
.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(254,192,23,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  font-size: 1rem;
}
.footer-contact-text { color: rgba(255,255,255,0.7); }
.footer-contact-text strong { display: block; color: var(--white); font-size: 0.8rem; margin-bottom: 0.1rem; }
.footer-newsletter { margin-top: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.15); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
/* Copyright Bar */
.copyright-bar {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- 16. Forms & Booking ---- */
.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(254,192,23,0.1); }
.form-control::placeholder { color: var(--text-light); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
}
.booking-form-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.booking-form-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 2rem; }
.contact-form-section {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
/* Inquiry Form */
.inquiry-form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}
.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}

/* ---- 17. WhatsApp Widget ---- */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-tooltip {
  background: var(--white);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(254,192,23,0.3);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--secondary); color: var(--white); }

/* ---- 18. Breadcrumbs ---- */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  padding: 80px 0 40px;
  /* account for top-bar + header on inner pages */
  margin-top: calc(var(--top-bar-height) + var(--header-height));
}
.breadcrumb-section.has-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.breadcrumb-section.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,46,0.85) 0%, rgba(139,26,26,0.6) 100%);
}
.breadcrumb-section.has-bg > * { position: relative; z-index: 1; }
.page-title-heading { color: var(--white); margin-bottom: 0.5rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.breadcrumb-current { color: var(--primary-light); font-size: 0.875rem; }

/* ---- 19. Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.page-link:hover, .page-link.current {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}
.page-link.dots { border: none; background: none; cursor: default; }

/* ---- 20. Utilities & Animations ---- */
/* Counter */
.counter-section { padding: 60px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.counter-item { padding: 2rem; }
.counter-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counter-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { background: var(--light); color: var(--primary); }
.faq-icon { font-size: 1.25rem; font-weight: 300; color: var(--primary); transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 0.9rem; color: var(--text-light); background: var(--light); }
.faq-answer.open { max-height: 500px; padding: 1.25rem 1.5rem; }
/* Feature List */
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.check-icon { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
/* Process Steps */
.process-steps { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.process-step { text-align: center; max-width: 200px; }
.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  right: -65%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 2px;
  background: var(--border);
}
.process-step:last-child .step-num::after { display: none; }
.step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.8rem; color: var(--text-light); }
/* Tabs */
.tab-nav { display: flex; gap: 0.5rem; border-bottom: 2px solid var(--border); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  font-family: var(--font-accent);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
/* Grid Layouts */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.taxi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
/* Vehicle Card */
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.vehicle-img { height: 180px; overflow: hidden; background: var(--light-2); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.vehicle-img img { max-height: 100%; object-fit: contain; }
.vehicle-body { padding: 1.25rem; }
.vehicle-specs { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0.75rem 0; }
.vehicle-spec { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--text-light); }
/* Map Section */
.map-section { height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-section iframe { width: 100%; height: 100%; border: none; }
/* Info Card */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.info-card.secondary { border-left-color: var(--secondary); }
/* Notice / Alert */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.alert-info { background: #EBF4FF; color: #1E3A5F; border-left: 4px solid #3B82F6; }
.alert-success { background: #ECFDF5; color: #064E3B; border-left: 4px solid #10B981; }
.alert-warning { background: #FFFBEB; color: #78350F; border-left: 4px solid #F59E0B; }
/* Sightseeing Place Card */
.place-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.place-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.place-card:hover img { transform: scale(1.1); }
.place-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,46,0.9) 0%, transparent 50%);
}
.place-info { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: var(--white); }
.place-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.place-type { font-size: 0.8rem; color: var(--primary-light); letter-spacing: 1px; text-transform: uppercase; }
/* Destination Card */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}
.dest-name { color: var(--white); font-family: var(--font-heading); font-size: 1.2rem; }
.dest-distance { color: var(--primary-light); font-size: 0.8rem; }
/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.promo-text h2 { color: var(--white); }
.promo-text p { color: rgba(255,255,255,0.8); }
/* Why Choose Us */
.why-choose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}
.why-text h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.why-text p { font-size: 0.875rem; color: var(--text-light); margin: 0; }
/* Animations */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: 2rem; color: var(--primary-light); margin-bottom: 1.5rem; }
.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* Overlay */
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 500; }
.overlay.active { display: block; }
/* Section Divider */
.section-divider { height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)); border: none; margin: 0; }
/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(254,192,23,0.1) 0%, rgba(139,26,26,0.05) 100%);
  border: 1px solid rgba(254,192,23,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
/* Tour Itinerary */
.itinerary { position: relative; padding-left: 2rem; }
.itinerary::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary)); }
.itinerary-day { position: relative; margin-bottom: 2rem; }
.itinerary-day::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.itinerary-day h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.itinerary-day p { font-size: 0.875rem; color: var(--text-light); }
/* Price Table */
.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.price-table:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.price-table.featured { border: 2px solid var(--primary); transform: scale(1.05); }
.price-table-header {
  background: var(--dark);
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.price-table.featured .price-table-header { background: var(--primary); }
.price-table-name { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; color: var(--primary-light); }
.price-table.featured .price-table-name { color: var(--dark); }
.price-table-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; }
.price-table-period { font-size: 0.85rem; opacity: 0.7; }
.price-table-body { padding: 2rem; }
.price-table-features { margin-bottom: 1.5rem; }
.price-table-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-table-features li:last-child { border-bottom: none; }
/* Misc utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.w-100 { width: 100%; }
.d-none { display: none; }
.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.font-heading { font-family: var(--font-heading) !important; }
.font-accent { font-family: var(--font-accent) !important; }
.fw-700 { font-weight: 700; }
.text-gold { color: var(--primary); }
.text-temple { color: var(--secondary); }
.shadow { box-shadow: var(--shadow); }
.shadow-hover { box-shadow: var(--shadow-hover); }
.border-radius { border-radius: var(--radius); }
.border-radius-lg { border-radius: var(--radius-lg); }

/* ---- 21. Responsive ---- */
@media (max-width: 1280px) {
  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .services-grid-modern { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 3rem; }
  .about-img-stack { padding-bottom: 80px; padding-right: 80px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-booking-inner { grid-template-columns: repeat(2, 1fr) auto; }
  .qb-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .destinations-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-card-m.wide { grid-column: span 1; }
  .dest-card-m.tall { grid-row: span 1; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  :root { --header-height: 70px; }
  .section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .header-cta .header-phone { display: none; }
  .header-cta .header-book-btn { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open { left: 0; }
  .main-nav > ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav > ul > li { width: 100%; }
  .main-nav a { border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-transform: none; font-size: 0.9rem; }
  .main-nav .current-menu-item > a { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none !important; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: 0; display: none; left: 0; }
  .main-nav li.menu-open > .sub-menu { display: block; }
  .main-nav .sub-menu a { color: rgba(255,255,255,0.7); padding-left: 2rem; }
  .blog-grid, .packages-grid, .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid,
  .fleet-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .pkg-card-wide { flex-direction: column; }
  .pkg-card-wide .pkg-img { width: 100%; height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .top-bar-contact { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { padding-right: 80px; padding-bottom: 80px; }
  .about-years-badge { left: -10px; }
  .dest-row-3 { grid-template-columns: repeat(2, 1fr); }
  .dest-row-2 { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .quick-booking-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .qb-btn-wrap { grid-column: span 2; padding: 1rem; border-top: 1px solid var(--border); }
  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero-slider { height: 100svh; min-height: 500px; }
  .hero-title { font-size: 2.2rem; }
  .hero-content { padding-bottom: 180px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .blog-grid, .packages-grid, .related-posts-grid, .services-grid, .taxi-grid { grid-template-columns: 1fr; }
  .services-grid-modern { grid-template-columns: 1fr; }
  .fleet-grid,
  .fleet-grid-3 { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .col-3, .col-4, .col-6, .col-8 { width: 100%; }
  .sidebar { padding-left: 0; margin-top: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .promo-banner { flex-direction: column; text-align: center; }
  .booking-form { padding: 1.5rem; }
  .contact-form-section { padding: 2rem 1.5rem; }
  .slider-arrow { display: none; }
  .top-bar { display: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-num::after { display: none; }
  .about-grid { gap: 2rem; }
  .about-img-stack { padding-right: 60px; padding-bottom: 70px; }
  .about-img-main { height: 320px; }
  .about-img-float { width: 160px; }
  .about-img-float img { height: 130px; }
  .about-stat-pill { display: none; }
  .dest-row-3 { grid-template-columns: 1fr 1fr; }
  .dest-row-2 { grid-template-columns: 1fr; }
  .dest-row-3 .dest-img-wrap { height: 200px; }
  .dest-row-2 .dest-img-wrap { height: 220px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .quick-booking-inner { grid-template-columns: 1fr; }
  .qb-item { border-right: none; border-bottom: 1px solid var(--border); }
  .qb-btn-wrap { grid-column: span 1; }
  .anim-slide-left, .anim-slide-right { transform: translateY(30px); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .tab-nav { gap: 0.25rem; }
  .tab-btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-widget { bottom: 1.25rem; right: 1.25rem; }
  .scroll-top { bottom: 5.5rem; right: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .price-table.featured { transform: scale(1); }
  .why-cards { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { justify-content: center; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .dest-row-3 { grid-template-columns: 1fr; }
  .dest-row-2 { grid-template-columns: 1fr; }
  .dest-row-3 .dest-img-wrap,
  .dest-row-2 .dest-img-wrap { height: 220px; }
  .dest-content-new { transform: translateY(0); }
  .dest-btn-new { opacity: 1; transform: translateY(0); }
  .about-img-stack { padding-right: 50px; padding-bottom: 60px; }
  .about-mini-stats { flex-wrap: wrap; }
  .about-mini-stat { flex: 0 0 33.33%; }
}
/* ══════════════════════════════════════════
   PREMIUM DESIGN ADDITIONS — v2.0
   ══════════════════════════════════════════ */

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 99999;
  pointer-events: none;
  transition: width 0.05s linear;
}

/* ── Modern Quick Booking Form Card ── */
.quick-booking-section {
  padding: 0 0 3.5rem;
  position: relative;
  z-index: 20;
}
.quick-booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  border: 1px solid rgba(254,192,23,0.15);
}
.qb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.qb-header h3 {
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
}
.qb-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,150,105,0.08);
  color: #065f46;
  border: 1px solid rgba(5,150,105,0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
}
.qb-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
.qb-form { display: flex; flex-direction: column; gap: 0.875rem; }
.qb-form .qb-row {
  display: grid;
  gap: 0.875rem;
  align-items: end;
}
/* Row 1: Name · Mobile · Pickup · Destination */
.qb-row-top    { grid-template-columns: repeat(4, 1fr); }
/* Row 2: Date · Vehicle · Buttons */
.qb-row-bottom { grid-template-columns: 1fr 1fr auto; }

.qb-field { display: flex; flex-direction: column; gap: 0.4rem; }
.qb-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.qb-field label i { color: var(--primary); font-size: 0.7rem; }
.qb-field input,
.qb-field select {
  padding: 0 1rem;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--dark);
  background: var(--light);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qb-field input:focus,
.qb-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(254,192,23,0.12);
  background: #fff;
}
.qb-field input::placeholder { color: var(--text-light); }

/* Button group in row 2 */
.qb-btns-label { visibility: hidden; }
.qb-btn-group {
  display: flex;
  gap: 0.625rem;
  height: 46px;
}
.qb-action-btn {
  height: 46px;
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0 1.1rem;
  font-weight: 700;
  flex: 1;
  min-width: 0;
}

/* Responsive */
@media (max-width: 1280px) {
  .qb-row-top    { grid-template-columns: 1fr 1fr; }
  .qb-row-bottom { grid-template-columns: 1fr 1fr; }
  .qb-btns       { grid-column: span 2; }
  .qb-btn-group  { height: auto; }
  .qb-action-btn { flex: 1; }
}
@media (max-width: 640px) {
  .qb-row-top    { grid-template-columns: 1fr; }
  .qb-row-bottom { grid-template-columns: 1fr; }
  .qb-btns       { grid-column: span 1; }
  .qb-btns-label { display: none; }
  .qb-btn-group  { flex-direction: column; height: auto; }
  .qb-action-btn { width: 100%; flex: none; justify-content: center; }
  .quick-booking-card { padding: 1.25rem; border-radius: 16px; }
  .quick-booking-section { padding: 2rem 0; }
}

/* ── Testimonials Swiper ── */
.testimonials-swiper-section { background: var(--light); padding: 80px 0; }
.swiper-testimonials { padding-bottom: 3.5rem !important; overflow: visible !important; }
.swiper-testimonials .swiper-wrapper { align-items: stretch; }
.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.11);
}
.testi-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(254,192,23,0.18);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  display: block;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.testi-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(254,192,23,0.3);
}
.testi-info { flex: 1; min-width: 0; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.testi-location { font-size: 0.72rem; color: var(--text-light); margin-top: 1px; }
.testi-stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 2px; display: block; margin-top: 2px; }
.testi-trip-tag {
  display: inline-block;
  background: rgba(254,192,23,0.1);
  color: var(--primary-dark);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  margin-top: 4px;
  border: 1px solid rgba(254,192,23,0.2);
}
.google-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}
.google-reviews-summary .g-stars { color: #f59e0b; }
.google-reviews-summary .g-rating { font-weight: 700; color: var(--dark); }
.google-reviews-summary .g-count { color: var(--text-light); }
/* Swiper overrides */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background: #fff;
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; font-weight: 900; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ── FAQ Accordion ── */
.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.faq-col:first-child { border-right: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light); }
.faq-question.active { background: rgba(254,192,23,0.05); }
.faq-question-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
.faq-question.active .faq-question-text { color: var(--primary-dark); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-question.active .faq-icon {
  background: var(--primary);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  display: none;
  border-top: 1px solid rgba(254,192,23,0.12);
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── Hero Scroll Hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 185px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: bounceDown 2.2s ease-in-out infinite;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.hero-scroll-hint i { color: rgba(255,255,255,0.6); font-size: 1rem; }
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55% { transform: translateX(-50%) translateY(7px); }
}
@media (max-width: 768px) { .hero-scroll-hint { display: none; } }

/* fleet-grid-3 responsive */
@media (max-width: 1200px) { .fleet-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .fleet-grid-3 { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   SERVICES IMAGE CARDS
   ════════════════════════════════════════════ */
.services-grid-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.svc-img-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.svc-img-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 5;
}
.svc-img-card:hover::before { transform: scaleX(1); }
.svc-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.13);
}
.svc-img-wrap {
  position: relative;
  height: 175px;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.svc-img-card:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,8,30,0.72) 0%, rgba(10,8,30,0.12) 55%, transparent 100%);
}
.svc-img-icon-wrap {
  position: absolute;
  bottom: 14px; left: 16px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(254,192,23,0.45);
  transition: transform 0.3s;
}
.svc-img-card:hover .svc-img-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.svc-img-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  z-index: 2;
}
.svc-img-body {
  padding: 1.1rem 1.25rem 1.5rem;
}
.svc-img-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.45rem;
  font-family: var(--font-accent);
  line-height: 1.3;
}
.svc-img-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}
@media (max-width: 1200px) { .services-grid-img { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .services-grid-img { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px)  { .services-grid-img { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }
@media (max-width: 360px)  { .services-grid-img { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   ABOUT SECTION — MODERN TEMPLE MOSAIC
   ════════════════════════════════════════════ */
.about-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  height: 500px;
}
.about-mosaic-main {
  grid-row: 1 / -1;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.about-mosaic-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-mosaic-main:hover img { transform: scale(1.04); }
.about-mosaic-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,8,30,0.5) 0%, rgba(10,8,30,0.05) 55%, transparent 100%);
}
.about-gold-frame {
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(254,192,23,0.5);
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}
.about-gold-frame::before,
.about-gold-frame::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
}
.about-gold-frame::before { top: -5px; left: -5px; }
.about-gold-frame::after  { bottom: -5px; right: -5px; }
.about-mosaic-sm {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.about-mosaic-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-mosaic-sm:hover img { transform: scale(1.08); }
.about-mosaic-sm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,30,0.28);
  transition: background 0.3s;
}
.about-mosaic-sm:hover .about-mosaic-sm-overlay { background: rgba(10,8,30,0.1); }
.about-mosaic-sm-label {
  position: absolute;
  bottom: 8px; left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
/* Animated gold badge — top-left */
.about-badge-years {
  position: absolute;
  top: -14px; left: -14px;
  z-index: 10;
  width: 82px; height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #fed44d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(254,192,23,0.5);
  animation: floatUpDown 3.5s ease-in-out infinite;
  text-align: center;
}
.about-badge-years .badge-num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-heading);
}
.about-badge-years .badge-num sup { font-size: 0.7rem; }
.about-badge-years .badge-label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin-top: 2px;
}
/* Floating review pill — bottom center */
.about-badge-review {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #fff;
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  white-space: nowrap;
  border: 1px solid var(--border);
  animation: floatUpDown 4s ease-in-out infinite;
  animation-delay: 0.7s;
}
.about-badge-review .rev-stars { color: #f59e0b; font-size: 0.82rem; letter-spacing: 1px; }
.about-badge-review .rev-label { font-size: 0.78rem; font-weight: 700; color: var(--dark); display: block; }
.about-badge-review .rev-sub { font-size: 0.67rem; color: var(--text-light); display: block; }
/* Decorative spinning rings */
.about-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(254,192,23,0.25);
  pointer-events: none;
}
.about-deco-ring-1 {
  width: 110px; height: 110px;
  top: -28px; right: -22px;
  animation: spinSlow 28s linear infinite;
}
.about-deco-ring-2 {
  width: 60px; height: 60px;
  bottom: 35px; right: -18px;
  animation: spinSlow 18s linear infinite reverse;
}
/* Responsive about mosaic */
@media (max-width: 992px) {
  .about-mosaic { height: 400px; }
  .about-badge-review { display: none; }
}
@media (max-width: 768px) {
  .about-mosaic { grid-template-columns: 1fr; grid-template-rows: 300px; height: auto; }
  .about-mosaic-main { grid-row: 1; height: 300px; }
  .about-mosaic-sm { display: none; }
  .about-deco-ring { display: none; }
  .about-badge-years { width: 64px; height: 64px; top: -10px; left: -10px; }
  .about-badge-years .badge-num { font-size: 1.1rem; }
}

/* ════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES + HERO STATS FIX
   ════════════════════════════════════════════ */

/* ── Hero Stats Bar: HIDE on mobile (was overlapping slider) ── */
@media (max-width: 768px) {
  .hero-stats-bar { display: none !important; }
  /* Remove extra bottom-padding that existed only for stats bar */
  .hero-content { padding-bottom: 80px !important; }
  /* Keep hero full-height but content centred */
  .hero-slider { min-height: 100svh; }
  .hero-text { text-align: center; }
  .hero-badge { margin: 0 auto 1rem; }
  .hero-actions { align-items: center; }
}
@media (max-width: 480px) {
  .hero-content { padding-bottom: 60px !important; }
}

/* ── Newsletter form — full-width on mobile ── */
@media (max-width: 640px) {
  .newsletter-form { min-width: 0 !important; width: 100% !important; flex-direction: column; }
  .newsletter-form .newsletter-input { width: 100% !important; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ── General mobile spacing ── */
@media (max-width: 768px) {
  .section-title { font-size: 1.8rem !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .about-content-col { order: 2; }
  .about-img-col { order: 1; }
  .about-mini-stats { justify-content: center; }
  .about-mini-stat { min-width: 90px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-num::after { display: none; }
  .promo-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .header-cta .header-phone { display: none !important; }
  .header-cta .header-book-btn { display: none !important; }
}

/* ── Quick booking form on mobile ── */
@media (max-width: 640px) {
  .quick-booking-section { padding: 1.5rem 0; }
  .quick-booking-card { padding: 1.25rem; border-radius: 14px; }
  .qb-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ── About mosaic badges on very small screens ── */
@media (max-width: 480px) {
  .about-badge-years { width: 60px; height: 60px; top: -10px; left: -10px; }
  .about-badge-years .badge-num { font-size: 1rem; }
  .about-badge-review { display: none !important; }
}

/* ════════════════════════════════════════════
   PACKAGE BOOKING MODAL
   ════════════════════════════════════════════ */
.pkg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,8,30,0.78);
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 0;
}
.pkg-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.pkg-modal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 0 1.5rem 1.75rem;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  scrollbar-width: none;
}
.pkg-modal::-webkit-scrollbar { display: none; }
.pkg-modal-overlay.open .pkg-modal { transform: translateY(0); }
/* Drag handle (mobile) */
.pkg-modal-handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 1rem auto 1.25rem;
}
@media (min-width: 640px) {
  .pkg-modal-overlay { align-items: center; padding: 1.5rem; }
  .pkg-modal {
    border-radius: 24px;
    max-height: 90vh;
    padding: 0 2rem 2rem;
    transform: scale(0.94) translateY(24px);
  }
  .pkg-modal-handle { display: none; }
  .pkg-modal-overlay.open .pkg-modal { transform: scale(1) translateY(0); }
}
.pkg-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
  padding-top: 0.25rem;
}
.pkg-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-accent);
  line-height: 1.3;
}
.pkg-modal-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 3px;
}
.pkg-modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pkg-modal-close:hover { background: var(--border); color: var(--dark); }
.pkg-modal-info-row {
  display: flex;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(254,192,23,0.07), rgba(139,26,26,0.04));
  border: 1px solid rgba(254,192,23,0.2);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.pkg-modal-info-item { display: flex; flex-direction: column; flex: 1; min-width: 80px; }
.info-label { font-size: 0.6rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.info-val { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-top: 3px; }
.pkg-modal-form .mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
.mf-group { display: flex; flex-direction: column; gap: 0.35rem; }
.mf-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pkg-modal-form input,
.pkg-modal-form select,
.pkg-modal-form textarea {
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  background: var(--light);
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pkg-modal-form input:focus,
.pkg-modal-form select:focus,
.pkg-modal-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(254,192,23,0.12);
  background: #fff;
}
.pkg-modal-form input::placeholder { color: var(--text-light); }
.pkg-modal-form textarea { resize: none; height: 72px; }
.mf-full { grid-column: span 2; }
.btn-modal-submit { width: 100%; justify-content: center; margin-top: 0.875rem; height: 48px; font-size: 0.95rem; }
.modal-disclaimer { text-align: center; font-size: 0.7rem; color: var(--text-light); margin-top: 0.625rem; }
@media (max-width: 480px) {
  .pkg-modal-form .mf-row { grid-template-columns: 1fr; }
  .mf-full { grid-column: span 1; }
  .pkg-modal { padding: 0 1.25rem 1.5rem; }
}

/* Body scroll-lock when modal is open */
body.modal-open { overflow: hidden; }

/* Modal form error state */
.pkg-modal-form input.mf-error,
.pkg-modal-form select.mf-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15) !important;
}

/* Print */
@media print {
  .site-header, .whatsapp-widget, .scroll-top, .preloader, .top-bar { display: none; }
  .hero-slider { height: 300px; }
  body { color: #000; }
}
/* High contrast mode */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
