
:root{
  --blue:#1e90ff;
  --blue-dark:#0b65c2;
  --black:#0f1115;
  --gray:#8b95a1;
  --light:#f5f7fb;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:#0a0c10;color:#e9eef7;font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;line-height:1.6}

a{color:#9ec9ff;text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

header.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(10,12,16,.8);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06)
}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand .logo{width:55px;height:55px;border-radius:0px;display:inline-block;background: url("/img/logo.webp") center/contain no-repeat;}
.brand .name{font-weight:800;letter-spacing:.2px}

nav ul{display:flex;list-style:none;gap:18px;margin:0;padding:0}
nav a{color:#9ec9ff;font-weight:600}
nav a.active{color:#fff;border-bottom:2px solid var(--blue)}
.btn{
  display:inline-block;padding:12px 18px;border-radius:12px;
  background:var(--blue);color:#fff;font-weight:700;border:1px solid rgba(255,255,255,.12);
  transition:transform .08s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px);background:var(--blue-dark)}

.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:26px;height:3px;background:#e8eefb;border-radius:2px}

@media(max-width:820px){
  nav ul{display:none;position:absolute;right:20px;top:64px;background:#0a0c10;padding:14px 16px;border:1px solid rgba(255,255,255,.08);border-radius:12px;flex-direction:column;width:200px}
  nav ul.open{display:flex}
  .hamburger{display:flex}
}

.hero{
  position:relative;min-height:72vh;display:grid;place-items:center;
  background:radial-gradient(1200px 500px at 80% -10%, rgba(30,144,255,.35), transparent 40%),
             linear-gradient(180deg, rgba(30,144,255,.06), rgba(10,12,16,1)),
             #0a0c10;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:url('/img/hero.jpeg') center/contain no-repeat;
  opacity:.20;pointer-events:none;
}
.hero-inner{position:relative;z-index:1;text-align:center;padding:60px 0}
.hero h1{font-size:clamp(32px,4vw,56px);margin:0 0 14px;font-weight:900;color:#fff}
.hero p{margin:0 0 24px;color:#c9d6ea;font-size:clamp(16px,2.2vw,20px)}
.cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.badges{margin-top:16px;color:#9fb3d9;font-size:14px}

.section{padding:60px 0;border-bottom:1px solid rgba(255,255,255,.06);background:#0a0c10}
.section h2{font-size:28px;margin:0 0 16px;color:#fff}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media(max-width:820px){.grid{grid-template-columns:1fr}}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px}
.muted{color:#b8c6d6;}

.reviews-embed{
  background:rgba(255,255,255,.03);
  border:1px dashed rgba(255,255,255,.2);
  border-radius:12px;padding:18px;color:#b8c4db
}

.footer{
  background:#080a0e;color:#aeb8cc
}
.footer .cols{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
@media(max-width:820px){.footer .cols{grid-template-columns:1fr}}
.footer a{color:#9ec9ff;color:#94a8cf}
.footer .inspired-by {
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-size: 1.1em;
}

.footer .inspired-by a {
  color: #ff6347; /* same accent tone as Moustache Hookah Bar */
  text-decoration: none;
  font-weight: 600;
}

.footer .inspired-by a:hover {
  text-decoration: underline;
  color: #ffa07a; /* softer hover tone */
}

/* ——— Request Form Aesthetic ——— */
.request-wrap { max-width: 860px; margin: 0 auto; }
.request-card {
  --radius: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  padding: clamp(16px, 3vw, 28px);
}

.request-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.request-badge {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  background: #f9d3421a; color: #f9d342; padding: 6px 10px; border-radius: 999px;
}
.request-sub { color: #666; margin-top: 6px; }

.form-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}

.form-cell { grid-column: span 12; }
@media (min-width: 640px) {
  .form-cell.sm-6 { grid-column: span 6; }
  .form-cell.sm-4 { grid-column: span 4; }
}

.input-wrap {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 14px 10px 44px;
  transition: border .2s, box-shadow .2s, transform .06s ease-in-out;
}
.input-wrap:focus-within {
  border-color: #f9d342;
  box-shadow: 0 0 0 4px rgba(249,211,66,.18);
}
.input-wrap .icon {
  position: absolute; left: 12px; top: 12px; width: 20px; height: 20px; opacity: .75;
}

.input-wrap input,
.input-wrap textarea {
  width: 100%; border: 0; outline: 0; background: transparent;
  font-size: 15px; line-height: 1.5; color: #111;
}
.input-wrap textarea { min-height: 120px; resize: vertical; }

.label-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px; margin-left: 2px;
}
.label-row label { font-weight: 600; color: #222; }
.req { color: #e14646; font-weight: 600; margin-left: 6px; }

.helper { font-size: 12px; color: #666; margin-top: 6px; }

.consent {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #333;
  padding: 10px 12px; border-radius: 10px; background: #f7f7f7;
}

.btn.primary {
  background: #f9d342; color: #111; border: none; border-radius: 12px;
  padding: 12px 18px; font-weight: 700; cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease;
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 10px 16px rgba(0,0,0,.08); }
.btn.primary:disabled { opacity: .6; cursor: not-allowed; }

.status {
  margin-top: 10px; font-size: 14px;
}
.status.ok { color: #1a7f46; }
.status.err { color: #b93838; }

/* small step dots just for vibe */
.step-dots { display:flex; gap:6px; margin: 8px 0 2px; }
.step-dots span {
  width:8px; height:8px; border-radius:50%;
  background: #eaeaea;
}
.step-dots span.active { background: #f9d342; }

