:root {
  --primary: #c9a96e;
  --primary-dark: #b08a50;
  --bg: #0b0f17;
  --bg-card: #141d2b;
  --bg-alt: #0f1520;
  --bg-warm: #c3a45e;
  --text: #e8e8e8;
  --text-muted: rgba(232,232,232,0.55);
  --border: rgba(201,169,110,0.22);
  --white: #ffffff;
  --cyan: #3eb8e4;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: normal; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.btn-primary { background: var(--primary); color: #0b0f17; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #0b0f17; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

/* Navbar */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-transform: uppercase;
}
.logo span {
  font-size: 0.65em;
  display: block;
  color: var(--primary);
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: -3px;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; list-style: none; gap: 1.75rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.lang-switcher { display: flex; gap: 2px; }
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all 0.15s;
  font-family: inherit;
}
.lang-btn.active, .lang-btn:hover { background: var(--primary); color: #0b0f17; border-color: var(--primary); }
.hamburger { display: none; flex-direction: column; cursor: pointer; background: none; border: none; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 1px; }
.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 {
  min-height: 85vh;
  background: radial-gradient(ellipse at 80% 50%, rgba(42,26,8,0.9) 0%, var(--bg) 60%),
              linear-gradient(135deg, #05080f 0%, #0b1520 50%, #1a1208 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary));
}
.hero-inner { position: relative; max-width: 1100px; width: 100%; margin: 0 auto; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--primary);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1.25rem; max-width: 650px; color: var(--white); }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero p { font-size: 1.1rem; max-width: 520px; margin-bottom: 2.25rem; color: rgba(255,255,255,0.75); }
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(201,169,110,0.5); color: var(--primary); }
.hero .btn-outline:hover { background: var(--primary); color: #0b0f17; border-color: var(--primary); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stat .num { font-family: Georgia, serif; font-size: 1.75rem; color: var(--primary); }
.hero-stat .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* Section generic */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; color: var(--primary); }
.section-header p { color: var(--text-muted); max-width: 580px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* Feature cards */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; color: var(--white); }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Car cards */
.cars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.car-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
}
.car-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.car-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #1a2332;
}
.car-photo {
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a2332 center/cover no-repeat;
  display: block;
}
.car-info { padding: 1.5rem; }
.car-info h3 { margin-bottom: 0.2rem; color: var(--primary); }
.car-type { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.car-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.badge {
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: rgba(62,184,100,0.15); color: #4ece7a; border: 1px solid rgba(62,184,100,0.3); }
.badge-grey { background: rgba(201,169,110,0.1); color: var(--primary); border: 1px solid var(--border); }
.badge-blue { background: rgba(62,184,228,0.12); color: var(--cyan); border: 1px solid rgba(62,184,228,0.3); }
.car-price { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #100e08 0%, #1e1608 50%, #100e08 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; color: var(--primary); }
.cta-band p { color: var(--text-muted); max-width: 580px; margin: 0 auto 2rem; }

/* Fleet page */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* Booking */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 2.25rem;
  border-radius: 8px;
  position: sticky;
  top: 80px;
}
.booking-sidebar h3 { font-size: 1.4rem; margin-bottom: 1.75rem; color: var(--primary); }
.sidebar-item { margin-bottom: 1.5rem; }
.sidebar-item .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 0.3rem; }
.sidebar-item .val { font-size: 0.95rem; line-height: 1.5; color: var(--text); }
.sidebar-item a { color: var(--primary); text-decoration: none; }
.sidebar-item a:hover { color: var(--primary-dark); }
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.75rem;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: inherit;
}
.wa-btn:hover { background: #1da851; }
.form-success {
  display: none;
  background: rgba(62,184,100,0.12);
  border: 1px solid rgba(62,184,100,0.3);
  color: #4ece7a;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 0.4rem; }
.contact-block p { font-size: 0.95rem; color: var(--text); }
.contact-block a { color: var(--primary); text-decoration: none; }
.contact-block a:hover { color: var(--primary-dark); }
.about-text { line-height: 1.8; color: var(--text-muted); }
.about-text p { margin-bottom: 1rem; }
.map-embed { border-radius: 8px; overflow: hidden; margin-top: 1.5rem; opacity: 0.85; }

/* Special offer card */
.offer-card {
  background: linear-gradient(135deg, #1e1608 0%, #2a1f0a 50%, #1e1608 100%);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 12px;
  padding: 3rem;
}
.offer-text h2 { margin-bottom: 0.75rem; color: var(--primary); }
.offer-text > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.offer-list { list-style: none; margin-bottom: 1.25rem; }
.offer-list li { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text); }
.offer-note { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  z-index: 90;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* Footer */
.footer { background: #060a10; color: var(--text-muted); padding: 3.5rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: Georgia, serif; font-size: 1.4rem; color: var(--cyan); text-decoration: none; display: block; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; }
.footer h4 { color: var(--primary); margin-bottom: 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: sans-serif; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; font-size: 0.8rem; text-align: center; }

/* Page header */
.page-header {
  background: linear-gradient(135deg, #05080f 0%, #0b1520 60%, #1a1208 100%);
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 4rem 0 3.5rem;
}
.page-header h1 { margin-bottom: 0.75rem; color: var(--primary); }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 520px; }

/* Responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 57px;
    left: 0; right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    display: none;
    gap: 1.25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; gap: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .cars-grid, .fleet-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 75vh; padding: 3.5rem 1.25rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .offer-card { padding: 2rem 1.5rem; }
}
