:root{
  --bg:#ffffff;
  --text:#0c1b2a;
  --muted:#516173;
  --blue:#0b5bd3;
  --blue-2:#083a86;
  --orange:#ff7a18;
  --card:#f6f8fb;
  --border:#e4e9f2;
  --shadow: 0 10px 30px rgba(10,30,60,.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(11,91,211,.14), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(255,122,24,.14), transparent 50%),
              var(--bg);
}
a{color:inherit}
img{max-width:100%; height:auto}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.row{display:flex; gap:16px; flex-wrap:wrap}
.grid{display:grid; gap:16px}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}

@media (max-width: 920px){
  .grid-3,.grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 640px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(255,255,255,.82);
  border-bottom:1px solid rgba(228,233,242,.75);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo{
  width:40px; height:40px; border-radius:12px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 10px 18px rgba(11,91,211,.25);
  display:grid; place-items:center;
  color:#fff; font-weight:800;
}
.brand h1{
  font-size:15px; line-height:1.1; margin:0;
}
.brand small{display:block; color:var(--muted); font-weight:600}

.nav{
  display:flex; gap:14px; align-items:center;
}
.nav a{
  font-weight:700;
  text-decoration:none;
  color: #10263b;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background: rgba(11,91,211,.08)}
.nav .cta{
  background: var(--blue);
  color:#fff;
}
.nav .cta:hover{background: var(--blue-2)}

.hero{
  padding: 42px 0 18px;
}
.hero-card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,248,251,.9));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-inner{
  padding: 28px 22px;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  align-items:center;
}
@media (max-width: 820px){
  .hero-inner{grid-template-columns:1fr}
}
.pill{
  display:inline-flex;
  gap:8px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,91,211,.09);
  border:1px solid rgba(11,91,211,.18);
  color:#0d2d59;
  font-weight:800;
  font-size: 12px;
}
.pill .dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,24,.25);
}

.h-title{
  margin: 12px 0 8px;
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h-sub{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15.5px;
  line-height:1.55;
}

.btns{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  font-weight:900;
}
.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  border-color: rgba(0,0,0,0);
}
.btn-primary:hover{filter:brightness(1.04)}
.btn-accent{
  background: linear-gradient(135deg, var(--orange), #ff9b52);
  color:#1c1206;
  border-color: rgba(0,0,0,0);
}
.btn-accent:hover{filter:brightness(1.03)}
.btn-ghost:hover{background: rgba(11,91,211,.06)}

.hero-side{
  background: radial-gradient(600px 320px at 20% 20%, rgba(255,122,24,.22), transparent 55%),
              radial-gradient(500px 300px at 80% 30%, rgba(11,91,211,.22), transparent 55%),
              #091a2c;
  color:#fff;
  border-left: 1px solid rgba(255,255,255,.09);
  height:100%;
}
.hero-side-inner{
  padding: 22px;
}
.stat{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  margin-bottom: 12px;
}
.stat b{display:block}
.stat p{margin:4px 0 0; color: rgba(255,255,255,.78); font-size: 13px; line-height:1.4}

.section{padding: 22px 0}
.section h2{
  margin:0 0 10px;
  font-size: 20px;
  letter-spacing:-.01em;
}
.section .lead{margin:0 0 16px; color: var(--muted); line-height:1.55}

.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(10,30,60,.08);
}
.card-pad{padding: 16px}
.service{
  display:flex; gap:12px; align-items:flex-start;
}
.icon{
  width:40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(11,91,211,.1);
  border:1px solid rgba(11,91,211,.18);
  flex: 0 0 auto;
}
.icon.orange{
  background: rgba(255,122,24,.12);
  border-color: rgba(255,122,24,.22);
}
.service h3{margin:0 0 4px; font-size: 16px}
.service p{margin:0; color: var(--muted); line-height:1.45; font-size: 13.5px}

.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,122,24,.14);
  border:1px solid rgba(255,122,24,.22);
  font-weight:900;
  color:#4a2a0c;
  font-size: 12px;
}
.badge .pulse{
  width:9px; height:9px; border-radius:999px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,122,24,.55);
  animation:pulse 1.8s infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(255,122,24,.55)}
  70%{box-shadow: 0 0 0 10px rgba(255,122,24,0)}
  100%{box-shadow: 0 0 0 0 rgba(255,122,24,0)}
}

.form{
  display:grid; gap:12px;
}
label{font-weight:900; font-size: 12px; color:#18314a}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: #fff;
  outline:none;
  font-size: 14px;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(11,91,211,.45);
  box-shadow: 0 0 0 4px rgba(11,91,211,.12);
}
.help{color:var(--muted); font-size: 12.5px; line-height:1.45}
.price{
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
  padding: 14px 14px;
  background: rgba(11,91,211,.06);
  border:1px solid rgba(11,91,211,.15);
  border-radius: 16px;
}
.price strong{font-size: 22px}
.price small{color: var(--muted); font-weight:700}

.gallery{
  display:grid; gap:16px;
}
.embed{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  min-height: 180px;
}
.embed-header{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding: 12px 14px;
  border-bottom:1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.embed-header b{font-size: 13px}
.embed-header a{font-weight:900; color: var(--blue); text-decoration:none}
.embed-body{padding: 12px 14px}
.video-grid{
  display:grid; gap:12px;
  grid-template-columns:repeat(3, minmax(0,1fr));
}
@media (max-width: 920px){.video-grid{grid-template-columns:repeat(2, minmax(0,1fr))}}
@media (max-width: 640px){.video-grid{grid-template-columns:1fr}}

.video{
  display:block;
  text-decoration:none;
  border:1px solid var(--border);
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
}
.thumb{
  aspect-ratio: 16/9;
  background: #0b1f35;
}
.video .meta{padding: 10px 12px}
.video .meta b{display:block; font-size: 13px; line-height:1.35}
.video .meta small{color: var(--muted); font-weight:700}

.stars{
  color: #ff9c2a;
  letter-spacing: .08em;
  font-weight: 900;
}

.contact-actions{display:flex; gap:12px; flex-wrap:wrap}

footer{
  padding: 18px 0 90px;
  color: var(--muted);
  font-size: 13px;
}
.social{
  display:flex; gap:10px; flex-wrap:wrap;
}
.social a{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.9);
  text-decoration:none;
  font-weight: 900;
}
.social a:hover{background: rgba(11,91,211,.06)}
.social svg{width:18px; height:18px}

.floating{
  position:fixed; right: 14px; bottom: 14px; z-index:60;
  display:flex; flex-direction:column; gap:10px;
}
.fab{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 0;
  text-decoration:none;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  font-weight: 1000;
}
.fab-wa{background: #22c55e; color:#06240f}
.fab-call{background: linear-gradient(135deg, var(--orange), #ffb14d); color:#2a1606}
.fab svg{width:18px; height:18px}

.sticky-call{
  position:fixed; left:0; right:0; bottom:0; z-index:55;
  background: rgba(255,255,255,.92);
  border-top:1px solid rgba(228,233,242,.8);
  backdrop-filter: blur(10px);
  display:none;
}
@media (max-width: 820px){
  .sticky-call{display:block}
  footer{padding-bottom: 140px}
}
.sticky-inner{
  display:flex; gap:10px; padding: 10px 14px;
}
.sticky-inner a{flex:1}

.sr-only{
  position:absolute;
  width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
}
