/* FARENT – Premium Rent a Car */

:root {
  --bg: #f4f6f9;
  --bg-white: #ffffff;
  --bg-dark: #0f1419;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-light: #eff6ff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #059669;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.0625rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline {
  background: var(--bg-white);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.nav-list a:hover {
  color: var(--text);
  background: var(--bg);
}

.header-cta svg {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  overflow: hidden;
}

.hero-cinema {
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  will-change: opacity;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}

.hero-cinema .hero-overlay {
  z-index: 1;
}

.hero-cinema .hero-grid {
  z-index: 2;
}

.hero-car-panel {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-xl);
  padding: 0.35rem;
  box-shadow: var(--shadow-lg);
}

.hero-car-media {
  display: none;
}

.hero-car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-car-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.hero-car-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-car-specs {
  margin-bottom: 1rem;
}

.hero-discount-block {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.hero-discount-tiers {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-discount-tiers li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-radius: 10px;
}

.hero-discount-tiers .tier-days {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #78350f;
}

.hero-discount-tiers .tier-pct {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #b45309;
  line-height: 1;
  min-width: 2.5rem;
  text-align: center;
}

.hero-discount-tiers .tier-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-discount-detail {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.hero-quick-list-light li {
  color: rgba(255, 255, 255, 0.82);
}

.hero-fleet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.85rem;
}

.hero-fleet-controls .carousel-btn {
  position: static;
  transform: none;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.hero-fleet-controls .carousel-dots {
  margin: 0;
  flex: 1;
}

.hero-showcase {
  min-height: auto;
  display: block;
  padding: calc(var(--header-h) + 1.25rem) 0 1.5rem;
  background:
    linear-gradient(165deg, #f8fafc 0%, #eef2ff 42%, #fff 100%);
  border-bottom: 1px solid var(--border);
}

.hero-showcase-inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-showcase-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    gap: 2rem 2rem;
    align-items: start;
  }
}

.hero-copy {
  color: var(--text);
}

.hero-copy h1 {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-showcase .hero-lead {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero-showcase .hero-lead strong {
  color: var(--primary);
}

.hero-showcase .hero-badge {
  color: var(--text-secondary);
  background: var(--bg-white);
  border-color: var(--border);
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.hero-price-chip {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-price-unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-discount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-discount-chips span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.hero-quick-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.hero-quick-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1rem;
}

.hero-quick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.hero-fleet-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero-fleet-stack {
    margin: 0;
    margin-left: auto;
  }
}

.hero-carousel {
  max-width: none;
  margin: 0;
}

.hero-carousel .carousel-viewport {
  min-height: auto;
  background: var(--bg-white);
}

.hero-carousel .carousel-track,
.hero-carousel .carousel-slide {
  min-height: auto;
}

.hero-carousel .carousel-slide.is-active {
  grid-template-columns: 1fr;
  min-height: auto;
}

.hero-carousel .carousel-slide-media {
  aspect-ratio: 16 / 10;
  max-height: 150px;
  min-height: 0;
}

.hero-carousel .carousel-slide-info {
  padding: 0.85rem 1rem 1rem;
}

.hero-carousel .carousel-slide-price {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.hero-carousel .carousel-slide-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.hero-carousel .carousel-slide-desc {
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-carousel .car-specs {
  margin-bottom: 0.65rem;
  gap: 0.35rem;
}

.hero-carousel .car-specs li {
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
}

.hero-carousel .carousel-slide-info .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.hero-carousel .carousel-dots {
  margin-top: 0.65rem;
}

.hero-carousel .carousel-btn {
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 36px;
  height: 36px;
}

.hero-discount {
  margin-bottom: 0;
  padding: 0.75rem 1rem;
}

.hero-discount .btn {
  margin-left: auto;
  flex-shrink: 0;
}

.discount-banner-text {
  flex: 1;
  min-width: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.75) 45%, rgba(15, 20, 25, 0.4) 100%),
    linear-gradient(to top, rgba(15, 20, 25, 0.6) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 320px;
  }
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-lead strong {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-xl);
  padding: 0.35rem;
  box-shadow: var(--shadow-lg);
}

.hero-panel-inner {
  padding: 1.75rem;
  border-radius: calc(var(--radius-xl) - 4px);
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
}

.hero-panel-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.hero-panel-price {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

.hero-panel-price span {
  font-size: 2.75rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.hero-panel-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-panel-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

/* Trust bar */
.trust-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin: 0;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--primary-light);
  border-radius: 12px;
  color: var(--primary);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

/* Car carousel */
.section-flota {
  padding-top: 2.5rem;
  background: var(--bg-white);
}

.discount-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
}

.discount-banner[hidden] {
  display: none !important;
}

.discount-banner-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #b45309;
  background: #fde68a;
  border-radius: 12px;
}

.discount-banner strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 0.15rem;
}

.discount-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.discount-banner .btn {
  margin-left: auto;
}

.hero-discount-block .hero-panel-discount {
  margin: 0;
  padding: 0;
  background: none;
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.hero-panel-discount {
  margin: -0.75rem 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: #fef3c7;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  display: inline-block;
}

.car-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-height: 280px;
}

.carousel-track {
  position: relative;
  min-height: 280px;
}

.carousel-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 280px;
}

.carousel-slide.is-active {
  display: grid;
}

@media (min-width: 640px) {
  .carousel-slide.is-active {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }

  .carousel-viewport,
  .carousel-track,
  .carousel-slide {
    min-height: 340px;
  }
}

.carousel-slide-media {
  aspect-ratio: 16 / 11;
  min-height: 200px;
  overflow: hidden;
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
}

.carousel-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .carousel-slide-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.carousel-slide-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
}

@media (min-width: 768px) {
  .carousel-slide-info {
    padding: 2rem 2.25rem;
  }
}

.carousel-slide-price {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.carousel-slide-price small {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.carousel-slide-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.carousel-slide-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.carousel-slide-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.2s var(--ease);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.carousel-prev {
  left: -12px;
}

.carousel-next {
  right: -12px;
}

@media (max-width: 639px) {
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-btn { top: 28%; transform: none; }
}

.carousel-fallback {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--primary);
}

/* Location chips */
.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.location-chip {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}

.location-chip:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
}

.location-chip-main {
  background: var(--primary-light);
  border-color: rgba(29, 78, 216, 0.25);
  color: var(--primary);
  font-weight: 700;
}

.location-chip-main:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.location-chip-accent {
  background: var(--bg-white);
  border-color: var(--border-strong);
  color: var(--text-secondary);
}

.location-chip-more {
  background: transparent;
  border-style: dashed;
}

.chip-fee {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.chip-free {
  font-size: 0.7rem;
  font-weight: 600;
  color: #047857;
  margin-left: 0.2rem;
}

.location-chip-main .chip-free {
  color: #059669;
}

.field-hint-free {
  color: #047857;
  font-weight: 500;
}

.location-chip-accent .chip-fee {
  color: var(--primary);
}

.field-hint {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.field-hint[hidden] {
  display: none;
}

.section-fee,
.link-fee {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--primary);
}

.locations-airport-note {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.delivery-fee-note {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--primary);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* Car cards */
.car-card {
  overflow: hidden;
  padding: 0;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.car-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.car-card-pickable {
  cursor: pointer;
}

.car-card-pickable.is-selected {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.18);
}

.car-card-pickable.is-selected:hover {
  transform: translateY(-2px);
}

.location-booking-card.is-highlighted {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.car-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.car-card:hover .car-card-image img {
  transform: scale(1.04);
}

.car-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.car-card-body {
  padding: 1.5rem;
}

.car-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.car-card-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.car-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.car-specs li {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
}

.car-card .btn {
  width: 100%;
}

/* Legacy class aliases */
.car-card-price { display: none; }
.car-card-location { display: none; }

/* Rezervare */
.rezervare-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .rezervare-wrap {
    grid-template-columns: 1fr 1.1fr;
  }
}

.rezervare-info h2 {
  margin-bottom: 0.75rem;
}

.rezervare-info > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.phone-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.phone-card span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.phone-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.phone-link:hover {
  color: var(--primary);
}

.phone-card-wa {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--success);
}

/* Booking form */
.booking-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.label-opt {
  font-weight: 400;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
  background: var(--bg-white);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note.success {
  color: var(--success);
}

.form-note.error {
  color: var(--danger, #dc2626);
}

.booking-requirements {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.location-booking-card .booking-requirements {
  margin: 0.35rem 0 1.1rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-estimate {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.booking-estimate.is-highlighted {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.booking-estimate-title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.booking-estimate-lines {
  margin: 0;
}

.booking-estimate-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
}

.booking-estimate-line dt {
  color: var(--text-muted);
  font-weight: 500;
}

.booking-estimate-line dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.booking-estimate-total {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.booking-estimate-total strong {
  color: var(--primary);
  font-size: 1.125rem;
}

.booking-estimate-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-row-airport {
  margin-bottom: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.airport-transfer {
  margin-top: 0.75rem;
  padding: 0.85rem 0.95rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.airport-transfer-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.airport-transfer-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.airport-transfer-options .checkbox-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-card { padding: 2rem; }

/* Contact */
.contact .section-tag {
  margin-bottom: 0.5rem;
}

.contact h2 {
  margin-bottom: 0.75rem;
}

.contact-wrap {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.contact-lead {
  color: var(--text-secondary);
  margin-bottom: 0;
  max-width: 42rem;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-map-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.contact-card-item {
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card-item span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-card-item a {
  font-weight: 600;
  color: var(--text);
}

.contact-card-item a:hover {
  color: var(--primary);
}

.contact-card-item p {
  margin: 0;
  font-weight: 500;
  color: var(--text);
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: var(--bg);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-pin-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-placeholder {
  padding: 0;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-xl);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.2fr 1fr 2.15fr;
    align-items: start;
  }
}

.footer-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-side-cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 480px) {
  .footer-side-cols {
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
  }
}

.footer-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 0;
  padding-top: 0.25rem;
}

.footer-badge {
  display: block;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.2s var(--ease);
  flex: 0 0 auto;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-badge img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 150px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .footer-badge img {
    height: 52px;
    max-width: 165px;
  }
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.footer-brand p {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-phone,
.footer-email {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.35rem;
}

.footer-email {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--accent);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-list a:hover {
  color: #fff;
}

.footer-company-name {
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-company-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.footer-company-meta li {
  margin-bottom: 0.2rem;
}

.footer-company-meta span {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar-inner {
  padding: 0.85rem 0;
  text-align: center;
}

.footer-bar p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.contact-card-company p {
  margin: 0.15rem 0;
  font-size: 0.9rem;
}

.legal-page {
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  background: var(--bg);
}

.legal-wrap {
  max-width: 720px;
}

.legal-wrap-wide {
  max-width: 900px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.legal-nav a {
  color: var(--accent);
  text-decoration: none;
}

.legal-nav a:hover {
  text-decoration: underline;
}

.legal-nav span {
  color: var(--text-muted);
}

.legal-wrap h1 {
  margin-bottom: 0.35rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
}

.legal-content h3 {
  font-size: 1rem;
  margin: 1.1rem 0 0.45rem;
  color: var(--text);
}

.legal-content strong {
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-cta {
    text-align: right;
  }
}

.footer-copy {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

/* Float */
.float-call,
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
  transition: transform 0.2s var(--ease);
}

.float-call:hover,
.float-actions:hover {
  transform: scale(1.08);
  color: #fff;
}

/* Location pages (subpages) */
.hero-compact {
  min-height: auto;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  background: var(--bg-dark);
}

.hero-compact .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1419 0%, #1e3a5f 100%);
}

.hero-compact .hero-content {
  position: relative;
  color: #fff;
}

.hero-compact h1 {
  color: #fff;
}

.hero-compact .hero-lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}

.hero-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-chip-accent {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.45);
  color: #fde68a;
}

.location-page {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.location-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .location-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2.5rem;
  }

  .location-booking {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.location-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.location-panel-title {
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.location-intro.card {
  padding: 1.5rem 1.75rem;
}

.location-intro p {
  margin: 0 0 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.location-intro p:last-child {
  margin-bottom: 0;
}

.location-pricing.card {
  padding: 1.5rem 1.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-grid-single {
  grid-template-columns: 1fr;
}

.pricing-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.pricing-item-accent {
  background: #fffbeb;
  border-color: #fcd34d;
}

.pricing-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
}

.pricing-perks {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.pricing-perks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.location-fleet-block {
  padding-top: 0.5rem;
}

.location-fleet-head {
  margin-bottom: 1rem;
}

.location-fleet-note {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.location-fleet-grid {
  gap: 1.25rem;
}

.location-nearby-block {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}

.location-nearby-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-pill {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.location-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.location-booking-card {
  padding: 1.5rem 1.5rem 1.25rem;
}

.location-booking-lead {
  margin: -0.35rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.location-booking-phone {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.location-booking-phone span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: #fff;
}

.content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.location-article p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.delivery-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.location-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aside-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.location-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-links li {
  margin-bottom: 0.5rem;
}

.location-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.location-links a:hover {
  color: var(--primary);
}

.section-header-compact {
  margin-bottom: 1.25rem;
}

.section-header-compact h2 {
  margin-bottom: 0.35rem;
}

.section-header-compact p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.flota-subpage {
  padding-top: 2rem;
  background: var(--bg);
}

.flota-subpage-link {
  margin-top: 1.5rem;
  text-align: center;
}

.location-content {
  padding-bottom: 2rem;
}

.delivery-fee-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.locations-hub-section {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.locations-hub {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.loc-hub-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.loc-hub-block-airport {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg-white) 100%);
}

/* Vizual ascuns — rămâne în DOM pentru SEO (județul Alba) */
.loc-hub-block-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  box-shadow: none;
}

.loc-hub-block-head {
  margin-bottom: 1.25rem;
}

.loc-hub-block-head h2 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.loc-hub-block-head p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.loc-hub-cards {
  display: grid;
  gap: 1rem;
}

.loc-hub-cards-3 {
  grid-template-columns: 1fr;
}

.loc-hub-cards-2 {
  grid-template-columns: 1fr;
}

.loc-hub-cards-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .loc-hub-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .loc-hub-cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.loc-hub-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
  min-height: 100%;
}

.loc-hub-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.loc-hub-card-primary {
  background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 100%);
  border-color: #bfdbfe;
}

.loc-hub-card-airport {
  background: var(--bg-white);
}

.loc-hub-card-wide {
  max-width: 100%;
}

.loc-hub-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.15rem;
}

.loc-hub-badge-free {
  background: #dcfce7;
  color: #166534;
}

.loc-hub-badge-fee {
  background: #fef3c7;
  color: #92400e;
}

.loc-hub-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

.loc-hub-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  flex: 1;
}

.loc-hub-cta {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.loc-hub-card:hover .loc-hub-cta {
  text-decoration: underline;
}

.loc-hub-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1rem;
}

.loc-hub-link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.loc-hub-link:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  color: var(--primary);
}

.locations-hub-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.seo-local-inner .section-header {
  max-width: 720px;
}

.seo-local-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 1.5rem;
}

.seo-local-grid article {
  padding: 1.25rem 1.35rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.seo-local-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.seo-local-grid p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.seo-local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}

.seo-local-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* FAQ */
.faq-section .section-header {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  padding: 0 1.15rem 1rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-answer a {
  color: var(--primary);
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.seo-location-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 1.5rem;
}

.seo-location-index-list li {
  margin-bottom: 0.35rem;
  break-inside: avoid;
}

.seo-location-index-list a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.seo-location-index-wrap {
  margin-top: 0;
}

.locations-section h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.locations-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.locations-preview-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.location-preview-card h3 {
  margin-bottom: 1rem;
}

.locations-list.compact li {
  margin-bottom: 0.5rem;
}

.locations-list.compact a {
  color: var(--text);
  font-weight: 500;
}

.rezervare-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .rezervare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rezervare-phone {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-details dd {
  margin: 0;
}

.feature-card.text-center { text-align: center; }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-white);
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0.5rem;
  }

  .header-cta {
    display: none;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-cinema {
    min-height: auto;
    padding: calc(var(--header-h) + 1rem) 0 1.25rem;
  }

  .hero-cinema .hero-bg-carousel {
    display: none;
  }

  .hero-cinema .hero-overlay {
    background: linear-gradient(160deg, #1a2332 0%, #243044 55%, #1e293b 100%);
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .hero-quick-list {
    font-size: 0.8125rem;
    gap: 0.35rem;
  }

  .hero-car-panel {
    padding: 0;
    margin-top: 0.25rem;
  }

  .hero-car-panel .hero-panel-inner {
    padding: 1rem 1.1rem 1.15rem;
    border-radius: 0 0 calc(var(--radius-xl) - 4px) calc(var(--radius-xl) - 4px);
  }

  .hero-car-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: #e2e8f0;
  }

  .hero-panel-price {
    margin-bottom: 0.65rem;
  }

  .hero-panel-price span {
    font-size: 2.25rem;
  }

  .hero-fleet-controls {
    padding: 0.65rem 1rem 0.85rem;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .hero-panel {
    max-width: 100%;
  }
}
