:root{
  --bg:#fbfcff;
  --bg2:#f5f7ff;
  --text:#0f172a;
  --muted:#64748b;
  --border:rgba(15,23,42,.10);
  --shadow:0 22px 60px rgba(2,6,23,.10);
  --shadow2:0 16px 40px rgba(2,6,23,.08);
  --accent:#e53935;
  --accent2:#ff7a18;
  --card:#ffffff;
  --radius:18px;
  --radius2:28px;
}

*{box-sizing:border-box}
html,body{
  overflow-x:hidden;margin:0;padding:0;overflow-x:hidden}

/* Custom scrollbar (Chrome/Edge/Safari) */
::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track{
  background: rgba(15,23,42,.06);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(229,57,53,.75), rgba(255,122,24,.65));
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(229,57,53,.12);
}
::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(229,57,53,.90), rgba(255,122,24,.78));
}

/* Firefox */
html{
  scrollbar-width: thin;
  scrollbar-color: rgba(229,57,53,.80) rgba(15,23,42,.06);
}

body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(229,57,53,.10), transparent 60%),
    radial-gradient(1000px 500px at 85% 10%, rgba(255,122,24,.10), transparent 55%),
    linear-gradient(180deg,var(--bg),#ffffff);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,92vw);margin:0 auto}

.skip{position:absolute;left:-999px;top:8px;background:var(--card);padding:10px 12px;border-radius:12px;border:1px solid var(--border)}
.skip:focus{left:12px;z-index:10000}

.topbar{
  position:sticky;top:0;z-index:60;
  background:rgba(251,252,255,.72);
  backdrop-filter:saturate(150%) blur(12px);
  border-bottom:1px solid var(--border);
}
.topbarInner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:16px}

.nav{display:flex;align-items:center;gap:10px}
.nav a{
  position:relative;
  font-weight:900;
  font-size:13px;
  color:rgba(15,23,42,.80);
  padding:10px 12px;
  border-radius:14px;
  transition:transform .12s ease, background .12s ease, color .12s ease, box-shadow .12s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:8px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(229,57,53,.95), rgba(255,122,24,.95));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
  opacity:.85;
}
.nav a:hover{
  color:rgba(15,23,42,1);
  background:rgba(255,255,255,.60);
  box-shadow:0 14px 30px rgba(2,6,23,.06);
  transform:translateY(-1px);
}
.nav a:hover::after{transform:scaleX(1)}
.nav a:focus-visible{
  outline:0;
  box-shadow:0 0 0 6px rgba(229,57,53,.12), 0 14px 30px rgba(2,6,23,.06);
  background:rgba(255,255,255,.70);
}

.brand{display:flex;align-items:center;gap:12px}
.brandLogo{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--border);
  background:#fff;object-fit:cover;
  box-shadow:0 14px 26px rgba(2,6,23,.10);
}
.brandText{display:flex;flex-direction:column}
.brandName{font-weight:800;letter-spacing:.2px}
.brandSub{font-size:12px;color:var(--muted)}

.nav{display:flex;align-items:center;gap:18px}
.navCta{
  padding:10px 14px;border-radius:14px;
  background:linear-gradient(180deg, rgba(229,57,53,.13), rgba(255,122,24,.05));
  border:1px solid rgba(229,57,53,.20);
  box-shadow:0 16px 34px rgba(229,57,53,.10);
}

.menuBtn{
  display:none;gap:5px;flex-direction:column;justify-content:center;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.72);
  cursor:pointer
}
.menuBtn span{height:2px;width:18px;background:var(--text);border-radius:999px;margin:0 auto}
.mobileNav{
  border-top:1px solid var(--border);
  background:rgba(251,252,255,.92);
  padding:10px 0
}
.mobileNav a{display:block;padding:12px 4vw;color:rgba(15,23,42,.86);font-weight:800}
.mobileNav a:active{background:rgba(0,0,0,.04)}

.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(15,23,42,.10), transparent);
}

.hero{position:relative;padding:56px 0 34px}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(700px 280px at 20% 15%, rgba(229,57,53,.10), transparent 60%),
    radial-gradient(650px 260px at 85% 25%, rgba(255,122,24,.10), transparent 60%);
  pointer-events:none;
}
.heroGrid{position:relative;display:grid;grid-template-columns:1.12fr .88fr;gap:28px;align-items:stretch}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.72);
  color:rgba(15,23,42,.75);
  font-weight:800;font-size:12px;
}

h1{
  font-size:46px;line-height:1.06;margin:14px 0 10px;
  letter-spacing:-.8px;
}
.lead{color:var(--muted);font-size:16px;max-width:44ch;margin:0 0 18px}

.heroBtns{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0 18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.82);
  font-weight:900;
  box-shadow:0 14px 34px rgba(2,6,23,.08);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 18px 44px rgba(2,6,23,.10)}
.btn:active{transform:translateY(0px)}
.btn.primary{
  border-color:rgba(229,57,53,.22);
  background:linear-gradient(180deg, rgba(229,57,53,.14), rgba(255,122,24,.06));
}
.btn.ghost{background:rgba(255,255,255,.70)}
.btn.small{padding:10px 12px;border-radius:14px;font-weight:900}
.btn.full{width:100%}
.arr{font-weight:900;opacity:.9}

.miniStats{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
.stat{
  padding:10px 12px;border-radius:16px;border:1px solid var(--border);
  background:rgba(255,255,255,.70);
  min-width:152px
}
.statNum{font-weight:950;letter-spacing:.2px}
.statTxt{font-size:12px;color:var(--muted);font-weight:700}

.heroCard{
  border-radius:var(--radius2);
  background:rgba(255,255,255,.70);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;flex-direction:column;
}
.heroMedia{padding:14px}
.heroVideo{
  width:100%;
  border-radius:20px;
  border:1px solid var(--border);
  background:#000;
  aspect-ratio:16/10;
  object-fit:cover
}
.heroCardFooter{
  margin-top:auto;
  padding:14px 16px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.82)
}
.smallTitle{font-weight:950}
.smallText{font-size:12px;color:var(--muted);font-weight:650}

.section{padding:56px 0}
.section.muted{background:linear-gradient(180deg,var(--bg2),#ffffff)}
.sectionHead{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:18px}
.sectionHead h2{margin:0;font-size:28px;letter-spacing:-.2px}
.sectionHead p{margin:0;color:var(--muted);font-weight:650}

.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.card{
  border-radius:var(--radius2);
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  padding:18px;
  box-shadow:var(--shadow2);
  transition:transform .12s ease, box-shadow .12s ease;
}
.card:hover{transform:translateY(-2px);box-shadow:0 22px 60px rgba(2,6,23,.10)}
.card h3{margin:10px 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:13px;font-weight:650}
.icon{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  border:1px solid rgba(229,57,53,.18);
  background:linear-gradient(180deg, rgba(229,57,53,.10), rgba(255,122,24,.05));
  color:rgba(15,23,42,.92)
}
.icon svg{width:22px;height:22px}

.bar{
  margin-top:16px;
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.72);
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 16px;gap:16px;flex-wrap:wrap;
  box-shadow:0 16px 40px rgba(2,6,23,.06);
}
.barTitle{font-weight:950}
.barText{font-size:13px;color:var(--muted);font-weight:650}
.barRight{display:flex;gap:10px;flex-wrap:wrap}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.78);
  padding:16px;
  display:flex;gap:12px;align-items:flex-start;
  box-shadow:0 16px 40px rgba(2,6,23,.06);
}
.stepNum{
  width:38px;height:38px;border-radius:16px;
  display:grid;place-items:center;
  font-weight:950;
  background:linear-gradient(180deg, rgba(229,57,53,.14), rgba(255,122,24,.06));
  border:1px solid rgba(229,57,53,.16)
}
.stepTitle{font-weight:950}
.stepText{color:var(--muted);font-size:13px;margin-top:2px;font-weight:650}

.chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.chip{
  padding:10px 12px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.76);
  font-weight:850;font-size:13px;color:rgba(15,23,42,.84);
  box-shadow:0 12px 30px rgba(2,6,23,.06);
}

.split{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px}
.splitCard{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.78);
  padding:16px;
  box-shadow:0 16px 40px rgba(2,6,23,.06);
}
.splitTitle{font-weight:950}
.splitText{margin-top:6px;color:var(--muted);font-size:13px;font-weight:650}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gItemPlain{
  border-radius:24px;overflow:hidden;
  box-shadow:0 22px 60px rgba(2,6,23,.12);
  border:1px solid var(--border);
  background:#fff;
  position:relative;
}
.gItemPlain::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(2,6,23,.18));
  opacity:.0;
  transition:opacity .2s ease;
}
.gItemPlain:hover::after{opacity:1}
.gItemPlain img{width:100%;height:300px;object-fit:cover;transition:transform .25s ease}
.gItemPlain:hover img{transform:scale(1.03)}

.locationGrid{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;align-items:stretch}
.mapCard{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  overflow:hidden;
  background:#fff;
  box-shadow:0 22px 60px rgba(2,6,23,.10)
}
.mapCard iframe{width:100%;height:340px;border:0}
.locCard{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.80);
  padding:18px;
  box-shadow:0 18px 50px rgba(2,6,23,.08);
  display:flex;flex-direction:column;gap:10px
}
.locTitle{font-weight:950;font-size:16px}
.locRow{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.badge{
  font-size:12px;font-weight:900;color:rgba(15,23,42,.70);
  padding:7px 10px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.72)
}
.locText{color:var(--muted);font-size:13px;font-weight:650}
.locLink{color:rgba(15,23,42,.92);font-weight:900}
.locLink:hover{color:rgba(15,23,42,1)}
.locBtns{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}

.contactGrid{display:grid;grid-template-columns:.9fr 1.1fr;gap:14px;align-items:start}
.contactCard{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.80);
  padding:18px;
  box-shadow:0 18px 50px rgba(2,6,23,.08)
}
.contactTitle{font-weight:950;margin-bottom:10px}
.contactLine{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:10px}

.form{
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.80);
  padding:18px;
  box-shadow:0 18px 50px rgba(2,6,23,.08)
}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
label{font-weight:900;font-size:12px;color:rgba(15,23,42,.74)}
input,textarea{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 12px;
  font-family:inherit;
  outline:none;
  background:rgba(255,255,255,.92)
}
input:focus,textarea:focus{
  border-color:rgba(229,57,53,.26);
  box-shadow:0 0 0 6px rgba(229,57,53,.10)
}

.footer{
  border-top:1px solid var(--border);
  padding:22px 0 14px;
  background:rgba(255,255,255,.72)
}
.footerInner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footLeft{display:flex;align-items:center;gap:12px}
.footLogo{width:42px;height:42px;border-radius:14px;border:1px solid var(--border);background:#fff;object-fit:cover}
.footName{font-weight:950}
.footSub{font-size:12px;color:var(--muted);font-weight:650}
.footRight{display:flex;gap:14px}
.footRight a{color:rgba(15,23,42,.70);font-weight:900;font-size:13px}
.footRight a:hover{color:rgba(15,23,42,1)}
.copy{padding-top:12px;color:rgba(15,23,42,.52);font-size:12px;font-weight:650}

.reveal{opacity:0;transform:translateY(14px);transition:opacity .6s ease, transform .6s ease}
.reveal.in{opacity:1;transform:translateY(0)}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  h1{font-size:40px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .gItemPlain img{height:260px}
  .locationGrid{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav{display:none}
  .menuBtn{display:flex}
  h1{font-size:36px}
  .stat{min-width:140px}
}

.navCta{transition:transform .12s ease, box-shadow .12s ease, filter .12s ease}
.navCta:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 46px rgba(229,57,53,.14);
  filter:saturate(1.05);
}

.mobileNav a{
  border-radius:14px;
  margin:2px 2.5vw;
}
.mobileNav a:hover{
  background:rgba(255,255,255,.70);
  box-shadow:0 14px 30px rgba(2,6,23,.06);
}
