:root{
  --navy:#0B2A52;
  --navy2:#0A1E3D;
  --orange:#F59E0B;
  --orange2:#FF7A18;

  --bg:#ffffff;
  --text:#0f172a;
  --muted: rgba(15, 23, 42, .70);

  --card:#ffffff;
  --soft:#f6f8fc;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 16px 40px rgba(2, 6, 23, .10);

  --r:18px;
  --r2:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(245,158,11,.14), transparent 60%),
    radial-gradient(820px 500px at 85% 0%, rgba(11,42,82,.10), transparent 60%),
    var(--bg);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}
.muted{color:var(--muted)}
.small{font-size:13px}

/* Topbar */
.topbar{
  background: var(--soft);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding:10px 0;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  color: var(--navy2);
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.30);
}
.topbar-right{display:flex; gap:14px; flex-wrap:wrap}
.toplink{color: rgba(15,23,42,.82)}
.toplink:hover{color: rgba(15,23,42,1)}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo{height:46px; width:auto; display:block}
.foot-logo{height:42px}

/* Nav */
.nav{position:relative}
.nav-links{
  list-style:none;
  display:flex; align-items:center; gap:18px;
  margin:0; padding:0;
}
.nav-links a{
  font-weight:900;
  color: rgba(15,23,42,.85);
  padding:10px 10px;
  border-radius:14px;
  transition: transform .15s ease, background .15s ease;
}
.nav-links a:hover{transform: translateY(-1px); background: rgba(15,23,42,.05)}

.nav-toggle{
  display:none;
  width:44px; height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  align-items:center; justify-content:center;
  gap:5px; flex-direction:column;
}
.nav-toggle span{
  width:18px; height:2px; border-radius:10px;
  background: rgba(15,23,42,.85);
  display:block;
}

/* Buttons */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 16px;
  border-radius:14px;
  font-weight:1000;
  letter-spacing:.2px;
  color:#fff;
  border: 1px solid rgba(245,158,11,.45);
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  box-shadow: 0 14px 30px rgba(245,158,11,.22);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.02)}
.btn:active{transform: translateY(0)}
.btn-small{padding:10px 12px; border-radius:12px}

.btn-ghost{
  background: rgba(255,255,255,.90);
  color: var(--navy2);
  border: 1px solid rgba(11,42,82,.18);
  box-shadow: none;
}
.link{font-weight:900; color: var(--navy2)}

/* Hero */
.hero{padding:56px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.10fr .90fr;
  gap:18px;
  align-items:start;
}
.hero-tag{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(11,42,82,.06);
  border: 1px solid rgba(11,42,82,.10);
  font-weight:900;
  color: rgba(11,42,82,.92);
}
.tag-dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height:1.05;
  letter-spacing:-.9px;
}
.accent{
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  line-height:1.75;
  max-width: 64ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 12px}

.hero-proof{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 14px;
}
.proof{
  padding:12px 14px;
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  min-width: 170px;
}
.proof-num{font-weight:1100; font-size:22px; color: var(--navy2)}
.proof-label{color: var(--muted); font-size:13px; margin-top:4px}

.hero-bullets{
  margin-top: 14px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.bullet{
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.25);
  font-weight:900;
  color: rgba(11,42,82,.92);
}
.tick{color: var(--orange2); margin-right:6px}

/* Hero Right */
.hero-right{display:grid; gap:12px}

/* Hero image */
.hero-media{
  position:relative;
  border-radius: var(--r2);
  border:1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform .2s ease;
}
.hero-media img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
}
.media-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 30px rgba(2,6,23,.12);
  backdrop-filter: blur(6px);
}
.badge-title{
  font-weight:1100;
  color: var(--navy2);
  letter-spacing:.2px;
}
.badge-sub{
  margin-top:4px;
  font-size: 13px;
  color: rgba(15,23,42,.72);
  font-weight:800;
}

/* Strip */
.strip{
  display:flex; gap:10px; flex-wrap:wrap;
}
.strip-item{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  font-weight:900;
  color: rgba(15,23,42,.86);
}

/* Sections */
.section{padding:72px 0}
.section-soft{
  background: linear-gradient(180deg, rgba(246,248,252,.85), rgba(246,248,252,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  margin-bottom: 18px;
}
.section-head h2{margin:0; font-size:30px; letter-spacing:-.4px}
.section-head p{margin:0; line-height:1.7; max-width: 72ch}

/* Service cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top: 18px;
}
.card{
  padding:18px;
  border-radius: var(--r2);
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.card:hover{transform: translateY(-2px)}
.card-top{display:flex; align-items:center; gap:12px}
.card-ico{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(11,42,82,.06);
  border:1px solid rgba(11,42,82,.12);
}
.card ul{margin:12px 0 0; padding:0 0 0 18px; color: rgba(15,23,42,.82)}
.card li{margin:6px 0}

/* CTA */
.cta{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--r2);
  border:1px solid rgba(245,158,11,.25);
  background: rgba(245,158,11,.10);
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Reviews */
.reviews{
  position:relative;
  border-radius: var(--r2);
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
}
.review-track{
  display:flex; gap:16px;
  transition: transform .45s ease;
  will-change: transform;
}
.review{
  min-width: min(540px, 86vw);
  padding:18px;
  border-radius: var(--r2);
  border:1px solid var(--border);
  background: rgba(246,248,252,.85);
}
.stars{letter-spacing:2px; color: var(--orange2)}
.review p{margin:10px 0 14px; line-height:1.7; color: rgba(15,23,42,.88)}
.who{display:flex; gap:12px; align-items:center}
.avatar{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.25);
  font-weight:1100;
  color: rgba(11,42,82,.92);
}
.review-controls{
  position:absolute; right:14px; top:14px;
  display:flex; gap:10px;
}
.icon-btn{
  width:42px; height:40px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.92);
  font-size: 22px;
  cursor:pointer;
  transition: transform .15s ease;
}
.icon-btn:hover{transform: translateY(-1px)}

/* Location */
.location-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
  align-items:stretch;
}
.location-cards{
  display:grid; gap:12px;
}
.info{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius: var(--r2);
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.info-ico{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:16px;
  background: rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.25);
}
.dir-box{
  display:flex; justify-content:space-between; align-items:center;
  gap:14px;
  padding:14px;
  border-radius: var(--r2);
  border:1px solid rgba(11,42,82,.16);
  background: rgba(11,42,82,.04);
}

.map-card{
  border-radius: var(--r2);
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.map-wrap iframe{
  width:100%;
  height: 380px;
  border:0;
  display:block;
}

/* Footer */
.footer{
  padding: 28px 0 44px;
  border-top:1px solid var(--border);
  background: var(--soft);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.foot-right{display:flex; gap:12px; flex-wrap:wrap}
.foot-right a{
  padding:8px 10px;
  border-radius: 14px;
  background: #fff;
  border:1px solid var(--border);
  color: rgba(15,23,42,.85);
  font-weight:900;
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .location-grid{grid-template-columns: 1fr}
  .hero-media img{height: 320px}
}
@media (max-width: 640px){
  .cards{grid-template-columns: 1fr}
  .review{min-width: 88vw}

  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;
    right:0; top:54px;
    width: min(320px, 92vw);
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
}
