/* ============================================
   HARGUN RENTALS - Professional Design System
   Fresh CSS - SEO Friendly | Same Color Brand
   ============================================ */

/* CSS Variables - Brand Colors + Professional Palette */
:root {
  /* Primary Green (Brand) */
  --primary: #2fac2d;
  --primary-light: #64b741;
  --primary-lighter: #7ed956;
  --primary-dark: #259427;
  --primary-darker: #1f8a1d;
  --primary-hover: #235922;
  
  /* Accent - Amber/Gold (highlights, badges) */
  --accent-amber: #f59e0b;
  --accent-amber-light: #fbbf24;
  --accent-amber-dark: #d97706;
  
  /* Accent - Teal (secondary, trust) */
  --accent-teal: #0d9488;
  --accent-teal-light: #14b8a6;
  
  /* Complementary - Professional */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #139879;
  --slate-400: #94a3b8;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  /* Neutrals */
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  
  /* Accent */
  --accent-call: #e53935;
  --accent-call-hover: #c62828;
  --whatsapp: #25d366;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-green: 0 4px 14px rgba(47, 172, 45, 0.25);
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --container: 1200px;
  --section-padding: 52px;
  --header-height: 72px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }
ul, ol { list-style: none; }
input, button, textarea, select { font-family: inherit; font-size: inherit; }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1320px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
.text-primary {
  color: var(--primary) !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
}

/* ========== HEADER & NAVBAR ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.top-bar {
  background: linear-gradient(90deg, var(--slate-900) 0%, #0a3d47 50%, #0d3d4d 100%);
  padding: 10px 0;
  font-size: 14px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}
.top-bar a:hover { opacity: 1; }
.top-bar span { color: var(--accent-amber-light); font-weight: 600; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
  position: relative;
}
.navbar-brand img { height: 52px; width: auto; transition: transform 0.2s; }
.navbar-brand:hover img { transform: scale(1.02); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 10px 16px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--accent-teal); background: rgba(13, 148, 136, 0.08); }
.nav-link.active { color: var(--accent-teal); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(47, 172, 45, 0.3);
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 172, 45, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  margin: 6px 0;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); border-radius: 0 0 12px 12px; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .top-bar-inner { justify-content: center; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero:not(.hero-slider) {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.699) 0%, rgba(15, 76, 92, 0.52) 50%, rgba(30, 41, 59, 0.62) 100%),
    url('../imgs/banners/banners-1/20978.webp') center/cover no-repeat;
}
/* Hero Slider */
.hero-slider .hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.527) 0%, rgba(15, 76, 92, 0.42) 50%, rgba(30, 41, 59, 0.48) 100%);
}
.hero-slider .hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.hero-nav > * { pointer-events: auto; }
.hero-prev, .hero-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* border: 2px solid rgba(255,255,255,0.6); */
  background: rgba(0,0,0,0.3);
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-prev:hover, .hero-next:hover {
  background: rgba(47, 172, 45, 0.8);
  border-color: var(--white);
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--white); width: 24px; border-radius: 5px; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35) 0%, rgba(245, 158, 11, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.6);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-amber-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 4.5vw, 2.85rem);
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 100%;
  margin: 0 auto 24px;
  line-height: 1.75;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Booking wrap - overlaps hero */
.booking-wrap { margin-top: -60px; position: relative; z-index: 10; }

/* ========== BOOKING FORM ========== */
.booking-box {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 28px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  transition: box-shadow 0.3s, transform 0.3s;
}
.booking-box:hover {
  box-shadow: 0 24px 64px rgba(47, 172, 45, 0.15);
}
.booking-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.booking-tab {
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-600);
  background: var(--slate-100);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.booking-tab:hover {
  color: var(--primary);
  background: rgba(47, 172, 45, 0.1);
  transform: translateY(-2px);
}
.booking-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(47, 172, 45, 0.35);
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: end;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 172, 45, 0.15);
}
.btn-book {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 172, 45, 0.35);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 172, 45, 0.35);
}
.btn-outline {
  padding: 12px 24px;
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(135deg, var(--primary), var(--accent-teal)) border-box;
  color: var(--primary);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  border-color: transparent;
}
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-outline-sm:hover { background: var(--primary); color: var(--white); }

/* ========== SECTIONS ========== */
.section { padding: var(--section-padding) 0; }

/* Taxi & Tempo pages - reduced section padding */
.page-taxi-tempo .section { padding: 36px 0; }
.page-taxi-tempo .page-header { padding: 56px 0 40px; }
.page-taxi-tempo .section-cta { padding: 40px 0; }
.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.section-header { margin-bottom: 2rem; }
.section-header .section-title { margin-bottom: 8px; }
.section-sub { color: var(--slate-600); font-size: 1.05rem; }
.section-title h2 { margin-bottom: 12px; font-size: clamp(1.75rem, 4vw, 2rem); }
.section-title p { color: var(--slate-600); font-size: 1.05rem; }
.btn-about {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--slate-100);
  color: var(--slate-800);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-about:hover { background: var(--primary); color: var(--white); }
.section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.cta-section { padding: 48px 0; }

/* CTA Section - Premium Design */
.section-cta {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900) 0%, #0a3d47 40%, #0d4a5c 70%, var(--slate-800) 100%);
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.section-cta::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47, 172, 45, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta .container { position: relative; z-index: 2; }
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.section-cta h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 12px;
}
.section-cta .cta-subtitle {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 32px;
  line-height: 1.7;
}
.section-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(47, 172, 45, 0.4);
  transition: transform 0.2s;
}
.section-cta .cta-phone:hover { transform: scale(1.05); color: var(--white); }
.section-cta .btn-outline {
  border: 2px solid rgba(255,255,255,0.9);
  color: var(--white);
  background: transparent;
  padding: 18px 36px;
}
.section-cta .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.section-cta .btn-cta-light {
  background: var(--white);
  color: var(--primary);
  padding: 18px 36px;
}
.section-cta .btn-cta-light:hover {
  background: var(--slate-100);
  color: var(--primary-dark);
}

/* Homepage section backgrounds (halki visibility - light overlay) */
.section-bg-home {
  background-color: var(--slate-50);
  background-image: linear-gradient(rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.72)), url('../imgs/homepage/bg-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-bg-home-2 {
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)), url('../imgs/homepage/bg-2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* .section-bg-home-3 {
  background-color: var(--slate-50);
  background-image: linear-gradient(rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.72)), url('../imgs/homepage/bg-3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
} */
.section-bg-home-4 {
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)), url('../imgs/homepage/bg-4.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* Override for sections with existing backgrounds */
.section-tempo-options.section-bg-home-2,
.section-why-choose.section-bg-home-3,
.content-section.section-bg-home-2,
.content-section.section-bg-home-3,
.section-faqs-contact.section-bg-home-3 {
  background-color: var(--slate-50);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-tempo-options.section-bg-home-2 {
  background-image: linear-gradient(rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.72)), url('../imgs/homepage/bg-2.png');
}

.content-section.section-bg-home-2 {
  background-image: linear-gradient(rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.72)), url('../imgs/homepage/bg-2.png');
}
.section-pricing.section-bg-home-4 {
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.925), rgba(255, 255, 255, 0.87)), url('../imgs/homepage/bg-3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Services section - warm tint */
.section-services {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, var(--slate-50) 100%);
}
/* When section-bg-home is applied, use image + base color */
.section-services.section-bg-home {
  background-color: var(--slate-50);
  background-image: linear-gradient(rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.72)), url('../imgs/homepage/bg-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-services.section-bg-home-2 {
  background-color: var(--slate-50);
  background-image: linear-gradient(rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.72)), url('../imgs/homepage/bg-2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-services.section-bg-home-4 {
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)), url('../imgs/homepage/bg-4.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Page Header (Inner Pages) */
.page-header {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 76, 92, 0.85) 50%, rgba(30, 41, 59, 0.9) 100%),
    url('../imgs/header-banner/banner.png') center/cover;
  padding: 72px 0 56px;
  text-align: center;
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--accent-amber-light); }
.breadcrumb span { color: var(--slate-400); }

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-title { margin-bottom: 8px; font-size: 1.15rem; }
.card-text { color: var(--slate-600); font-size: 15px; }

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(47, 172, 45, 0.25), 0 0 0 1px rgba(47, 172, 45, 0.15);
  border-color: rgba(47, 172, 45, 0.3);
}
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  background: var(--slate-100);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover img { transform: scale(1.08); }
.service-card .card-body {
  padding: 24px;
  transition: background 0.3s;
}
.service-card:hover .card-body { background: linear-gradient(180deg, transparent 0%, rgba(47, 172, 45, 0.03) 100%); }

/* Car Listing Cards */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.car-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.car-card img,
.car-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.car-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.fleet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.fleet-type-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: all 0.3s;
}
.fleet-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 172, 45, 0.12);
  border-color: var(--primary);
}
.fleet-type-icon { font-size: 40px; display: block; margin-bottom: 16px; }
.fleet-type-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--slate-800); }
.fleet-type-card p { font-size: 14px; color: var(--slate-600); margin: 0; line-height: 1.6; }
.car-card .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.car-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.car-price { font-size: 1.25rem; font-weight: 700; color: var(--accent-teal); margin-top: auto; }

/* ========== ABOUT SECTION ========== */
.section:first-of-type .about-grid { gap: 56px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) { .about-grid { grid-template-columns: 1fr; } }
@media (min-width: 992px) {
  .about-grid-reverse > div:first-child { order: 2; }
  .about-grid-reverse > div:last-child { order: 1; }
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04); */
}
.about-img img { transition: transform 0.4s; }
.about-img:hover img { transform: scale(1.03); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.stat-box {
  padding: 24px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, var(--slate-50) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--accent-amber);
  transition: all 0.3s;
}
.stat-box:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}
.stat-box span { font-size: 2rem; font-weight: 800; color: var(--accent-amber-dark); display: block; }
.stat-box p { font-size: 14px; color: var(--slate-600); margin-top: 4px; }

/* Why Choose Us */
.section-why-choose { background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%); }
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .why-choose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-choose-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px -12px rgba(47, 172, 45, 0.2);
  border-color: rgba(47, 172, 45, 0.3);
}
.why-card .why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(47, 172, 45, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.why-card .why-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  transform: rotate(5deg) scale(1.1);
}
.why-card:hover .why-icon img {
  filter: brightness(0) invert(1);
}
.why-card h4 { margin-bottom: 12px; font-size: 1.15rem; }
.why-card p { font-size: 14px; color: var(--slate-600); margin: 0; line-height: 1.6; }

/* ========== FOOTER ========== */
.footer {
  position: relative;
  background-color: #0a0f1a;
  background-image: linear-gradient(180deg, rgb(10 15 26 / 92%) 0%, rgb(5 8 16) 100%), url(../imgs/homepage/bg-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 70px 0 0;
}
.footer-cta-box {
  background: linear-gradient(135deg, rgba(47, 172, 45, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-cta-box h5 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--white) !important;
}
.footer-cta-box .footer-cta {
  margin: 0;
}
.footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s;
}
.footer-cta .btn-wa {
  background: var(--whatsapp);
  color: var(--white);
}
.footer-cta .btn-call {
  background: linear-gradient(135deg, var(--accent-call), var(--accent-call-hover));
  color: var(--white);
}
.footer-cta a:hover { transform: translateY(-2px); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo img { height: 56px; margin-bottom: 20px; }
.footer h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-amber-light);
  margin-bottom: 24px;
}
.footer p, .footer a { font-size: 14px; opacity: 0.9; }
.footer ul li { margin-bottom: 12px; }
.footer a:hover { color: var(--accent-amber-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { margin: 0; font-size: 13px; opacity: 0.85; }

/* Floating Buttons - Unique animated design */
@keyframes floatPulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
  50% { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
}
@keyframes floatPulseWa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6), 0 6px 18px rgba(0,0,0,0.2); }
}
@keyframes floatPulseCall {
  0%, 100% { box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4), 0 4px 12px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 8px 28px rgba(229, 57, 53, 0.55), 0 6px 18px rgba(0,0,0,0.2); }
}
@keyframes floatSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.floating-wa, .floating-call {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, filter 0.3s;
  animation: floatSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  border: 3px solid rgba(255,255,255,0.9);
}
.floating-wa {
  right: 24px;
  bottom: 24px;
  background: linear-gradient(145deg, #34e077 0%, var(--whatsapp) 50%, #20bd5a 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.15);
  animation: floatSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards, floatPulseWa 2.5s ease-in-out 1s infinite;
}
.floating-call {
  right: 24px;
  bottom: 94px;
  background: linear-gradient(145deg, #ff5252 0%, var(--accent-call) 50%, var(--accent-call-hover) 100%);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4), 0 4px 12px rgba(0,0,0,0.15);
  animation: floatSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards, floatPulseCall 2.5s ease-in-out 1.2s infinite;
}
.floating-wa:hover, .floating-call:hover {
  transform: scale(1.12) translateY(-2px);
  filter: brightness(1.08);
}
.floating-wa:hover { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6), 0 8px 20px rgba(0,0,0,0.2); }
.floating-call:hover { box-shadow: 0 12px 36px rgba(229, 57, 53, 0.55), 0 8px 20px rgba(0,0,0,0.2); }
.floating-wa:hover i, .floating-call:hover i { animation: iconBounce 0.5s ease; }
.floating-wa i, .floating-call i {
  font-size: 26px;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid-enhanced { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gallery-item-large { grid-column: span 1; }
@media (min-width: 768px) {
  .gallery-item-large { grid-column: span 2; aspect-ratio: 16/9; }
}
.gallery-cta-box {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}
.gallery-cta-box h3 { margin-bottom: 12px; }
.gallery-cta-box p { color: var(--slate-600); margin-bottom: 24px; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}
.contact-info-card:hover {
  border-color: rgba(47, 172, 45, 0.3);
  box-shadow: 0 4px 16px rgba(47, 172, 45, 0.08);
}
.contact-info-icon { font-size: 28px; flex-shrink: 0; }
.contact-info-cards .contact-info-card h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { margin: 0; color: var(--slate-600); }
.contact-info-card a { color: var(--primary); font-weight: 600; }
.map-elevated { height: 380px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-radius: 16px; }

/* Quick Contact Strip */
.quick-contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.quick-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 172, 45, 0.12);
  border-color: var(--primary);
}
.quick-contact-icon { font-size: 36px; }
.quick-contact-label { font-size: 13px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 1px; }
.quick-contact-value { font-weight: 700; font-size: 1.1rem; color: var(--slate-800); margin-top: 4px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 16px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Contact Page - New Design */
.contact-page-main { background: var(--slate-50); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}
.contact-info-title { font-size: 1.75rem; margin-bottom: 12px; }
.contact-info-desc { color: var(--slate-600); margin-bottom: 28px; line-height: 1.6; }
.contact-info-cards-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card-new {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
a.contact-info-card-new:hover {
  transform: translateX(6px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(47, 172, 45, 0.12);
}
.contact-info-card-address { cursor: default; }
.contact-info-icon-new {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 172, 45, 0.12), rgba(13, 148, 136, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s;
}
a.contact-info-card-new:hover .contact-info-icon-new {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: var(--white);
}
.contact-info-icon-new.wa-icon { color: #25d366; }
a.contact-info-card-new:hover .contact-info-icon-new.wa-icon { color: var(--white); }
.contact-info-card-new h4 { font-size: 1rem; margin-bottom: 4px; color: var(--slate-800); }
.contact-info-card-new p { font-size: 15px; color: var(--slate-600); margin: 0; line-height: 1.5; }
.contact-info-card-new a { color: var(--primary); }
.contact-form-section { position: sticky; top: 100px; }
.contact-form-box-new {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}
.contact-form-box-new h3 { font-size: 1.35rem; margin-bottom: 8px; }
.form-sub { color: var(--slate-600); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }
.contact-form-box-new .form-group { margin-bottom: 16px; }
.contact-form-box-new .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.contact-form-box-new .form-group input,
.contact-form-box-new .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-box-new .form-group input:focus,
.contact-form-box-new .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 172, 45, 0.12);
}
.contact-form-box-new .form-group textarea { min-height: 120px; resize: vertical; }
.req { color: var(--accent-call); }
.btn-contact-submit { padding: 14px 24px; font-size: 1rem; margin-top: 8px; }
.contact-form-box-new .form-note { font-size: 14px; color: var(--slate-600); margin-top: 16px; }
.contact-form-box-new .form-note a { color: var(--primary); font-weight: 600; }
.contact-map-section { padding-top: 0; }
.me-2 { margin-right: 8px; }

/* ========== PRICING ========== */
.section-pricing { background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 991px) { .pricing-cards { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(47, 172, 45, 0.25);
  border-color: rgba(47, 172, 45, 0.3);
}
.pricing-card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(47, 172, 45, 0.15);
}
.pricing-card-featured .pricing-card-header { background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%); color: var(--white); }
.pricing-card-featured .pricing-badge { background: rgba(255,255,255,0.3); color: var(--white); }
.pricing-card-header {
  padding: 24px;
  background: var(--slate-100);
  text-align: center;
}
.pricing-card-header h4 { margin: 0 0 8px; font-size: 1.35rem; }
.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(47, 172, 45, 0.15);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-card-body { padding: 24px; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row span { color: var(--slate-600); }
.pricing-row strong { color: var(--primary); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-table th {
  background: var(--slate-100);
  font-weight: 700;
  color: var(--slate-800);
}
.pricing-table tr:hover td { background: var(--slate-50); }
@media (max-width: 768px) {
  .pricing-table { font-size: 14px; }
  .pricing-table th, .pricing-table td { padding: 12px; }
}

/* ========== CONTENT SECTION (SEO - Single) ========== */
.content-section {
  padding: 52px 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}
.content-section .content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: 25px;
  margin-bottom: 16px;
  margin-top: 36px;
  line-height: 1.4;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
  font-weight: 600;
}
.content-section p {
  margin-bottom: 16px;
  color: var(--slate-700);
  line-height: 1.8;
  text-align: justify;
}

/* Read more (no-JS) */
.read-more { margin: 0 0 16px; }
.read-more-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
  user-select: none;
}
.read-more-link:hover { color: var(--accent-teal); }
.read-more-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.read-more-toggle:checked ~ .read-more-open { display: none; }
.read-more-toggle:checked ~ .read-more-body { max-height: 5000px; }
.read-more-close { margin-top: 10px; }
.read-more-body p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .content-section h2 { font-size: 20px; }
}
.content-section a { color: var(--primary); font-weight: 600; }
.content-section a:hover { color: var(--accent-teal); }
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--slate-700);
  padding: 8px 0;
  transition: transform 0.2s, padding-left 0.2s;
}
.check-list li:hover {
  padding-left: 8px;
}
.check-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.check-list li:hover::before { transform: scale(1.2); }
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.how-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(47, 172, 45, 0.2);
  border-color: rgba(47, 172, 45, 0.3);
}
.how-card .icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.4s;
}
.how-card:hover .icon-wrap {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(47, 172, 45, 0.4);
}
.how-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.how-card p { font-size: 14px; margin: 0; color: var(--slate-600); }
.chauffeur-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.chauffeur-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  transition: all 0.35s;
  border: 1px solid var(--gray-200);
}
.chauffeur-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(47, 172, 45, 0.25);
  border-color: rgba(47, 172, 45, 0.25);
}
.chauffeur-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s; }
.chauffeur-card:hover img { transform: scale(1.08); }
.chauffeur-card .card-body { padding: 24px; }
.chauffeur-card h4 { color: var(--primary); margin-bottom: 8px; }
.section-tempo-options { background: var(--slate-50); }
.tempo-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.tempo-option-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: all 0.35s;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
}
.tempo-option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(47, 172, 45, 0.22);
  border-color: rgba(47, 172, 45, 0.3);
}
.tempo-option-card .btn-book { transition: all 0.3s; }
.tempo-option-card:hover .btn-book {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-teal) 100%);
  transform: scale(1.02);
}
/* Image: full visible, no crop – contain in padded box */
.tempo-card-img {
  position: relative;
  flex: 0 0 250px;
  min-height: 220px;
  background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tempo-card-img img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s;
}
.tempo-option-card:hover .tempo-card-img img { transform: scale(1.05); }
.tempo-option-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.tempo-option-card .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tempo-option-card h4 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--slate-900);
  line-height: 1.3;
}
.tempo-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.tempo-specs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--slate-600);
}
.tempo-specs span {
  font-weight: 600;
  color: var(--slate-800);
  min-width: 52px;
}
.tempo-option-card .btn-book {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 575px) {
  .tempo-option-card { flex-direction: column; }
  .tempo-card-img {
    flex: none;
    min-height: 160px;
    padding: 16px;
  }
  .tempo-card-img img { max-height: 140px; }
}
.pricing-note {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-left: 4px solid var(--accent-amber);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
}
/* Testimonial Carousel – fixed banner + overlay (What Customers Say) */
.section-testimonials {
  position: relative;
  isolation: isolate;
  background-color: #0f172a;
  background-image: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(13, 148, 136, 0.72) 45%,
      rgba(15, 23, 42, 0.88) 100%
    ),
    url('../imgs/header-banner/banner.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.section-testimonials .section-title p {
  color: rgba(255, 255, 255, 0.88);
}
/* iOS / many mobile browsers: fixed attachment is unreliable */
@media (max-width: 991px) {
  .section-testimonials {
    background-attachment: scroll;
  }
}
.testimonial-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  padding: 8px 0;
}
.testimonial-carousel-wrap .testimonial-card {
  flex: 0 0 360px;
  min-width: 300px;
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.testimonial-carousel-wrap .testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(47, 172, 45, 0.1);
}
.testimonial-carousel-wrap .testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-700);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-carousel-wrap .testimonial-card .author { font-weight: 700; font-size: 1rem; color: var(--slate-900); }
.testimonial-carousel-wrap .testimonial-card .location { font-size: 13px; color: var(--accent-teal); margin-top: 4px; }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.testimonial-prev, .testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.testimonial-prev:hover, .testimonial-next:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(47, 172, 45, 0.06);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.testimonial-dot:hover { background: var(--slate-400); }
.testimonial-dot.active {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  width: 24px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .testimonial-carousel-wrap .testimonial-card { flex: 0 0 calc(50% - 12px); min-width: 260px; }
}
@media (max-width: 576px) {
  .testimonial-carousel-wrap .testimonial-card { flex: 0 0 100%; min-width: 100%; }
}

/* FAQs */
.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: rgba(47, 172, 45, 0.3);
  box-shadow: 0 4px 20px rgba(47, 172, 45, 0.08);
  transform: translateX(4px);
}
.faq-item.open {
  border-color: rgba(47, 172, 45, 0.4);
  box-shadow: 0 8px 28px rgba(47, 172, 45, 0.12);
}
.faq-q {
  padding: 22px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-size: 1.02rem;
}
.faq-q:hover { background: var(--slate-50); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 0 20px; margin: 0; text-align: justify; }

/* Contact Section Home */
.contact-section {
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 100%);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(47, 172, 45, 0.12);
}
.contact-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.contact-card h4 { margin-bottom: 8px; }
.contact-card .contact-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.contact-card:hover .contact-cta { color: var(--accent-teal); }
.section-faqs-contact {
  background: linear-gradient(135deg, rgba(47, 172, 45, 0.04) 0%, var(--slate-50) 30%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.section-faqs-contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 172, 45, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.faq-contact-wrapper { position: relative; z-index: 1; }
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .faq-contact-grid { grid-template-columns: 1fr; }
}
.faqs-col-inner {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.faqs-col-inner:hover { box-shadow: 0 16px 48px rgba(47, 172, 45, 0.1); }
.contact-form-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.contact-form-box:hover {
  box-shadow: 0 16px 48px rgba(47, 172, 45, 0.1);
  border-color: rgba(47, 172, 45, 0.2);
}
.faqs-col h3, .contact-form-col h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--slate-800);
  padding-bottom: 16px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.faqs-wrap { margin: 0; }
.contact-form-col .contact-form { margin-bottom: 16px; }
.contact-form-col .contact-form input,
.contact-form-col .contact-form textarea {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-col .contact-form input:focus,
.contact-form-col .contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 172, 45, 0.1);
}
.form-note { font-size: 14px; color: var(--slate-600); }
.form-note a { color: var(--primary); font-weight: 600; transition: color 0.2s; }
.form-note a:hover { color: var(--accent-teal); }
.btn-full { width: 100%; }
.section-faqs {
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
}
.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.testimonial-card p { font-style: italic; margin-bottom: 16px; color: var(--slate-700); }
.testimonial-card .author { font-weight: 600; color: var(--slate-800); }
.testimonial-card .location { font-size: 14px; color: var(--accent-teal); }

.d-flex { display: flex; flex-wrap: wrap; gap: 8px 16px; }
/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ========== DETAIL PAGE (Taxi / Tempo Location) ========== */
.detail-page-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.detail-page-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--slate-700);
}
.detail-page-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.table-responsive .pricing-table { margin: 0; }

/* How It Works Steps */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.how-step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47, 172, 45, 0.12);
  border-color: rgba(47, 172, 45, 0.3);
}
.how-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.how-step-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--slate-800); }
.how-step-card p { font-size: 14px; color: var(--slate-600); margin: 0; line-height: 1.6; }

/* Benefits Grid (Taxi detail) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 172, 45, 0.1);
  border-color: rgba(47, 172, 45, 0.2);
}
.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(47, 172, 45, 0.12), rgba(13, 148, 136, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--slate-800); }
.benefit-card p { font-size: 14px; color: var(--slate-600); margin: 0; line-height: 1.6; }

/* Locations Page */
.locations-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.locations-header h2 { margin-bottom: 4px; }
.locations-header p { color: var(--slate-600); margin: 0; font-size: 15px; }
.locations-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
}
.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 172, 45, 0.12);
  border-color: var(--primary);
  color: var(--slate-900);
}
.location-card-icon { font-size: 28px; margin-bottom: 12px; color: var(--primary); }
.location-card-tempo .location-card-icon { color: var(--accent-teal); }
.location-card h3 { font-size: 1.1rem; margin: 0 0 4px; color: var(--slate-800); }
.location-card p { font-size: 13px; color: var(--slate-600); margin: 0 0 12px; }
.location-card-arrow {
  margin-top: auto;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
}
.location-card-tempo:hover .location-card-arrow { color: var(--accent-teal); }
.why-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-loc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.why-loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: rgba(47, 172, 45, 0.3);
}
.why-loc-icon { font-size: 36px; margin-bottom: 16px; color: var(--primary); }
.why-loc-card h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--slate-800); }
.why-loc-card p { font-size: 15px; color: var(--slate-600); margin: 0; line-height: 1.6; }

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47, 172, 45, 0.15);
  border-color: rgba(47, 172, 45, 0.3);
}
.blog-card-link { text-decoration: none; color: inherit; display: block; }
.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.blog-card-meta i { margin-right: 4px; width: 14px; }
.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--slate-800);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-body p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  transition: gap 0.2s;
}
.blog-card:hover .blog-card-read { gap: 10px; }
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.blog-page-info { font-size: 15px; color: var(--slate-600); }

/* ----- Blog post detail page (TinyMCE + layout) ----- */
.page-blog-detail .page-header {
  padding: 84px 0 72px;
  position: relative;
}
.page-blog-detail .page-header .container {
  position: relative;
  z-index: 1;
}
.page-blog-detail .breadcrumb {
  margin: 0 auto 22px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.page-blog-detail .page-header h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.page-blog-detail .blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  align-items: center;
  padding: 18px 26px;
  margin: -32px auto 0;
  max-width: calc(var(--container) - 40px);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 2;
}
.page-blog-detail .blog-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-blog-detail .blog-meta-bar i {
  color: var(--primary);
  font-size: 15px;
}

.page-blog-detail .section-bg-home-2 {
  padding-top: 48px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: 40px;
  align-items: start;
}
@media (max-width: 991px) {
  .blog-detail-layout { grid-template-columns: 1fr; }
}

.blog-post-surface {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 4px 36px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.blog-post-excerpt {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--slate-600);
  padding: 1.1em 1.25em;
  margin: 0 0 1.75rem;
  background: linear-gradient(135deg, rgba(47, 172, 45, 0.07) 0%, rgba(13, 148, 136, 0.06) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
}

/* TinyMCE / rich article body */
.blog-article-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--slate-700);
  overflow-wrap: break-word;
}
.blog-article-content > *:first-child { margin-top: 0 !important; }
.blog-article-content > *:last-child { margin-bottom: 0 !important; }

.blog-article-content h1 {
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--slate-900);
  margin: 2rem 0 0.65em;
  padding-bottom: 0.45em;
  border-bottom: 3px solid var(--primary);
  line-height: 1.25;
}
.blog-article-content h2 {
  font-size: clamp(1.4rem, 3.2vw, 1.75rem);
  font-weight: 800;
  color: var(--slate-900);
  margin: 1.85em 0 0.55em;
  line-height: 1.3;
  position: relative;
  padding-left: 16px;
}
.blog-article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.12em;
  bottom: 0.12em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent-teal));
}
.blog-article-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--slate-800);
  margin: 1.55em 0 0.5em;
}
.blog-article-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 1.35em 0 0.45em;
}
.blog-article-content h5,
.blog-article-content h6 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-700);
  margin: 1.2em 0 0.4em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-article-content p {
  margin: 0 0 1.15em;
}

.blog-article-content a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-color: rgba(47, 172, 45, 0.4);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.blog-article-content a:hover {
  color: var(--primary-darker);
  text-decoration-color: var(--primary);
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 1.1em 0 1.3em;
  padding-left: 1.4em;
  list-style-position: outside;
}
.blog-article-content ul { list-style-type: disc; }
.blog-article-content ol { list-style-type: decimal; }
.blog-article-content li {
  margin-bottom: 0.5em;
  padding-left: 0.25em;
}
.blog-article-content li::marker {
  color: var(--primary);
}
.blog-article-content li > ul,
.blog-article-content li > ol {
  margin-top: 0.45em;
  margin-bottom: 0.45em;
}

.blog-article-content blockquote {
  margin: 1.5em 0;
  padding: 1.15em 1.3em 1.15em 1.45em;
  border-left: 4px solid var(--accent-teal);
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.08), transparent 55%);
  border-radius: 0 14px 14px 0;
  color: var(--slate-800);
  font-style: italic;
  font-size: 1.05em;
}

.blog-article-content hr {
  border: none;
  height: 2px;
  margin: 2.25em 0;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.blog-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-article-content th,
.blog-article-content td {
  border: 1px solid var(--gray-200);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.blog-article-content th {
  background: var(--slate-900);
  color: var(--white);
  font-weight: 600;
}
.blog-article-content tbody tr:nth-child(even) td {
  background: var(--slate-50);
}

.blog-article-content code {
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 0.88em;
  background: var(--slate-100);
  padding: 0.18em 0.45em;
  border-radius: 6px;
  color: var(--accent-teal);
}
.blog-article-content pre {
  margin: 1.25em 0;
  padding: 1.15em 1.25em;
  background: var(--slate-900);
  color: #e2e8f0;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.55;
}
.blog-article-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* Content images: full width of article column, max 400px tall */
.blog-article-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 1.75em 0;
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.11);
  border: 1px solid var(--gray-200);
  background: var(--slate-50);
}
.blog-article-content figure {
  margin: 1.75em 0;
}
.blog-article-content figcaption {
  margin-top: 0.65em;
  font-size: 14px;
  color: var(--slate-500);
  text-align: center;
  font-style: italic;
}
.blog-article-content p img:only-child {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.blog-article-content strong,
.blog-article-content b {
  color: var(--slate-900);
  font-weight: 700;
}
.blog-article-content em,
.blog-article-content i:not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
  font-style: italic;
}

.blog-article-content iframe,
.blog-article-content video {
  width: 100%;
  max-height: 400px;
  border-radius: 14px;
  margin: 1.5em 0;
  border: 1px solid var(--gray-200);
}

.blog-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-200);
}
.blog-detail-actions .btn-primary {
  margin: 0;
}

.blog-sidebar-box {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 100px;
}
.page-blog-detail .blog-sidebar-box h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--slate-900);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(47, 172, 45, 0.25);
}
.blog-sidebar-box p { font-size: 14px; color: var(--slate-600); margin-bottom: 16px; line-height: 1.6; }

/* Related posts (WordPress-style sidebar widget) */
.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-related-widget {
  padding-bottom: 20px;
}
.blog-widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(47, 172, 45, 0.22) !important;
}
.blog-widget-title i {
  color: var(--primary);
  font-size: 1rem;
}
.blog-related-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.blog-related-list li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--gray-200);
}
.blog-related-list li:last-child {
  border-bottom: none;
}
.blog-related-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  text-decoration: none !important;
  color: inherit;
  transition: background 0.2s;
  border-radius: 10px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.blog-related-link:hover {
  background: var(--slate-50);
}
.blog-related-link:hover .blog-related-title {
  color: var(--primary-dark);
}
.blog-related-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--slate-100);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-related-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.blog-related-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--slate-800);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.blog-related-meta {
  font-size: 12px;
  color: var(--slate-500);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-related-meta i {
  font-size: 11px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .page-blog-detail .blog-meta-bar {
    margin-top: -24px;
    padding: 14px 18px;
    gap: 10px 16px;
  }
  .blog-post-surface {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .blog-article-content {
    font-size: 16px;
  }
}
.section-pad { padding: 44px 0; }

/* ========== RESPONSIVE - ALL SCREEN SIZES ========== */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* Tablet & below (991px) */
@media (max-width: 991px) {
  .container { padding: 0 20px; }
  .section { padding: 44px 0; }
  .section-cta { padding: 52px 0; }
  .section-cta h2 { font-size: 1.75rem; }
  .section-cta .cta-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .section-cta .cta-phone { padding: 14px 28px; font-size: 1.1rem; }
  .section-cta .btn-outline { padding: 14px 28px; }
  .page-header { padding: 64px 0 48px; }
  .page-header h1 { font-size: 1.75rem; }
  .breadcrumb { font-size: 13px; flex-wrap: wrap; justify-content: center; }
  .section-title { margin-bottom: 32px; }
  .section-title h2 { font-size: 1.6rem; }
  .hero { min-height: 480px; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 1rem; max-width: 100%; }
  .booking-wrap { margin-top: -48px; }
  .booking-box { padding: 20px; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .locations-header { flex-direction: column; align-items: flex-start; }
  .footer-cta-box { flex-direction: column; text-align: center; padding: 24px; }
  .footer-cta-box h5 { font-size: 1.05rem; }
  .nav-menu .btn-nav-cta { width: 100%; justify-content: center; }
  .page-taxi-tempo .section { padding: 32px 0; }
  .page-taxi-tempo .page-header { padding: 52px 0 36px; }
  .page-taxi-tempo .section-cta { padding: 36px 0; }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-cta { padding: 40px 0; }
  .section-cta h2 { font-size: 1.5rem; }
  .section-cta .cta-buttons { flex-direction: column; }
  .section-cta .cta-phone, .section-cta .btn-outline { width: 100%; justify-content: center; }
  .page-header { padding: 56px 0 40px; }
  .page-header h1 { font-size: 1.5rem; }
  .page-header p { font-size: 14px; }
  .section-title { margin-bottom: 28px; }
  .section-title h2 { font-size: 1.45rem; }
  .section-title p { font-size: 14px; }
  .hero { min-height: 420px; padding-top: 24px; }
  .hero-content { padding-bottom: 24px; }
  .hero h1 { font-size: 1.4rem; margin-bottom: 12px; }
  .hero p { font-size: 0.95rem; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }
  .hero-nav { padding: 0 12px; }
  .hero-prev, .hero-next { width: 36px; height: 36px; font-size: 0.9rem; }
  .booking-wrap { margin-top: -36px; }
  .booking-box { padding: 16px; border-radius: 16px; }
  .booking-tabs { margin-bottom: 16px; gap: 4px; }
  .booking-tab { padding: 10px 14px; font-size: 12px; }
  .booking-form { grid-template-columns: 1fr; gap: 12px; }
  .navbar-brand img { height: 44px; }
  .top-bar { padding: 8px 0; font-size: 12px; }
  .top-bar-inner { gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .fleet-types-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 32px; }
  .stats-row { grid-template-columns: 1fr; gap: 16px; }
  .stat-box { padding: 20px; }
  .stat-box span { font-size: 1.75rem; }
  .pricing-cards { gap: 16px; }
  .contact-grid { gap: 32px; }
  .map-elevated { height: 280px; }
  .map-container { height: 260px; }
  .location-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .location-card { padding: 18px; }
  .location-card h3 { font-size: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .tempo-options-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .how-it-works-grid, .how-steps-grid { grid-template-columns: 1fr; }
  .chauffeur-services-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 16px; font-size: 0.95rem; }
  .faq-a { padding: 0 16px; }
  .faq-a p { padding: 0 0 16px; }
  .floating-call { right: 20px; bottom: 84px; width: 52px; height: 52px; }
  .floating-wa { right: 20px; bottom: 20px; width: 52px; height: 52px; }
  .floating-wa i, .floating-call i { font-size: 23px; }
  .content-section { padding: 48px 0; }
  .content-section h2 { font-size: 1.35rem; margin-top: 28px; }
  .content-section h3 { font-size: 1.05rem; }
  .check-list.d-flex { flex-direction: column; }
  .table-responsive { margin: 16px -16px; border-radius: 8px; }
  .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: 14px; }
  .page-taxi-tempo .section { padding: 28px 0; }
  .page-taxi-tempo .page-header { padding: 44px 0 28px; }
  .page-taxi-tempo .section-cta { padding: 32px 0; }
}

/* Small mobile (576px and below) */
@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .section { padding: 36px 0; }
  .section-cta { padding: 36px 0; }
  .page-taxi-tempo .section { padding: 24px 0; }
  .page-taxi-tempo .page-header { padding: 40px 0 24px; }
  .page-taxi-tempo .section-cta { padding: 28px 0; }
  .section-cta h2 { font-size: 1.35rem; }
  .section-cta .cta-subtitle { font-size: 0.95rem; }
  .page-header { padding: 48px 0 32px; }
  .page-header h1 { font-size: 1.35rem; }
  .section-title { margin-bottom: 24px; }
  .section-title h2 { font-size: 1.3rem; }
  .hero { min-height: 380px; }
  .hero h1 { font-size: 1.25rem; }
  .booking-wrap { margin-top: -28px; }
  .location-cards-grid { grid-template-columns: 1fr; }
  .locations-header { flex-direction: column; }
  .locations-badge { align-self: flex-start; }
  .footer-grid { gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 0; }
  .floating-call { right: 20px; bottom: 80px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .quick-contact-strip { grid-template-columns: 1fr; }
  .quick-contact-item { padding: 18px 20px; }
  .contact-info-card { padding: 18px; flex-direction: column; align-items: flex-start; }
  .why-card { padding: 24px 20px; }
  .how-card { padding: 24px 20px; }
  .pricing-card-header, .pricing-card-body { padding: 20px; }
  .section-faqs-contact .faqs-col-inner,
  .section-faqs-contact .contact-form-box { padding: 24px; }
}

/* Extra small (360px and below) */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.15rem; }
  .page-header h1 { font-size: 1.2rem; }
  .section-cta h2 { font-size: 1.2rem; }
  .section-cta .cta-phone { font-size: 1rem; padding: 12px 20px; }
  .booking-tab { padding: 8px 10px; font-size: 11px; }
  .floating-call { right: 20px; bottom: 76px; width: 48px; height: 48px; }
  .floating-wa { right: 20px; bottom: 18px; width: 48px; height: 48px; }
  .floating-wa i, .floating-call i { font-size: 22px; }
}

/* Large screens - ensure readability */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .section-cta h2 { font-size: 2.5rem; }
}

/* Prevent horizontal scroll from fixed/min widths */
@media (max-width: 400px) {
  .testimonial-carousel-wrap .testimonial-card { min-width: 100%; }
  .service-card img { height: 220px; }
  .car-card img, .car-card-img-wrap img { height: 180px; }
}
