/* ==========================================================================
   TAXI VALENCIA EXPRESS (TEVAX) - DESIGN SYSTEM & STYLESHEET
   Brand Colors: Taxi Green (#008f39), Obsidian (#0f172a), Slate (#475569), Clean White (#ffffff)
   Typography: Playfair Display (Serif Elegance) & Plus Jakarta Sans / Inter (Clean Modern UI)
   ========================================================================== */

:root {
  --primary: #008f39;
  --primary-hover: #00772f;
  --primary-light: #e8f7ee;
  --primary-glow: rgba(0, 143, 57, 0.25);
  
  --secondary: #111827;
  --secondary-light: #1f2937;
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  
  --text-dark: #1a1b1f;
  --text-muted: #526071;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0b111e;
  
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 25px rgba(0, 143, 57, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-family: Arial, "Arial Fallback", "Helvetica Neue", Helvetica, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Uniform Arial Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, "Arial Fallback", "Helvetica Neue", Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* Top Emergency Bar */
.top-bar {
  background: var(--secondary);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-weight: 500;
}

.top-bar-item:hover {
  color: var(--text-white);
}

.top-bar-badge {
  background: rgba(0, 143, 57, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}



.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--secondary);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--primary);
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--bg-white);
  color: var(--text-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-flag {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #00772f 100%);
  color: var(--text-white);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #009d3e 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 143, 57, 0.4);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-phone {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.25);
}

.btn-phone:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 17, 30, 0.88) 0%, rgba(11, 17, 30, 0.72) 60%, rgba(0, 80, 32, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 60px 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #86efac;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 50px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Section Shared */
.section {
  padding: 90px 0;
}

.section-soft {
  background-color: var(--bg-soft);
}

.section-white {
  background-color: var(--bg-white);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.section-subtitle-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
  margin-bottom: 18px;
}

.section-dark .section-title {
  color: var(--text-white);
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-dark .section-desc {
  color: #94a3b8;
}

/* About / Intro Section */
.intro-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

.intro-badge-box {
  background: linear-gradient(145deg, #0b111e 0%, #1e293b 100%);
  color: white;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-badge-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.4;
}

.intro-year {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #4ade80;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.intro-badge-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 12px 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.intro-badge-desc {
  font-size: 0.875rem;
  color: #94a3b8;
}

.intro-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* Reasons / Feature Cards */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.reason-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 143, 57, 0.4);
  box-shadow: var(--shadow-lg);
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #22c55e 100%);
  opacity: 0;
  transition: var(--transition);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.reason-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.reason-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Split Showcase Feature */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-feature.reverse {
  direction: rtl;
}

.split-feature.reverse > * {
  direction: ltr;
}

.split-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.split-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-feature:hover .split-image-wrapper img {
  transform: scale(1.04);
}

.split-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
}

.split-content .section-title {
  text-align: left;
}

.split-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.split-content ul {
  list-style: none;
  margin: 24px 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--secondary);
}

.split-content ul li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 143, 57, 0.3);
}

.service-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img-wrapper img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 143, 57, 0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.service-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.service-card-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-btn:hover {
  color: var(--primary-hover);
  gap: 10px;
}

/* Interactive Booking & Quote Section */
.booking-section {
  background: linear-gradient(135deg, #0b111e 0%, #172338 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 143, 57, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.booking-info h2 {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.booking-info p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 35px;
  line-height: 1.65;
}

.direct-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: white;
}

.contact-card-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #22c55e;
  transform: translateX(6px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 143, 57, 0.25);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  display: block;
}

.contact-card-details strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

/* Booking Form Container */
.booking-form-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text-dark);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.booking-form-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.booking-form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-feedback {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.form-feedback.success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  display: block;
}

/* Footer */
.footer {
  background: #080d17;
  color: #94a3b8;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-title {
  color: white;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #cbd5e1;
}

.footer-bottom a:hover {
  color: #4ade80;
}

/* Floating Quick Actions (Mobile & Desktop) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: var(--primary);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Modal styles for Legal Pages */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 30, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: white;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-soft);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.modal-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--secondary);
}

.modal-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-body h4 {
  color: var(--secondary);
  margin: 18px 0 8px 0;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 30, 0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: white;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.drawer-nav a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  display: block;
  padding: 8px 0;
}

/* Media Queries */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .split-feature {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .top-bar-left {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-card {
    padding: 30px 20px;
    margin-top: -30px;
  }
  .split-feature {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .split-image-wrapper img {
    height: 320px;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .booking-form-box {
    padding: 24px 18px;
  }
}


/* --- Language Dropdown & Multilingual Styles (6 Languages) --- */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft, #f1f5f9);
  border: 1px solid var(--border-light, #e2e8f0);
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-dropdown-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 6px;
  min-width: 175px;
  z-index: 1100;
  display: none;
  flex-direction: column;
  gap: 2px;
}

.lang-dropdown-menu.open {
  display: flex;
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
  width: 100%;
}

.lang-dropdown-item:hover {
  background: #f1f5f9;
  color: #0b1a2d;
}

.lang-dropdown-item.active {
  background: rgba(0, 143, 57, 0.1);
  color: #008f39;
  font-weight: 700;
}

.lang-dropdown-item .code {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 700;
}

.lang-dropdown-item.active .code {
  color: #008f39;
}

/* Drawer Language Selector */
.drawer-lang-section {
  margin: 20px 0;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.drawer-lang-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}

.drawer-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.drawer-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
}

.drawer-lang-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.drawer-lang-btn.active {
  background: rgba(0, 143, 57, 0.1);
  border-color: #008f39;
  color: #008f39;
}
