/* ============================================================
   Premium Eco Rentals — reservations landing page
   Brand: eco / Grenada. Fast, responsive, no external fonts.
   ============================================================ */

:root {
  --green:        #1a7f4b;
  --green-dark:   #145f38;
  --green-light:  #e8f5ee;
  --ink:          #16241d;
  --muted:        #566;
  --line:         #e2e8e5;
  --bg:           #ffffff;
  --bg-alt:       #f6faf8;
  --whatsapp:     #25d366;
  --amber:        #f5a524;
  --radius:       14px;
  --shadow:       0 6px 24px rgba(20, 60, 40, 0.08);
  --shadow-lg:    0 12px 40px rgba(20, 60, 40, 0.14);
  --maxw:         1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 800; letter-spacing: -.01em; }

.section-title { text-align: center; }
.section-sub   { text-align: center; color: var(--muted); margin: -.2em auto 2rem; max-width: 620px; }

section { padding: 4rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  padding: .85rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover  { background: var(--green-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1fbb59; }
.btn-sm  { padding: .55rem 1rem; font-size: .9rem; }
.btn-lg  { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn .ico { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; height: 66px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); font-weight: 800; }
.brand-logo { border-radius: 8px; }
.brand-name { font-size: 1.05rem; }
.header-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.header-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.header-nav a:hover { color: var(--green); }
.header-actions { display: flex; gap: .5rem; margin-left: 1rem; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--green-light), #fff); padding-top: 3rem; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700; color: var(--green); margin: 0 0 .5rem; }
.hl { color: var(--green); }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 40ch; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.mini-selector {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: .75rem;
  background: #fff; padding: 1rem; border-radius: var(--radius);
  box-shadow: var(--shadow); margin: 1.75rem 0 1.25rem; align-items: end;
}
.mini-selector .field { display: flex; flex-direction: column; gap: .3rem; }
.mini-selector label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.mini-selector input, .mini-selector select {
  padding: .6rem .65rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: .95rem; background: #fff; color: var(--ink);
}
.mini-selector button { height: 44px; }

.hero-badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1rem; font-weight: 600; color: var(--green-dark); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: #fff; padding: 1.5rem 0; }
.trustbar-inner { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.35rem; color: #fff; }
.trust-item span { font-size: .85rem; color: #b9c9c1; }

/* ---------- Reassurance ---------- */
.reassure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.reassure-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.reassure-ico { font-size: 2rem; margin-bottom: .5rem; }
.reassure-card h3 { font-size: 1.2rem; }
.reassure-card p { margin: 0; color: var(--muted); }

/* ---------- Why ---------- */
.why { background: var(--bg-alt); border-radius: 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.why-item h3 { font-size: 1.1rem; color: var(--green-dark); }
.why-item p { margin: 0; color: var(--muted); }

/* ---------- Vehicles ---------- */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vehicle-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.vehicle-photo { aspect-ratio: 3 / 2; background: var(--green-light); }
.vehicle-photo img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-photo.no-photo::after { content: "Photo coming soon"; display: flex; align-items: center; justify-content: center; height: 100%; color: var(--green-dark); font-weight: 600; }
.vehicle-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.vehicle-body h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.25rem; margin: 0; }
.vehicle-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--green-light); color: var(--green-dark); padding: .2rem .5rem; border-radius: 999px; }
.vehicle-specs { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1rem; padding: 0; margin: 0; color: var(--muted); font-size: .92rem; }
.vehicle-price { margin: 0; font-size: 1rem; color: var(--muted); }
.vehicle-price strong { font-size: 1.6rem; color: var(--ink); }
.vehicle-price .save { color: var(--amber); font-weight: 700; }
.vehicle-body .btn { margin-top: auto; }

/* ---------- Social proof ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { margin: 0; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.review blockquote { margin: 0 0 .75rem; font-size: 1.05rem; }
.review figcaption { color: var(--muted); font-weight: 600; }
.social-embeds { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.embed-slot { border: 2px dashed var(--line); border-radius: var(--radius); padding: 2rem; text-align: center; color: var(--muted); background: var(--bg-alt); }

/* ---------- Reserve / HQ iframe ---------- */
.reserve { background: var(--green-light); }
.reserve-frame { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.reserve-frame iframe { display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: .75rem; background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.1rem 1.25rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--green); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.25rem 1.1rem; color: var(--muted); }
.faq-a p { margin: 0; }

/* ---------- Lead capture ---------- */
.leadcap-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 2.5rem; text-align: center; }
.leadcap-card h2 { color: #fff; }
.leadcap-card p { color: #c8d7cf; max-width: 52ch; margin: 0 auto 1.5rem; }
.brevo-slot { background: rgba(255,255,255,.08); border: 2px dashed rgba(255,255,255,.25); border-radius: 12px; padding: 1.5rem; color: #c8d7cf; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(120deg, var(--green), var(--green-dark)); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; }
.final-inner p { color: #dff0e7; font-size: 1.15rem; }
.final-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.final-cta .btn-primary { background: #fff; color: var(--green-dark); }
.final-cta .btn-primary:hover { background: #f0f0f0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9c9c1; padding: 2rem 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-inner a { color: #fff; text-decoration: none; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.06); transition: transform .15s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .reassure, .why-grid, .vehicle-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .mini-selector { grid-template-columns: 1fr 1fr; }
  .mini-selector button { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  section { padding: 3rem 0; }
  .header-nav { display: none; }
  .reassure, .why-grid, .vehicle-grid, .reviews-grid, .social-embeds { grid-template-columns: 1fr; }
  .brand-name { display: none; }
}
