:root{
  --bg:#0b0f14;
  --panel: rgba(10, 14, 18, 0.78);
  --panel2: rgba(10, 14, 18, 0.60);
  --text:#f4f7fb;
  --muted:#c9d3de;
  --accent:#25D366; /* WhatsApp */
  --accent2:#ffcc00; /* taxi yellow */
  --danger:#ff4d4f;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1080px, 92vw);
  margin:0 auto;
}

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  /* Column layout so the footer can sit at the bottom on short pages (mobile/tablet) */
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  padding:28px 22px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position:center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(1200px 600px at 20% 40%, rgba(0,0,0,.15), rgba(0,0,0,.75)),
              linear-gradient(0deg, rgba(0,0,0,.70), rgba(0,0,0,.45));
}

.header{
  position:absolute;
  top:18px; left:0; right:0;
  z-index:5;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:54px; height:54px;
  object-fit:contain;
  border-radius:14px;
  background: rgba(255,255,255,.07);
  padding:6px;
}
.brand .name{
  line-height:1.1;
}
.brand .name strong{
  font-size: 18px;
  letter-spacing:.2px;
  display:block;
}
.brand .name span{
  font-size: 12px;
  color: var(--muted);
}

.navlinks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.badge{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: 13px;
}
.badge:hover{
  background: rgba(255,255,255,.10);
}

.content{
  position:relative;
  z-index:4;
  padding:110px 0 58px;
  width:100%;
  /* allow footer to stay at the bottom when content is short */
  flex:1;
}

/* Global footer (sticks to bottom thanks to .hero flex column) */
.site-footer{
  position:relative;
  z-index:4;
  width:100%;
  padding: 0 0 calc(14px + env(safe-area-inset-bottom));
  color: rgba(255,255,255,.75);
  font-size: 12px;
}
.site-footer .inner{
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 22px 6px;
}
.grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:22px;
  align-items:start;
}


.card{
  background: var(--panel);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
 .card h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: .2px;
}
.card p{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height:1.55;
}
.kpis{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.kpi{
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  font-size: 13px;
  color: var(--text);
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
}
.btn:hover{ background: rgba(255,255,255,.12); }
.btn.primary{
  background: rgba(255, 204, 0, .18);
  border-color: rgba(255, 204, 0, .35);
}
.btn.primary:hover{ background: rgba(255, 204, 0, .26); }
.btn.whatsapp{
  background: rgba(37, 211, 102, .18);
  border-color: rgba(37, 211, 102, .35);
}
.btn.whatsapp:hover{ background: rgba(37, 211, 102, .26); }

.side{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.small{
  background: var(--panel2);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.small h2{
  font-size: 16px;
  margin:0 0 10px;
  letter-spacing:.2px;
}
.list{
  margin:0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.55;
  font-size: 14px;
}
hr.sep{
  border:none;
  border-top:1px solid rgba(255,255,255,.12);
  margin:14px 0;
}

.footer{
  margin-top: 16px;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

/* Floating call button */
.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fab a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-weight:700;
}
.fab a.call{
  background: rgba(255, 204, 0, .22);
  border-color: rgba(255, 204, 0, .40);
}
.fab a.call:hover{ background: rgba(255, 204, 0, .30); }

.fab a.wa{
  background: rgba(37, 211, 102, .20);
  border-color: rgba(37, 211, 102, .40);
}
.fab a.wa:hover{ background: rgba(37, 211, 102, .28); }

.icon{
  width:18px; height:18px;
  display:inline-block;
}

/* Form */
form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(255, 204, 0, .55);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, .12);
}
textarea{
  min-height: 96px;
  resize: vertical;
}
.note{
  color: var(--muted);
  font-size: 13px;
  line-height:1.45;
}


/* Responsive */
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
  .nav{ gap:14px; }
  .navlinks{ flex-wrap:wrap; justify-content:flex-start; }
  .card{ padding:18px; }
  .kpis{ grid-template-columns: 1fr 1fr; }
  .actions{ flex-direction:column; align-items:stretch; }
  .actions .btn{ width:100%; justify-content:center; }
  .side{ margin-top:14px; }
}

@media (max-width: 560px){
  .container{ padding: 0 14px; }
  h1{ font-size: 30px; }
  .kpis{ grid-template-columns: 1fr; }
  .fab{ right: 14px; bottom: 14px; }
  .fab a{ padding: 10px 12px; }
}

/* Google reviews (manual) */
.reviews{ display:grid; gap:12px; }
.review-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 12px;
}
.review-head{ display:flex; gap:10px; align-items:center; }
.avatar{
  width:34px; height:34px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
}
.review-name{ font-weight:800; }
.review-meta{ color: var(--muted); font-size:12px; margin-top:2px; }
.review-text{ margin-top:10px; line-height:1.45; }

/* Hero subtitle + payment line */
.hero-subtitle{
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  opacity: .95;
}
.hero-payment{
  margin-top: 12px;
  margin-bottom: 2px;
  font-size: 0.98rem;
  font-weight: 600;
  opacity: .95;
}


/* --- Tweaks: centered hero title/subtitle --- */
.card h1{ text-align:center; }
.hero-subtitle{ text-align:center; margin-bottom:18px; }
