
:root {
  --bg: #0f172a;
  --card: #0b1226;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --brand: #60a5fa;
  --accent: #34d399;
  --ring: rgba(96, 165, 250, 0.5);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: radial-gradient(1200px 600px at 20% -10%, #1e293b, #0b1226 60%, #050812 100%); }

.container { width: min(1100px, 92%); margin: 0 auto; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px); background: rgba(5,8,18,0.6); border-bottom: 1px solid rgba(148,163,184,0.1); }
.site-header .brand { display: flex; align-items: center; gap: .6rem; }
.logo { width: 36px; height: 36px; }
.logo.small { width: 28px; height: 28px; opacity: .9; }
.brand-name { font-weight: 700; letter-spacing: .2px; }
.nav a { color: var(--text); text-decoration: none; margin: 0 .6rem; opacity: .85; }
.nav a:hover { opacity: 1; }
.nav .btn { margin-left: .75rem; }
.menu { display: none; background: none; border: none; font-size: 1.4rem; color: var(--text); }

.btn { display: inline-block; border-radius: 12px; padding: .7rem 1rem; border: 1px solid rgba(148,163,184,.2); text-decoration: none; color: var(--text); }
.btn.small { padding: .5rem .8rem; font-size: .95rem; }
.btn.primary { background: linear-gradient(135deg, var(--brand), var(--accent)); color: #081226; border: none; font-weight: 700; }
.btn.ghost { background: transparent; }
.btn:focus { outline: 4px solid var(--ring); outline-offset: 2px; }

.hero { padding: 6rem 0 3rem; background: radial-gradient(900px 400px at 70% 0%, rgba(96,165,250,.15), transparent 60%); }
.hero-inner { text-align: center; }
h1 { font-size: clamp(2.2rem, 3.4vw + 1rem, 3.2rem); margin: 0 0 .75rem; }
h1 .accent { background: linear-gradient(135deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 1.15rem; margin: 0 auto 1.25rem; max-width: 60ch; }
.cta-row { display: flex; gap: .8rem; justify-content: center; margin: 1rem 0 1.2rem; }
.hero-bullets { list-style: none; padding: 0; margin: 0; color: var(--muted); display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.section { padding: 3rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(148,163,184,.06), transparent); }
h2 { font-size: 1.8rem; margin: 0 0 1rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.card { background: linear-gradient(180deg, rgba(148,163,184,.08), rgba(148,163,184,.03)); border: 1px solid rgba(148,163,184,.15); border-radius: 16px; padding: 1rem; }
.features { padding-left: 1rem; color: var(--text); opacity: .9; }
.card-cta { margin-top: .6rem; }

.delivery-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.2rem; align-items: center; }
.illustration { width: 100%; height: auto; opacity: .9; filter: drop-shadow(0 10px 24px rgba(0,0,0,.4)); }

.form { margin-top: .5rem; }
.form .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: .8rem; }
label { display: grid; gap: .35rem; font-size: .95rem; color: var(--text); }
input, select, textarea { width: 100%; background: #0a1122; border: 1px solid rgba(148,163,184,.25); color: var(--text); padding: .7rem .8rem; border-radius: 12px; }
input:focus, select:focus, textarea:focus { outline: 4px solid var(--ring); outline-offset: 2px; }
.form-actions { display: flex; align-items: center; gap: .8rem; margin-top: .8rem; }
.small-note { color: var(--muted); font-size: .9rem; }

.contact-block { margin-top: .8rem; color: var(--muted); }

.site-footer { border-top: 1px solid rgba(148,163,184,.15); padding: 1.4rem 0; background: rgba(5,8,18,.6); }
.footer-inner { display: grid; gap: .6rem; justify-items: center; text-align: center; }
.brand-row { display: flex; gap: .6rem; align-items: center; opacity: .95; }
.foot-links a { color: var(--muted); text-decoration: none; margin: 0 .5rem; }
.foot-links a:hover { color: var(--text); }

@media (max-width: 860px) {
  .nav { display: none; }
  .menu { display: block; }
  .delivery-grid { grid-template-columns: 1fr; }
}


/* === Hero Slideshow Setup === */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero .slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: heroSlideshow 60s infinite;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}
@keyframes heroSlideshow {
  0% { background-image: url('/assets/slide1.jpg'); }
  10% { background-image: url('/assets/slide2.jpg'); }
  20% { background-image: url('/assets/slide3.jpg'); }
  30% { background-image: url('/assets/slide4.jpg'); }
  40% { background-image: url('/assets/slide5.jpg'); }
  50% { background-image: url('/assets/slide6.jpg'); }
  60% { background-image: url('/assets/slide7.jpg'); }
  70% { background-image: url('/assets/slide8.jpg'); }
  80% { background-image: url('/assets/slide9.jpg'); }
  90% { background-image: url('/assets/slide10.jpg'); }
  100% { background-image: url('/assets/slide10.jpg'); }
}


/* === FORCE hero slideshow to show and stack ABOVE gradients === */
.hero {
  position: relative !important;
  background: none !important;
}
.hero::before,
.hero::after {
  content: none !important; /* disable any gradient pseudo background */
}
.hero .slideshow {
  position: absolute;
  inset: 0;
  z-index: 0; /* sit behind content but above page background */
  background-size: cover;
  background-position: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.4);
}
.hero .container,
.hero .hero-inner {
  position: relative;
  z-index: 2; /* ensure text/buttons are on top */
}

/* Reviews and FAQ tweaks */
.review { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.review:last-child { border-bottom: none; }
details.faq { background: var(--card); padding: 1rem; border-radius: 1rem; margin: 0.75rem 0; }
details.faq summary { cursor: pointer; font-weight: 600; }
.muted { opacity: 0.8; }
.logo.small { height: 36px; }

/* Reviews carousel */
#reviews-carousel .carousel { position: relative; overflow: hidden; }
#reviews-carousel .carousel-track { display: flex; gap: 1rem; transition: transform 0.4s ease; }
#reviews-carousel .slide { min-width: min(600px, 88vw); }
#reviews-carousel .carousel-controls { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.75rem; }

.stars { letter-spacing: 1px; font-size: 1.1rem; }
