/* ═══════════════════════════════════════════════
   ABNORMAL BEITBRIDGE — Modern Polished CSS v2
   Syne (display) + DM Sans (body)
   Green #00966C · Gold #FFCC44 · Dark #0F1A14
═══════════════════════════════════════════════ */

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

:root {
  --green:      #00966C;
  --green-dark: #006e4f;
  --green-deep: #004d38;
  --gold:       #FFCC44;
  --gold-dark:  #d4a800;
  --bg:         #F5F6F3;
  --bg-white:   #ffffff;
  --dark:       #0F1A14;
  --dark2:      #1a2e22;
  --text:       #1a2420;
  --text2:      #4a6458;
  --text3:      #7a9087;
  --border:     #d8e6df;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
}
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,150,108,.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,150,108,.4);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 12px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
}
.btn-sm:hover { background: var(--green-dark); }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--transition);
}
.topbar-links a:hover { color: var(--gold); }
.topbar-wa {
  background: #128C7E;
  color: #fff !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.topbar-wa:hover { background: #075E54; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 44px; width: 44px; object-fit: contain; border-radius: 8px; }
.logo-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--dark);
  line-height: 1;
}
.logo-tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav ul a {
  display: block;
  padding: 7px 13px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav ul a:hover, .nav ul a.active {
  color: var(--green);
  background: rgba(0,150,108,.06);
}
.nav { display: flex; align-items: center; gap: 14px; }
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--border);
  padding: 9px 11px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 28px 40px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,26,18,.82) 0%,
    rgba(0,80,50,.65) 50%,
    rgba(0,150,108,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: fadeUp .8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,204,68,.15);
  border: 1px solid rgba(255,204,68,.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-accent { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
  min-width: 120px;
}
.stat-pill strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-pill span { font-size: 11px; opacity: .75; letter-spacing: 1px; text-transform: uppercase; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  overflow: hidden;
}
.service.reverse { direction: rtl; }
.service.reverse > * { direction: ltr; }

.service-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service:hover .service-media img { transform: scale(1.03); }

.service-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--green);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}

.service-body {
  background: var(--bg-white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service.reverse .service-body {
  background: var(--bg);
}

.service-body h2 { margin-bottom: 18px; }
.service-body p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 440px;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
}
.service-list li {
  font-size: 14px;
  color: var(--text2);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════
   CAR RENTALS
═══════════════════════════════════════════════ */
.cars-section {
  background: var(--dark);
  padding: 88px 28px;
  overflow: hidden;
}
.cars-header {
  max-width: 1280px;
  margin: 0 auto 52px;
  text-align: center;
}
.cars-header h2 { color: #fff; margin-bottom: 14px; }
.cars-header p { color: rgba(255,255,255,.6); font-size: 15px; max-width: 560px; margin: 0 auto; }

.car-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.car-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,150,108,.4);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.car-card--featured {
  border-color: rgba(255,204,68,.25);
  box-shadow: 0 0 0 1px rgba(255,204,68,.1);
}
.car-card--premium { border-color: rgba(0,150,108,.3); }

.car-img-wrap { position: relative; overflow: hidden; height: 175px; }
.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.07); }

.car-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.car-badge--gold {
  background: var(--gold);
  color: var(--dark);
}

.car-info { padding: 18px 18px 20px; }
.car-info h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.car-spec {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
  line-height: 1.4;
}
.car-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.car-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.car-price span { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 400; }

.cars-footer-note {
  max-width: 1280px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.cars-footer-note a { color: var(--gold); }

/* ═══════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════ */
.why-section {
  background: var(--bg-white);
  padding: 88px 28px;
}
.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.why-inner h2 { margin-bottom: 52px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.why-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
}
.why-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--green-deep);
  padding: 88px 28px;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-left h2 {
  color: #fff;
  margin-bottom: 16px;
}
.contact-left p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.75;
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  backdrop-filter: blur(10px);
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  line-height: 1.8;
  transition: color var(--transition);
}
.contact-value:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.footer-logo { height: 32px; width: 32px; object-fit: contain; border-radius: 6px; }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: right;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

.scroll-top-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service { grid-template-columns: 1fr; min-height: auto; }
  .service.reverse { direction: ltr; }
  .service-media { min-height: 320px; }
  .service-body { padding: 48px 36px; }
  .service-body p { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-copy { text-align: left; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-links { flex-wrap: wrap; justify-content: center; gap: 10px; }

  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; }
  .nav ul a { font-size: 14px; padding: 11px 14px; }
  .nav-cta { width: 100%; justify-content: center; }
  #header { position: relative; }

  .hero { min-height: 75vh; padding: 60px 20px 32px; }
  .hero-stats { margin-top: 36px; }
  .stat-pill { min-width: 100px; padding: 10px 18px; }

  .service-body { padding: 40px 24px; }

  .cars-section { padding: 60px 20px; }
  .car-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }

  .why-section, .contact-section { padding: 60px 20px; }
  .contact-card { padding: 26px 22px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-copy { text-align: left; }

  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .scroll-top-btn { bottom: 80px; right: 18px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-ghost { display: none; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
}
