:root {
  --bg: #07070b;
  --bg-elevated: #0d0d14;
  --surface: #111119;
  --surface-2: #161622;
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --brand: #e11d48;
  --brand-2: #fb7185;
  --brand-dark: #9f1239;
  --brand-glow: rgba(225, 29, 72, 0.35);
  --wa: #25d366;
  --wa-dark: #128c7e;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.6);
  --shadow-brand: 0 16px 48px rgba(225, 29, 72, 0.4);
  --shadow-wa: 0 12px 40px rgba(37, 211, 102, 0.45);
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-xs: 8px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.35s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ====== Animated premium background ====== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 1400px 900px at 20% -20%, rgba(225, 29, 72, 0.22), transparent 55%),
    radial-gradient(ellipse 1000px 700px at 90% 10%, rgba(251, 113, 133, 0.12), transparent 55%),
    radial-gradient(ellipse 700px 500px at 50% 120%, rgba(225, 29, 72, 0.15), transparent 55%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.75) 0%, rgba(7, 7, 11, 0.92) 100%),
    url("../assets/hero-background-jeracars.png") center top / cover no-repeat fixed;
  opacity: 0.55;
  pointer-events: none;
}

/* Grid noise overlay */
.site-header::before,
.site-header::after { content: none; }

img { max-width: 100%; display: block; }

a { color: inherit; transition: color var(--t); }
a:hover { color: var(--brand-2); }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.muted { color: var(--muted); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1a24, #0a0a10);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--t), box-shadow var(--t);
}

.brand:hover .brand-mark {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: var(--shadow-brand);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.brand-text {
  display: grid;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: none;
  gap: 2px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all var(--t);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: none;
  gap: 8px;
  align-items: center;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.btn svg { flex-shrink: 0; }

.btn-sm { padding: 8px 14px; font-size: 0.88rem; }
.btn-lg { padding: 14px 26px; font-size: 1rem; border-radius: 999px; }
.btn-block { width: 100%; }
.btn-icon { padding: 10px; width: 40px; height: 40px; border-radius: 50%; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand), inset 0 1px 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(225, 29, 72, 0.5);
  color: #fff;
}

.btn-primary:hover::after { left: 100%; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--brand);
  background: rgba(225, 29, 72, 0.08);
  color: var(--text);
}

.btn-lang {
  width: 46px;
  padding: 10px 0;
  font-size: 0.82rem;
}

/* ===================== MOBILE NAV ===================== */
.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all var(--t);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.menu-open .nav-toggle {
  background: rgba(225, 29, 72, 0.15);
  border-color: rgba(225, 29, 72, 0.35);
}

.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: grid;
  gap: 4px;
  padding: 16px;
  margin: 0 12px 12px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s var(--ease);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a:not(.btn) {
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--t);
}

.mobile-nav a:not(.btn):hover {
  background: rgba(225, 29, 72, 0.12);
  color: var(--brand-2);
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin: 8px 0 4px;
}

.mobile-nav[hidden] { display: none; }

@media (min-width: 980px) {
  .nav, .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-name { font-size: 1.15rem; }
  .brand-tagline { font-size: 0.82rem; }
}

/* ===================== HERO ===================== */
.hero {
  padding: 56px 0 40px;
  position: relative;
}

.hero-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 820px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  background:
    linear-gradient(180deg, rgba(22, 22, 34, 0.88) 0%, rgba(13, 13, 20, 0.75) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.6), transparent);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.25), transparent 70%);
  pointer-events: none;
}

@media (min-width: 720px) {
  .hero { padding: 80px 0 56px; }
  .hero-copy { padding: 44px 40px; }
}

@media (min-width: 980px) {
  .hero { padding: 100px 0 72px; }
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.3);
  background: rgba(225, 29, 72, 0.1);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff 20%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto;
}

.lead br + * { margin-top: 4px; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 28px;
  justify-content: center;
}

.hero-cta .btn {
  flex: 1 1 200px;
  max-width: 280px;
}

.hero-points {
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 520px;
  text-align: left;
}

.hero-points li {
  padding: 12px 16px 12px 44px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--brand-glow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 56px 0;
}

@media (min-width: 720px) {
  .section { padding: 80px 0; }
}

.section-alt {
  background: linear-gradient(180deg, rgba(13, 13, 20, 0.8) 0%, rgba(7, 7, 11, 0.8) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
  text-align: center;
  place-items: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.25);
  background: rgba(225, 29, 72, 0.08);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ===================== CARS GRID ===================== */
.cards {
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (min-width: 1000px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.car-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(225, 29, 72, 0.3);
  border-color: rgba(225, 29, 72, 0.4);
}

.car-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a10;
  position: relative;
}

.car-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 7, 11, 0.5) 100%);
  pointer-events: none;
}

.car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.car-card:hover .car-photo img {
  transform: scale(1.08);
}

.car-body {
  padding: 20px;
  display: grid;
  gap: 12px;
  flex: 1;
  text-align: center;
}

.car-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(225, 29, 72, 0.08));
  border: 1px solid rgba(225, 29, 72, 0.25);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.car-body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.car-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.car-specs li {
  padding-left: 22px;
  position: relative;
}

.car-specs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

.car-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.car-footer .btn {
  min-width: 140px;
}

/* ===================== BOOKING FORM ===================== */
.booking-form {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 880px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.5), transparent);
}

@media (min-width: 720px) {
  .booking-form { padding: 36px; }
}

.form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-2);
}

label > span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

label.full { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: all var(--t);
}

input::placeholder, textarea::placeholder { color: var(--faint); }

input:hover, select:hover, textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow);
  background: rgba(225, 29, 72, 0.05);
}

.form-actions {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.form-actions .btn { max-width: 320px; }

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: var(--shadow-brand);
}

.contact-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card .btn {
  margin-top: auto;
}

.contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
  display: grid;
  gap: 8px;
}

.contact-info-list li {
  padding-left: 22px;
  position: relative;
}

.contact-info-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 32px 0 24px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  margin-bottom: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-top {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all var(--t);
}

.footer-top:hover {
  border-color: var(--brand);
  background: rgba(225, 29, 72, 0.08);
  color: var(--brand-2);
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===================== FLOATING WHATSAPP ===================== */
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-wa), inset 0 1px 0 rgba(255,255,255,0.25);
  z-index: 90;
  transition: transform var(--t), box-shadow var(--t);
}

.floating-wa:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 18px 56px rgba(37, 211, 102, 0.6);
}

.floating-wa svg {
  position: relative;
  z-index: 2;
}

.floating-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: 0.6;
  animation: waPulse 2.2s ease-out infinite;
  z-index: 1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (min-width: 720px) {
  .floating-wa {
    width: 66px;
    height: 66px;
    bottom: 28px;
    right: 28px;
  }
}

/* Safe area for iPhone notch */
@supports (padding: max(0px)) {
  .floating-wa {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }
}

/* ===================== MOBILE TWEAKS ===================== */
@media (max-width: 480px) {
  .brand-tagline { display: none; }
  .brand-text { gap: 0; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero-copy { padding: 24px 16px; }
  .hero-stats { gap: 8px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 13px 16px;
    font-size: 0.95rem;
  }
  .booking-form { padding: 20px 16px; }
  .contact-card { padding: 24px 18px; }
  .section { padding: 48px 0; }
  .btn-lg { padding: 13px 18px; font-size: 0.95rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
