/* ============================================================
   CERVAKU.COM — Premium Car Rental Paraguay
   Main Stylesheet
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E5C97A;
  --gold-dark:   #9D7A2E;
  --navy:        #0D1B2A;
  --navy-mid:    #1A2E42;
  --navy-light:  #243B55;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --gray-100:    #F3F2EF;
  --gray-200:    #E8E6E1;
  --gray-500:    #9A9589;
  --gray-700:    #4A4540;
  --text:        #1C1B18;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --max-w:       1240px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--gray-700); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-subtitle {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* ---------- LAYOUT HELPERS ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }
.mt-1   { margin-top: .5rem; }
.mt-2   { margin-top: 1rem; }
.mt-3   { margin-top: 1.5rem; }
.mt-4   { margin-top: 2rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ---------- HEADER / NAV ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.2rem 0;
}
#site-header.scrolled {
  background: rgba(13, 27, 42, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
  padding: .8rem 0;
}
#site-header .container { justify-content: space-between; }
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo img { width: 42px; height: 42px; object-fit: contain; border-radius: 6px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); font-weight: 700; }
.logo-text span { color: var(--gold); }

nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--white); }
nav a:hover::after, nav a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .45;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.92) 40%, rgba(13,27,42,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item { }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.scroll-hint span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-mouse::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- BOOKING STRIP ---------- */
#booking-strip {
  background: var(--white);
  box-shadow: 0 4px 40px rgba(0,0,0,.1);
  position: relative;
  z-index: 5;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
}
.booking-field {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.6rem;
  border-right: 1px solid var(--gray-200);
}
.booking-field:last-child { border-right: none; }
.booking-field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .4rem;
}
.booking-field input,
.booking-field select {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy);
  background: transparent;
  font-weight: 500;
}
.booking-field select { cursor: pointer; }
.booking-btn-wrap {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  cursor: pointer;
  transition: background var(--transition);
  min-width: 160px;
}
.booking-btn-wrap:hover { background: var(--gold-light); }
.booking-btn-wrap span {
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---------- FEATURES / WHY US ---------- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.feature-card h4 { color: var(--navy); margin-bottom: .6rem; }
.feature-card p  { font-size: .9rem; }

/* ---------- CAR CARDS ---------- */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.car-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.car-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}
.car-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.06); }
.car-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}
.car-badge.premium { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.car-body { padding: 1.5rem; }
.car-title { color: var(--navy); font-size: 1.2rem; margin-bottom: .25rem; }
.car-category { font-size: .8rem; color: var(--gold-dark); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1rem; }
.car-specs {
  display: flex;
  gap: 1rem;
  padding: .8rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--gray-500);
}
.spec-item i { color: var(--gold); font-size: .85rem; }
.car-price-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.price-block .price-from { font-size: .72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }
.price-block .price-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-block .price-day span { font-size: .85rem; font-weight: 400; color: var(--gray-500); }
.price-block .price-month { font-size: .78rem; color: var(--gold-dark); margin-top: .1rem; }

/* ---------- HOW IT WORKS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 10%;
  right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 0 8px rgba(201,168,76,.15);
}
.step-card h4 { color: var(--navy); margin-bottom: .5rem; }
.step-card p  { font-size: .88rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
}
.stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-text { font-size: .92rem; color: var(--gray-700); margin-bottom: 1.2rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.reviewer-loc  { font-size: .78rem; color: var(--gray-500); }

/* ---------- CTA BANNER ---------- */
#cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto 2rem; }

/* ---------- FOOTER ---------- */
#site-footer {
  background: #080F17;
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { font-size: 1.6rem; }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  margin-top: .75rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col li + li { margin-top: .6rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .85rem;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); font-size: .9rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header.alt::after { background: var(--off-white); }
.page-header h1 { color: var(--white); }
.page-header p  { color: rgba(255,255,255,.6); margin-top: .75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: .6rem; }

/* ---------- FLEET PAGE ---------- */
.filter-bar {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-btn {
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201,168,76,.1);
}

/* ---------- ABOUT PAGE ---------- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-tag {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-tag strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; }
.about-tag span { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  flex-shrink: 0;
}
.value-item h5 { color: var(--navy); margin-bottom: .3rem; }
.value-item p  { font-size: .85rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: var(--navy);
}
.team-card h4 { color: var(--navy); }
.team-card .role { font-size: .82rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; }

/* ---------- CONTACTS PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }
.c-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.c-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.c-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  flex-shrink: 0;
}
.c-info-item h5 { color: var(--gold-light); font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.c-info-item p  { color: rgba(255,255,255,.65); font-size: .9rem; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 300px; margin-top: 3rem; background: var(--gray-200); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-top: 2.5rem; border-top: 1px solid var(--gray-200); }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p  { margin-bottom: 1rem; font-size: .95rem; color: var(--gray-700); }
.legal-content ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content li { font-size: .95rem; color: var(--gray-700); margin-bottom: .5rem; }
.legal-updated { font-size: .82rem; color: var(--gray-500); margin-bottom: 2rem; }

/* ---------- COOKIE BANNER ---------- */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  max-width: 900px;
  width: calc(100% - 3rem);
  border: 1px solid rgba(201,168,76,.3);
}
#cookie-banner p { font-size: .88rem; color: rgba(255,255,255,.75); margin: 0; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie {
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-accept { background: var(--gold); color: var(--navy); }
.btn-accept:hover { background: var(--gold-light); }
.btn-decline { border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.btn-decline:hover { border-color: var(--gold); color: var(--gold); }
.hidden { display: none !important; }

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-btn-wrap { grid-column: 1 / -1; padding: 1.2rem; min-width: auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrap { height: 380px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  nav ul { 
    position: fixed;
    inset: 0; top: 70px;
    background: rgba(13,27,42,.98);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding-top: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  nav ul.open { transform: translateX(0); }
  nav ul li { width: 100%; text-align: center; }
  nav a { display: block; padding: 1rem; font-size: 1.1rem; }
  nav a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .cars-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-tag { right: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .cookie-actions { justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
