/* ===================================================
   EVERGREEN RENT A CAR — REDESIGN
   Brand: #00b142 (green), #f86814 (orange)
   Design: warm_trustworthy_local / lead_gen_landing
   =================================================== */

/* --- TOKENS --- */
:root {
  --green-600: #00b142;
  --green-700: #009938;
  --green-800: #007d2e;
  --green-50:  #e6f9ee;
  --green-100: #c3f0d5;

  --orange:    #f86814;
  --orange-dk: #d95a0e;

  --bg:        #f9fafb;
  --bg-dark:   #0f2318;
  --bg-card:   #ffffff;

  --text-900:  #111827;
  --text-600:  #4b5563;
  --text-400:  #9ca3af;

  --border:    #e5e7eb;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --max-w: 1200px;
  --section-py: 80px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-900);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,177,66,.25);
}
.btn-primary:hover { background: var(--green-700); box-shadow: 0 6px 18px rgba(0,177,66,.35); }

.btn-outline {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-600);
}
.btn-outline:hover { background: var(--green-50); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
  transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo img { height: 44px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-600);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.main-nav a:hover { color: var(--green-600); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--green-600);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--green-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-900);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: #fff;
  padding: 72px 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-900);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-600);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  background: var(--green-600);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ===================================================
   SECTION COMMON
   =================================================== */
.section { padding: var(--section-py) 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-600);
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label--light { color: var(--orange); }

/* ===================================================
   SERVICES
   =================================================== */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card--featured {
  border-color: var(--green-600);
  box-shadow: 0 0 0 2px rgba(0,177,66,.15), var(--shadow-md);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.service-card p { color: var(--text-600); font-size: 15px; line-height: 1.65; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-600);
}
.service-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
}

/* ===================================================
   WHY US
   =================================================== */
.why-section { background: #fff; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
}
.why-text > p {
  font-size: 16px;
  color: var(--text-600);
  line-height: 1.75;
  margin-bottom: 36px;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 36px;
  height: 36px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point strong { display: block; font-weight: 600; margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--text-600); line-height: 1.6; }
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.why-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green-600);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  opacity: .9;
}

/* ===================================================
   FLEET
   =================================================== */
.fleet-section { background: var(--bg); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.fleet-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.fleet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fleet-icon {
  width: 72px;
  height: 72px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin: 0 auto 16px;
}
.fleet-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.fleet-card p { font-size: 14px; color: var(--text-600); line-height: 1.6; }
.fleet-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fleet-cta p { color: var(--text-600); font-size: 16px; }

/* ===================================================
   CONTACT
   =================================================== */
.contact-section { background: var(--bg-dark); }
.contact-section .section-label--light { color: var(--orange); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  transition: opacity .2s;
}
a.contact-item:hover { opacity: .8; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-note { font-size: 13px; color: var(--text-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-900); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-900);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(0,177,66,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 12px; color: var(--text-400); text-align: center; margin-top: 12px; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: #0a1c10; padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact a,
.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  line-height: 1.5;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--green-600); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 200;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Header */
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px 24px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  /* Hero */
  .hero { padding-top: 48px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { border-radius: var(--radius-md); }
  .hero-stats { gap: 16px; padding: 16px; }
  .stat-number { font-size: 22px; }

  /* Trust bar */
  .trust-bar-inner { justify-content: center; gap: 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-inner { grid-template-columns: 1fr; }
  .why-image-badge { bottom: -16px; left: 16px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
}
