/* ============================================================
   Trip Lettings, Luxury Villa Rentals in Goa
   Mobile-first stylesheet
   ============================================================ */

:root {
  --ink: #101828;          /* near-black charcoal for text */
  --ink-soft: #667085;
  --cream: #ffffff;        /* page background */
  --sand: #f5f7fa;         /* section alt background, cool neutral */
  --white: #ffffff;
  --palm: #0891b2;         /* light turquoise blue accent */
  --palm-dark: #0e7490;
  --gold: #eeb31e;         /* stars only */
  --gold-soft: #fbf1d8;
  --wa: #25d366;           /* WhatsApp green */
  --wa-dark: #128c7e;
  --line: rgba(16, 24, 40, 0.09);
  --shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
  --shadow-soft: 0 2px 10px rgba(16, 24, 40, 0.05);
  --radius: 16px;
  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* room for the sticky mobile action bar */
  padding-bottom: 76px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--palm);
  margin-bottom: 10px;
}

section { padding: 64px 0; }
@media (min-width: 760px) { section { padding: 88px 0; } }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: var(--shadow-soft); }
.btn-whatsapp:hover { background: #1fbd5a; }
.btn-primary { background: var(--palm); color: #fff; }
.btn-primary:hover { background: var(--palm-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1d2939; }
.btn-outline { background: transparent; color: var(--palm); border: 1.5px solid var(--palm); }
.btn-outline:hover { background: var(--palm); color: #fff; }
.btn-call { background: var(--ink); color: #fff; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}
.logo-mark { width: auto; height: 72px; flex-shrink: 0; }
.main-nav { display: none; }
.header-cta { display: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: 0.2s; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  background: var(--cream);
  border-bottom: 1px solid rgba(16, 34, 46, 0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 4px; font-weight: 500; border-bottom: 1px solid rgba(16,34,46,0.05); }

@media (min-width: 900px) {
  .nav-toggle, .mobile-nav { display: none !important; }
  .main-nav { display: flex; gap: 28px; font-size: 0.92rem; font-weight: 500; }
  .main-nav a:hover { color: var(--palm); }
  .header-cta { display: inline-flex; padding: 10px 20px; font-size: 0.88rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,40,0.25) 0%, rgba(12,26,40,0.05) 40%, rgba(12,26,40,0.72) 100%);
}
.hero-content { padding: 90px 20px 48px; }
.hero .eyebrow { color: rgba(255,255,255,0.85); text-shadow: 0 1px 8px rgba(12,26,40,0.5); }
.hero p.sub {
  margin: 14px 0 26px;
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--cream);
  color: var(--ink);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

/* Platform ratings strip */
.platform-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(16, 34, 46, 0.06);
  padding: 16px 0;
}
.platform-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
}
.platform-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.platform-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.pl-airbnb {
  color: #FF385C;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}
.pl-google { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.pl-stars { color: #f5b50a; font-size: 1.05rem; letter-spacing: 3px; }
.pl-superhost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.trust-item span { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.04em; }
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Villa cards ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(16,34,46,0.15);
  background: var(--white);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s;
}
.chip.active, .chip:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.villa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 680px) { .villa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .villa-grid { grid-template-columns: repeat(3, 1fr); } }

.villa-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.villa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.villa-card .photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.villa-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rating-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}
.villa-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.villa-card .loc { font-size: 0.8rem; color: var(--palm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.villa-card h3 { font-size: 1.3rem; }
.villa-card .specs { font-size: 0.86rem; color: var(--ink-soft); }
.villa-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(16,34,46,0.07);
}
.villa-card .price { font-weight: 700; font-size: 1.05rem; }
.villa-card .price small { font-weight: 400; color: var(--ink-soft); }
.save-note { font-size: 0.75rem; color: var(--palm); font-weight: 700; }

/* ---------- Book direct strip ---------- */
.direct-strip {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.direct-strip h2 { color: var(--ink); }
.direct-strip p { color: var(--ink-soft); max-width: 560px; }
@media (min-width: 860px) {
  .direct-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(8, 145, 178, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card .icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--palm);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card.center .icon { margin-left: auto; margin-right: auto; }
.service-card p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 6px; }
.services-cta { text-align: center; margin-top: 32px; }
.services-cta p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 20px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 13px 30px 13px 0;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--palm);
  font-size: 1.35rem;
  font-weight: 500;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 0 16px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Goa guide ---------- */
.guide-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.prose { max-width: 780px; }
.prose h2 { margin: 36px 0 14px; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 20px; list-style: disc; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--palm-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(8, 145, 178, 0.35); text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.1);
  color: var(--palm);
  font-weight: 700;
  margin-bottom: 12px;
}
.step p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  font-size: 0.93rem;
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review-card footer { margin-top: 12px; font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }

/* Villa page reviews */
.villa-reviews { padding: 10px 0 44px; }
.villa-reviews .reviews-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.reviews-score {
  background: rgba(8, 145, 178, 0.08);
  color: var(--palm-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
}
.villa-reviews .review-grid { gap: 18px; }
@media (min-width: 720px) { .villa-reviews .review-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Owner CTA ---------- */
.owner-cta {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.owner-cta p { max-width: 560px; margin: 12px auto 22px; color: var(--ink-soft); }

/* ---------- Villa detail page ---------- */
.villa-hero { padding: 26px 0 0; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--palm); font-weight: 600; }
.villa-title-row h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
.villa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 10px 0 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.villa-meta .rating { color: var(--ink); font-weight: 700; }
.villa-meta span + span::before { content: "\00B7"; margin-right: 14px; color: rgba(16, 24, 40, 0.35); }

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; cursor: zoom-in; }
.gallery img:first-child { aspect-ratio: 16/10; }
@media (min-width: 760px) {
  .gallery { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .gallery img:first-child { grid-row: span 2; aspect-ratio: auto; }
  .gallery img { aspect-ratio: auto; }
}
.gallery-more {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 46, 0.25);
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-more:hover { background: #fff; }
.gallery-all { display: none; }

/* Scrollable fullscreen photo tour */
.photo-tour {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.photo-tour[hidden] { display: none; }
.photo-tour-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.pt-count { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.pt-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}
.pt-close:hover { background: var(--sand); }
.photo-tour-grid {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 16px 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.photo-tour-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
}

.detail-layout { display: grid; gap: 34px; padding-top: 34px; }
@media (min-width: 920px) { .detail-layout { grid-template-columns: 1.6fr 1fr; align-items: start; } }

.villa-desc { color: var(--ink-soft); margin: 6px 0 26px; max-width: 640px; }

.highlights li, .amenities li {
  padding: 9px 0 9px 30px;
  position: relative;
  border-bottom: 1px solid rgba(16,34,46,0.06);
  font-size: 0.95rem;
}
.highlights li::before, .amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--palm);
  font-weight: 700;
}
.amenities { display: grid; gap: 0 26px; }
@media (min-width: 560px) { .amenities { grid-template-columns: 1fr 1fr; } }

/* Booking card */
.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  position: sticky;
  top: 84px;
}
.booking-card .price-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-card .price-line strong { font-size: 1.6rem; font-family: var(--font-display); }
.booking-card .save-badge {
  display: inline-block;
  background: rgba(8, 145, 178, 0.09);
  color: var(--palm);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(16,34,46,0.15);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--palm);
}
.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Adults / children / pets steppers */
.guest-picker {
  border: 1.5px solid rgba(16, 34, 46, 0.15);
  border-radius: 12px;
  background: var(--cream);
  padding: 2px 14px;
}
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.guest-row + .guest-row { border-top: 1px solid rgba(16, 34, 46, 0.08); }
.guest-name { display: block; font-weight: 600; font-size: 0.92rem; }
.guest-sub { display: block; font-size: 0.74rem; color: var(--ink-soft); }
.stepper { display: flex; align-items: center; gap: 12px; }
.step-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 34, 46, 0.25);
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s;
}
.step-btn:hover:not(:disabled) { border-color: var(--palm); color: var(--palm); }
.step-btn:disabled { opacity: 0.35; cursor: default; }
.step-val {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.booking-card .btn { width: 100%; margin-top: 6px; }
.booking-card .alt-line {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.booking-card .alt-line a { color: var(--palm); font-weight: 700; }
.best-price-note {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--sand);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--palm-dark);
  font-weight: 600;
}
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }

/* Email fallback form */
.email-form { margin-top: 18px; border-top: 1px solid rgba(16,34,46,0.08); padding-top: 18px; display: none; }
.email-form.open { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sand);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 48px 0 90px;
  margin-top: 40px;
  font-size: 0.92rem;
}
.footer-logo { display: flex; justify-content: center; margin-bottom: 16px; }
.footer-logo .logo-mark { height: 110px; }
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); opacity: 0.75; margin-bottom: 14px; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ---------- Sticky mobile action bar ---------- */
.action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(16,34,46,0.08);
}
.action-bar .btn { padding: 13px 10px; font-size: 0.92rem; }
@media (min-width: 900px) {
  .action-bar { display: none; }
  body { padding-bottom: 0; }
}

/* Floating WhatsApp on desktop */
.wa-float {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (min-width: 900px) { .wa-float { display: flex; } }

/* ---------- Utility ---------- */
.alt-bg { background: var(--sand); }
.center { text-align: center; }
.mt-2 { margin-top: 20px; }
