/* ============================================================================
   SairisWheels - Enterprise Grade Static Website
   Styling for professional taxi and travel services
   ============================================================================ */

/* Root Variables & Typography */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #004e89;
  --accent-color: #1a7db8;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --transition-smooth: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: 16px;
  transition: padding-top 0.35s ease;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
nav.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--primary-color);
}

.navbar-logo {
  height: 55px;
  width: auto;
  max-width: 55px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  padding: 2px;
  background-color: #f0f0f0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand:hover .navbar-logo {
  filter: brightness(1.15) drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
  transform: translateY(-2px);
}

.navbar-text {
  white-space: nowrap;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--primary-color);
  font-weight: 700;
}

.language-toggle {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: white;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.language-toggle:hover {
  border-color: var(--primary-color);
  background: #fff8f5;
}

.language-toggle:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1001;
}

.skip-link:focus {
  top: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(0, 78, 137, 0.95)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:rgba(255,107,53,0.1);stop-opacity:1" /><stop offset="100%25" style="stop-color:rgba(0,78,137,0.1);stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad1)"/><circle cx="150" cy="100" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="1050" cy="500" r="120" fill="rgba(255,255,255,0.05)"/><path d="M 0 300 Q 300 200 600 300 T 1200 300" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
  background-size: cover, cover;
  background-position: center, center;
  color: var(--text-light);
  padding: 8rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
  animation: slideDown 0.8s ease-out;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #ff8a50);
  color: white;
  animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b, #ff6b35);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #003a62;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
  animation: slideInRight 0.8s ease-out 0.4s backwards;
}

.btn-outline:hover {
  background-color: white;
  color: var(--secondary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.form-message {
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.form-message-success {
  background-color: var(--success-color);
}

.form-message-error {
  background-color: #c0392b;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

@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);
  }
}

/* Section Spacing */
section {
  padding: 4rem 2rem;
}

/* Card Styles */
.card {
  background: linear-gradient(135deg, var(--bg-white), #fafafa);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-title {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Enterprise Homepage */
.home-hero {
  background:
    linear-gradient(90deg, rgba(0, 37, 66, 0.88) 0%, rgba(0, 54, 96, 0.72) 42%, rgba(0, 54, 96, 0.2) 100%),
    url('../images/hero-taxi.jpg');
  background-size: cover;
  background-position: center;
  min-height: 680px;
  justify-content: flex-start;
  text-align: left;
}

.home-hero::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
}

.home-hero-content {
  max-width: 760px;
  margin-left: max(2rem, calc((100vw - 1200px) / 2));
}

.hero-eyebrow,
.section-kicker {
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.home-hero .hero-lede {
  max-width: 680px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 640px;
  margin-top: 2rem;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--border-radius);
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.hero-metrics dt {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.trust-strip {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: -2.25rem 0 3rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 2;
}

.trust-strip div {
  background: var(--bg-white);
  padding: 1.35rem 1.5rem;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.trust-strip span {
  color: #52616f;
  font-size: 0.95rem;
}

.quick-booking {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin: 2rem 0 3rem;
  padding: 2rem;
}

.quick-booking-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.quick-booking-title {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.15;
}

.quick-booking-form {
  display: grid;
  gap: 1.5rem;
}

.qb-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.qb-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.qb-field label {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.qb-field input,
.qb-field select {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition-smooth);
}

.qb-field input:focus,
.qb-field select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.qb-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: transparent;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1ebe5b;
}

.quick-booking-message {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.quick-booking-message--success {
  background: #e8f7ef;
  border: 1px solid #b8e0c6;
  color: #1b5e37;
}

.quick-booking-message--error {
  background: #fff0f0;
  border: 1px solid #f5c2c0;
  color: #862f22;
}

.quick-booking-form .btn {
  min-width: 190px;
}

@media (max-width: 960px) {
  .qb-fields {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 680px) {
  .quick-booking {
    padding: 1.5rem;
  }

  .qb-fields {
    grid-template-columns: 1fr;
  }
}

.qb-guarantees {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.qb-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f0f7ff;
  border-radius: 20px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.qb-guarantee i {
  color: var(--primary-color);
}

.route-pricing {
  margin: 3rem 0;
  padding: 2.5rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.pricing-table {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.pricing-table:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-table h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.pricing-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.pricing-table .price {
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
}

.pricing-table .detail {
  color: #7a8b99;
  font-size: 0.85rem;
  text-align: right;
}

.airport-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.airport-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary-color);
  transition: var(--transition-smooth);
  position: relative;
}

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

.airport-featured {
  border-left: 5px solid var(--primary-color);
  background: linear-gradient(135deg, #fff8f5 0%, #f0f7ff 100%);
  transform: scale(1.02);
  order: -1;
}

.airport-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.airport-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.airport-header {
  margin-bottom: 1rem;
}

.airport-header h3 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.airport-distance {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #f0f7ff;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.airport-card > p {
  color: #52616f;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.airport-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: var(--border-radius);
}

.price-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vehicle-type {
  font-size: 0.85rem;
  color: #7a8b99;
  font-weight: 600;
}

.price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.airport-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.airport-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.airport-features i {
  color: var(--success-color);
}

.airport-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.airport-benefits article {
  text-align: center;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #ff8a50);
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.airport-benefits h3 {
  margin-bottom: 0.75rem;
}

.airport-benefits p {
  color: #52616f;
  font-size: 0.95rem;
  line-height: 1.6;
}

.airport-booking-cta {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
  text-align: center;
}

.airport-booking-cta h2 {
  color: white;
  margin-bottom: 1rem;
  padding: 0;
}

.airport-booking-cta h2::after {
  background: linear-gradient(90deg, #ff8a50, rgba(255, 255, 255, 0.5));
}

.airport-booking-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.faq-section {
  margin: 3rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
}

.faq-item i {
  color: var(--primary-color);
}

.faq-item p {
  color: #52616f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-featured {
  border-left: 4px solid var(--primary-color);
}

.testimonial-date {
  display: block;
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 0.25rem;
}

@media (max-width: 960px) {
  .airport-pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .qb-guarantees {
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .airport-pricing {
    grid-template-columns: 1fr;
  }

  .airport-booking-cta {
    padding: 2rem 1.5rem;
  }

  .airport-booking-cta h2 {
    font-size: 1.8rem;
  }

  .qb-guarantees {
    flex-direction: column;
  }
}

.same-day-tours {
  background: linear-gradient(135deg, #fff8f5 0%, #f0f7ff 100%);
  padding: 3rem 1rem;
  margin: 3rem 0;
  border-radius: var(--border-radius);
}

.same-day-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.tour-option {
  position: relative;
}

.tour-option input {
  display: none;
}

.tour-option input:checked + label {
  background: white;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.tour-option label {
  display: block;
  padding: 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tour-option label:hover {
  border-color: var(--primary-color);
}

.tour-name {
  display: block;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.35rem;
}

.tour-price {
  display: block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.tour-detail {
  display: block;
  color: #7a8b99;
  font-size: 0.85rem;
}

.same-day-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.same-day-fields input,
.same-day-fields select {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  font: inherit;
  font-size: 0.95rem;
}

.same-day-fields input:focus,
.same-day-fields select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.corporate-section {
  margin: 3rem 0;
}

.corporate-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.corp-package {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
}

.corp-package:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.corp-popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.corp-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.corp-header h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.corp-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #f0f7ff;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.corp-popular-badge {
  position: absolute;
  top: -12px;
  right: 0;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.corp-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.corp-features li {
  padding: 0.6rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.corp-features i {
  color: var(--success-color);
  flex-shrink: 0;
}

.loyalty-referral-band {
  margin: 3rem 0;
  padding: 2.5rem;
  background: #f8f9fa;
  border-radius: var(--border-radius);
}

.loyalty-referral-band .loyalty-section {
  max-width: 900px;
  margin: 0 auto;
}

.loyalty-section,
.referral-section {
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.loyalty-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.loyalty-item {
  text-align: center;
  padding: 1rem;
}

.loyalty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #ff8a50);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

.loyalty-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.loyalty-item p {
  color: #52616f;
  font-size: 0.9rem;
  margin: 0;
}

.loyalty-progress {
  background: linear-gradient(135deg, #fff8f5 0%, #f0f7ff 100%);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.loyalty-title {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #ff8a50);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: #52616f;
  margin: 0;
}

.referral-details {
  padding-top: 1rem;
}

.referral-flow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.referral-step {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 0.5rem;
}

.referral-step h4 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.referral-step p {
  color: #52616f;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.referral-arrow {
  color: #7a8b99;
  font-size: 1.5rem;
  font-weight: 700;
  display: none;
}

.referral-cta {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff8f5 100%);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 1rem;
}

.referral-code {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: monospace;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.referral-cta .btn {
  margin: 0.5rem 0.5rem;
}

@media (max-width: 960px) {
  .pricing-tables {
    grid-template-columns: repeat(2, 1fr);
  }
  .drivers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .pricing-tables {
    grid-template-columns: 1fr;
  }
  .drivers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .loyalty-referral-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .loyalty-details {
    grid-template-columns: 1fr;
  }

  .corporate-packages {
    grid-template-columns: 1fr;
  }

  .corp-popular {
    transform: scale(1);
  }

  .referral-arrow {
    display: block;
    margin: 0.5rem 0;
  }
}

@media (max-width: 680px) {
  .same-day-options {
    grid-template-columns: 1fr;
  }

  .same-day-fields {
    grid-template-columns: 1fr;
  }

  .loyalty-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-num {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p:last-child {
  color: #52616f;
  font-size: 1.05rem;
}

.process-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
}

.process-link:hover {
  color: var(--secondary-color);
}

/* Modal Backdrop & Card System */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 24px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.is-visible .modal-card {
  transform: translateY(0) scale(1);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.fare-calculator-modal {
  background: white;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calculator-header {
  background: var(--secondary-color);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator-header h2 {
  margin: 0;
  color: white;
  padding: 0;
}

.calculator-header h2::after {
  display: none;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* ============================================================================
   Sairis AI Assistant — Enterprise Chat Widget Styles
   ============================================================================ */
.ai-fab {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 9998;
  background: linear-gradient(135deg, #004e89 0%, #002b4d 100%);
  color: #ffffff;
  border: 2px solid #ff6b35;
  border-radius: 30px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 78, 137, 0.45);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}
.ai-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 78, 137, 0.55);
}
.ai-fab-badge {
  background: #ff6b35;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.ai-fab-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Nudge Popover */
.ai-nudge-popover {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 9997;
  background: #ffffff;
  border-left: 4px solid #ff6b35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 280px;
  cursor: pointer;
  display: none;
  animation: floatNudge 3s ease-in-out infinite;
}
.ai-nudge-popover.is-visible {
  display: block;
}
@keyframes floatNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.ai-nudge-close {
  position: absolute;
  top: 4px;
  right: 6px;
  border: none;
  background: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
}
.ai-nudge-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-nudge-avatar {
  font-size: 1.6rem;
}
.ai-nudge-content strong {
  font-size: 0.85rem;
  color: #004e89;
  display: block;
}
.ai-nudge-content p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 2px 0 0 0;
}

/* AI Chat Modal Container */
.ai-chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 30px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s ease;
}
.ai-chat-container.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  background: linear-gradient(135deg, #004e89 0%, #002b4d 100%);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar-online {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-chat-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.ai-status-text {
  font-size: 0.72rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
}
.ai-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-icon-btn, .ai-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.ai-icon-btn:hover, .ai-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ai-chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  gap: 8px;
  max-width: 88%;
}
.ai-msg-bot {
  align-self: flex-start;
}
.ai-msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.ai-msg-avatar {
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-msg-user .ai-msg-avatar {
  background: #ff6b35;
  color: white;
}
.ai-msg-bubble {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  border-top-left-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
  border: 1px solid #e2e8f0;
}
.ai-msg-user .ai-msg-bubble {
  background: #004e89;
  color: #ffffff !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 2px;
  border: none;
}
.ai-msg-user .ai-msg-bubble p,
.ai-msg-user .ai-msg-bubble span,
.ai-msg-user .ai-msg-bubble strong {
  color: #ffffff !important;
}
.ai-msg-bubble p {
  margin: 0 0 6px 0;
}
.ai-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Quick Chips */
.ai-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.ai-quick-chips button {
  background: #ffffff;
  border: 1px solid #004e89;
  color: #004e89;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ai-quick-chips button:hover {
  background: #004e89;
  color: #ffffff;
}

/* Footer & Input */
.ai-chat-footer {
  padding: 10px 12px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.ai-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 4px 6px;
  border-radius: 24px;
  border: 1px solid #cbd5e1;
}
.ai-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 6px;
  font-size: 0.85rem;
  outline: none;
  color: #0f172a;
}
.ai-voice-btn, .ai-send-btn {
  background: #004e89;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.ai-voice-btn {
  background: #e2e8f0;
  color: #475569;
}
.ai-voice-btn.is-listening {
  background: #ef4444;
  color: white;
  animation: pulseMic 1.2s infinite;
}
@keyframes pulseMic {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.ai-send-btn {
  background: #ff6b35;
}
.ai-footer-sub {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 4px;
}
.ai-sub-link {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.ai-sub-link--wa {
  color: #10b981;
  font-weight: 700;
}
.ai-sub-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .ai-fab {
    bottom: 75px;
    right: 12px;
    padding: 8px 14px;
  }
  .ai-chat-container {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}


/* ============================================================================
   UI/UX Overhaul Enhancements (Added for Taxi & Travel Modernization)
   ============================================================================ */

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px;
  z-index: 2000;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-btn:active {
  transform: scale(0.96);
}

.sticky-btn--whatsapp {
  background-color: #25d366;
}

.sticky-btn--call {
  background-color: var(--secondary-color);
}

/* Adjust page padding for mobile sticky bar overlap */
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: grid;
  }
  body {
    padding-bottom: 70px; /* Space for the floating bottom bar */
  }
}

/* Hero Booking Container & Widget */
.hero-booking-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.hero-booking-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  width: 100%;
  border-top: 4px solid var(--primary-color);
  color: var(--text-dark);
  text-align: left;
}

.hero-booking-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--secondary-color);
  text-align: left;
  padding-bottom: 0.5rem;
  position: relative;
}

.hero-booking-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  transform: none;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-field-full {
  grid-column: span 2;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7a8b99;
  letter-spacing: 0.05em;
}

.booking-field input,
.booking-field select {
  padding: 10px 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hero-booking-card .form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* Visual Vehicle Showcase */
.fleet-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.fleet-card {
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fleet-card.is-active {
  border-color: var(--primary-color);
  background-color: rgba(255, 107, 53, 0.02);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.fleet-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.fleet-card-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
  text-align: center;
}

.fleet-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  text-align: center;
}

.fleet-card h3::after {
  display: none;
}

.fleet-card-specs {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #7a8b99;
  margin-bottom: 16px;
  border-bottom: 1px solid #f0f4f8;
  padding-bottom: 12px;
}

.fleet-card-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fleet-card-rate {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-top: auto;
}

.fleet-card-rate span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7a8b99;
}

/* Destination Visual Cards Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.destination-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.destination-img-wrap {
  position: relative;
  height: 200px;
  background-color: #e2e8f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination-img-placeholder {
  font-size: 3.5rem;
  color: rgba(0, 78, 137, 0.15);
}

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

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card-content {
  padding: 20px;
}

.destination-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.destination-card-content h3::after {
  display: none;
}

.destination-card-content p {
  font-size: 0.85rem;
  color: #52616f;
  margin-bottom: 12px;
  line-height: 1.5;
}

.destination-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f4f8;
  padding-top: 12px;
  font-size: 0.8rem;
}

.destination-dist {
  color: #7a8b99;
  font-weight: 600;
}

.destination-link {
  color: var(--primary-color);
  font-weight: 700;
}

/* Smart Estimator Widget */
.estimator-widget {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 24px;
  margin: 32px 0;
  border: 1px solid #e2e8f0;
}

.estimator-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.estimator-widget h3::after {
  display: none;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.estimator-result {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid var(--primary-color);
  display: none;
}

.estimator-result.is-visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

.estimator-result-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.88rem;
}

.estimator-result-row:last-child {
  border-bottom: none;
  padding-top: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

/* Interactive Timeline (Itinerary tab system) */
.packages-timeline-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.timeline-tab-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #e2e8f0;
  background: var(--bg-white);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.timeline-tab-btn.is-active,
.timeline-tab-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.timeline-content-panel {
  display: none;
}

.timeline-content-panel.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.timeline-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background: #e2e8f0;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 24px;
}

.timeline-item-marker {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 0 3px var(--primary-color);
  z-index: 10;
}

.timeline-item-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f4f8;
}

.timeline-item-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
}

.timeline-time {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 700;
}

.timeline-item-card p {
  font-size: 0.85rem;
  color: #52616f;
  margin: 0;
  line-height: 1.5;
}

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


/* Floating WhatsApp FAB Button (Bottom Left) */
.whatsapp-fab {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 9990;
  background: #25d366;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* ============================================================================
   Sairis AI Assistant — Enterprise Chat Widget Styles
   ============================================================================ */
.ai-fab {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 9998;
  background: linear-gradient(135deg, #004e89 0%, #002b4d 100%);
  color: #ffffff;
  border: 2px solid #ff6b35;
  border-radius: 30px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 78, 137, 0.45);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}
.ai-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 78, 137, 0.55);
}
.ai-fab-badge {
  background: #ff6b35;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.ai-fab-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Nudge Popover */
.ai-nudge-popover {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 9997;
  background: #ffffff;
  border-left: 4px solid #ff6b35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  max-width: 280px;
  cursor: pointer;
  display: none;
  animation: floatNudge 3s ease-in-out infinite;
}
.ai-nudge-popover.is-visible {
  display: block;
}
@keyframes floatNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.ai-nudge-close {
  position: absolute;
  top: 4px;
  right: 6px;
  border: none;
  background: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
}
.ai-nudge-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-nudge-avatar {
  font-size: 1.6rem;
}
.ai-nudge-content strong {
  font-size: 0.85rem;
  color: #004e89;
  display: block;
}
.ai-nudge-content p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 2px 0 0 0;
}

/* AI Chat Modal Container */
.ai-chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 30px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s ease;
}
.ai-chat-container.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  background: linear-gradient(135deg, #004e89 0%, #002b4d 100%);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar-online {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-chat-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.ai-status-text {
  font-size: 0.72rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
}
.ai-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-icon-btn, .ai-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.ai-icon-btn:hover, .ai-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ai-chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  display: flex;
  gap: 8px;
  max-width: 88%;
}
.ai-msg-bot {
  align-self: flex-start;
}
.ai-msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.ai-msg-avatar {
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-msg-user .ai-msg-avatar {
  background: #ff6b35;
  color: white;
}
.ai-msg-bubble {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  border-top-left-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
  border: 1px solid #e2e8f0;
}
.ai-msg-user .ai-msg-bubble {
  background: #004e89;
  color: #ffffff !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 2px;
  border: none;
}
.ai-msg-user .ai-msg-bubble p,
.ai-msg-user .ai-msg-bubble span,
.ai-msg-user .ai-msg-bubble strong {
  color: #ffffff !important;
}
.ai-msg-bubble p {
  margin: 0 0 6px 0;
}
.ai-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Quick Chips */
.ai-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.ai-quick-chips button {
  background: #ffffff;
  border: 1px solid #004e89;
  color: #004e89;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ai-quick-chips button:hover {
  background: #004e89;
  color: #ffffff;
}

/* Footer & Input */
.ai-chat-footer {
  padding: 10px 12px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.ai-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 4px 6px;
  border-radius: 24px;
  border: 1px solid #cbd5e1;
}
.ai-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 6px;
  font-size: 0.85rem;
  outline: none;
  color: #0f172a;
}
.ai-voice-btn, .ai-send-btn {
  background: #004e89;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.ai-voice-btn {
  background: #e2e8f0;
  color: #475569;
}
.ai-voice-btn.is-listening {
  background: #ef4444;
  color: white;
  animation: pulseMic 1.2s infinite;
}
@keyframes pulseMic {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.ai-send-btn {
  background: #ff6b35;
}
.ai-footer-sub {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 4px;
}
.ai-sub-link {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.ai-sub-link--wa {
  color: #10b981;
  font-weight: 700;
}
.ai-sub-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .ai-fab {
    bottom: 75px;
    right: 12px;
    padding: 8px 14px;
  }
  .ai-chat-container {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* ============================================================================
   Enhanced CRO, UI/UX & Interactive Day-Tour Customizer Styles
   ============================================================================ */

/* Google Business 4.9★ Trust Badge */
.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}
.google-trust-badge .stars {
  color: #f59e0b;
  letter-spacing: 1px;
}
.google-trust-badge img {
  width: 18px;
  height: 18px;
}

/* GPS Location Button */
.btn-gps-location {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  margin-top: 4px;
  transition: all 0.2s ease;
}
.btn-gps-location:hover {
  background: #e2e8f0;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Card Micro-Interactions & Hover Elevations */
.fleet-card, .package-card, .service-card, .destination-card {
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fleet-card:hover, .package-card:hover, .service-card:hover, .destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 8px 12px;
  gap: 10px;
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    align-items: center;
  }
  body {
    padding-bottom: 60px;
  }
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.sticky-btn:active {
  transform: scale(0.97);
}
.sticky-btn-call {
  background: var(--secondary-color);
  color: #ffffff;
}
.sticky-btn-wa {
  background: #25d366;
  color: #ffffff;
}

/* Interactive Day-Tour Customizer Widget */
.tour-customizer-section {
  background: #f8fafc;
  padding: 50px 20px;
  border-radius: 16px;
  margin: 40px 0;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}
.customizer-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.customizer-header h2 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.customizer-header p {
  color: #64748b;
  font-size: 0.95rem;
}
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.spot-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  user-select: none;
}
.spot-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}
.spot-card.selected {
  border-color: var(--primary-color);
  background: #fff7f3;
}
.spot-card .check-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all 0.2s ease;
}
.spot-card.selected .check-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}
.spot-card h4 {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 4px;
  padding-right: 24px;
}
.spot-card p {
  font-size: 0.8rem;
  color: #64748b;
}
.spot-card .spot-dist {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 8px;
  display: inline-block;
}

.customizer-result-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.result-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.result-stat-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--secondary-color);
}
.result-stat-item span {
  font-size: 0.8rem;
  color: #64748b;
}
.vehicle-rate-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.v-rate-badge {
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
}
/* ============================================================================
   Enterprise Footer & Cookie Banner Styling
   ============================================================================ */

/* Footer Styling */
footer {
  background: #002542;
  color: #e2e8f0;
  padding: 60px 0 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px 24px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-section p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-section a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

.footer-section a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  background: #00192e;
  padding: 20px;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s ease;
}

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

/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #e2e8f0;
  padding: 18px;
  z-index: 10000;
  animation: slideUpCookie 0.4s ease-out forwards;
}

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

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner-content p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-content p a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-cookie-accept {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-cookie-accept:hover {
  background: #e05523;
}

.btn-cookie-decline {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

/* SairisWheels Telematics Exclusive Custom Attribution Branding */
.leaflet-control-attribution {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 0 !important; /* Hides all default text, links & separators */
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 4px 10px !important;
  border-radius: 4px 0 0 0 !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15) !important;
}
.leaflet-control-attribution::after {
  content: 'SairisWheels Telematics' !important;
  font-size: 0.75rem !important;
  color: #002542 !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}
.leaflet-control-attribution * {
  display: none !important; /* Completely hide Leaflet & OpenStreetMap anchor links */
}

