/* ============================================================
   V-Care Technologies — Brand Stylesheet
   Palette derived from logo:
   Primary #0A4DB3 · Light #2DA8FF · Orange #FF6B00
   Gold #F4B321 · White #FFFFFF
============================================================ */

:root {
  --blue-900: #061a3a;
  --blue-800: #082a63;
  --blue-700: #0A4DB3;   /* primary */
  --blue-500: #1769d9;
  --blue-300: #2DA8FF;   /* light */
  --orange:   #FF6B00;
  --gold:     #F4B321;
  --white:    #FFFFFF;

  --ink:      #122036;
  --muted:    #5b6b85;
  --line:     #e4e9f2;
  --bg-soft:  #f5f8fd;

  --grad-brand: linear-gradient(135deg, #0A4DB3 0%, #2DA8FF 100%);
  --grad-warm:  linear-gradient(135deg, #FF6B00 0%, #F4B321 100%);
  --grad-hero:  linear-gradient(150deg, #061a3a 0%, #0A4DB3 55%, #1f7ce0 100%);

  --shadow-sm: 0 4px 14px rgba(10, 77, 179, .08);
  --shadow-md: 0 14px 40px rgba(10, 77, 179, .14);
  --shadow-lg: 0 24px 60px rgba(6, 26, 58, .22);

  --radius: 16px;
  --radius-lg: 24px;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  margin: 0;
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display { font-family: var(--font-display); line-height: 1.15; letter-spacing: -.02em; }

a { text-decoration: none; }

img { max-width: 100%; }

.section { padding: 92px 0; position: relative; }
.section--soft { background: var(--bg-soft); }

.container { max-width: 1180px; }

/* ---------- Reusable headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-700);
  background: rgba(45,168,255,.12);
  padding: .4rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.eyebrow i { color: var(--orange); }

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 700; color: var(--ink); margin: 0 0 1rem;
}
.section-title span { color: var(--blue-700); }
.section-lead { color: var(--muted); font-size: 1.06rem; max-width: 720px; }

.text-accent { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: 600; border-radius: 50px; padding: .72rem 1.6rem; transition: transform .25s ease, box-shadow .25s ease, background .25s; }
.btn:active { transform: translateY(1px); }

.btn-brand { background: var(--grad-brand); color: #fff; border: none; box-shadow: 0 10px 24px rgba(10,77,179,.32); }
.btn-brand:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(10,77,179,.42); }

.btn-warm { background: var(--grad-warm); color: #fff; border: none; box-shadow: 0 10px 24px rgba(255,107,0,.3); }
.btn-warm:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,107,0,.42); }

.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--blue-700); border-color: #fff; }

.btn-outline-brand { color: var(--blue-700); border: 1.5px solid var(--blue-700); background: #fff; }
.btn-outline-brand:hover { background: var(--blue-700); color: #fff; }

/* ============================================================
   HEADER / NAV
============================================================ */
.navbar {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, box-shadow .3s ease, background .3s;
  padding: .55rem 0;
  z-index: 1030;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); padding: .35rem 0; background: rgba(255,255,255,.96); }

.navbar-brand { display: flex; align-items: center; gap: .7rem; }
.navbar-brand img { height: 52px; transition: height .3s; }
.navbar.scrolled .navbar-brand img { height: 46px; }
.brand-text { line-height: 1.05; }
.brand-text .bname { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--blue-800); display: block; }
.brand-text .btag { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); font-weight: 600; }

.navbar .nav-link {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  margin: 0 .15rem; padding: .5rem .85rem !important; border-radius: 50px;
  font-size: .94rem; position: relative; transition: color .2s, background .2s;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--blue-700); }
.navbar .nav-link.active { background: rgba(45,168,255,.12); }

.nav-call {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--grad-warm); color: #fff; font-family: var(--font-display);
  font-weight: 600; padding: .6rem 1.25rem; border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255,107,0,.32); transition: transform .25s, box-shadow .25s;
}
.nav-call:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,107,0,.42); }
.nav-call .nums { display: flex; flex-direction: column; line-height: 1.1; font-size: .78rem; }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-hero);
  padding: 150px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,107,0,.28), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(244,179,33,.18), transparent 45%);
}
/* faint grid + scanlines to evoke surveillance/tech */
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 70%);
          mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 2; }

.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1.2rem; }
.hero h1 .hl { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead-sub { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 620px; margin-bottom: 2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.6rem; }
.hero-badge { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.92); font-family: var(--font-display); font-weight: 500; }
.hero-badge i { color: var(--gold); font-size: 1.05rem; }

/* hero visual: animated camera/scan device echoing the logo */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 360px; }
.scan-ring {
  position: absolute; border-radius: 50%; border: 2px solid rgba(45,168,255,.35);
}
.scan-ring.r1 { width: 340px; height: 340px; animation: pulse 4s ease-out infinite; }
.scan-ring.r2 { width: 250px; height: 250px; border-color: rgba(255,107,0,.4); animation: pulse 4s ease-out infinite .8s; }
.scan-ring.r3 { width: 165px; height: 165px; border-color: rgba(244,179,33,.5); animation: pulse 4s ease-out infinite 1.6s; }
@keyframes pulse { 0% { transform: scale(.85); opacity: .9; } 70% { opacity: .15; } 100% { transform: scale(1.18); opacity: 0; } }

.lens {
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2DA8FF 0%, #0A4DB3 45%, #061a3a 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,.6), 0 20px 50px rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
}
.lens::before { content: ""; position: absolute; top: 22px; left: 30px; width: 34px; height: 22px; background: rgba(255,255,255,.85); border-radius: 50%; transform: rotate(-25deg); filter: blur(1px); }
.lens i { color: rgba(255,255,255,.9); font-size: 2.2rem; }

.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; margin-top: 3.4rem; }
.hero-stats .stat { background: rgba(255,255,255,.06); padding: 1.3rem 1rem; text-align: center; }
.hero-stats .num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--gold); display: block; }
.hero-stats .lbl { font-size: .82rem; color: rgba(255,255,255,.82); }

/* wave divider */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ============================================================
   ABOUT
============================================================ */
.about-img-wrap { position: relative; }
.about-card {
  background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: 2.4rem; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.about-card::after { content: "\f3ed"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -10px; bottom: -22px; font-size: 9rem; color: rgba(255,255,255,.08); }
.about-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.about-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.about-mini .mi { background: rgba(255,255,255,.12); border-radius: 12px; padding: 1rem; }
.about-mini .mi i { color: var(--gold); font-size: 1.3rem; }
.about-mini .mi strong { display: block; font-family: var(--font-display); margin-top: .4rem; }
.about-mini .mi span { font-size: .82rem; color: rgba(255,255,255,.82); }

.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-list li { display: flex; gap: .8rem; margin-bottom: .85rem; color: var(--ink); }
.check-list li i { color: var(--orange); margin-top: .25rem; }

/* ============================================================
   PRODUCTS
============================================================ */
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; height: 100%; transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.prod-card::before { content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 100%; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.prod-card:hover::before { transform: scaleX(1); }

.prod-icon {
  width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; margin-bottom: 1.3rem; box-shadow: var(--shadow-sm);
}
.ic-blue { background: var(--grad-brand); }
.ic-warm { background: var(--grad-warm); }
.ic-cyan { background: linear-gradient(135deg,#2DA8FF,#0A4DB3); }
.ic-gold { background: linear-gradient(135deg,#F4B321,#FF6B00); }

.prod-card h3 { font-size: 1.22rem; margin-bottom: .9rem; }
.prod-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.prod-tags span { font-size: .82rem; background: var(--bg-soft); border: 1px solid var(--line); color: var(--muted); padding: .3rem .75rem; border-radius: 50px; transition: background .2s, color .2s; }
.prod-card:hover .prod-tags span { background: rgba(45,168,255,.1); color: var(--blue-700); }

/* ============================================================
   CCTV SOLUTIONS
============================================================ */
.cctv { background: var(--blue-900); color: #fff; overflow: hidden; position: relative; }
.cctv::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(255,107,0,.18), transparent 40%), radial-gradient(circle at 5% 95%, rgba(45,168,255,.16), transparent 45%); }
.cctv .container { position: relative; z-index: 2; }
.cctv .section-title { color: #fff; }
.cctv .section-title span { color: var(--gold); }
.cctv .section-lead { color: rgba(255,255,255,.82); }

.sector-pill { display: inline-flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: .6rem 1.1rem; border-radius: 50px; font-family: var(--font-display); font-weight: 500; font-size: .92rem; margin: 0 .55rem .8rem 0; transition: background .25s, transform .25s; }
.sector-pill i { color: var(--blue-300); }
.sector-pill:hover { background: rgba(45,168,255,.18); transform: translateY(-2px); }

.feature-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.5rem; height: 100%; transition: background .3s, transform .3s; }
.feature-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }
.feature-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: .8rem; }
.feature-card h4 { font-size: 1.02rem; margin: 0; color: #fff; }

/* ============================================================
   SERVICES
============================================================ */
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; height: 100%; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(45,168,255,.4); }
.svc-card .svc-ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; background: rgba(45,168,255,.12); color: var(--blue-700); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: background .3s, color .3s; }
.svc-card:hover .svc-ic { background: var(--grad-brand); color: #fff; }
.svc-card h4 { font-size: 1.06rem; margin: 0 0 .3rem; }
.svc-card p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card { text-align: center; padding: 2rem 1.2rem; border-radius: var(--radius); transition: background .3s, transform .3s; height: 100%; }
.why-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.why-ic { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.1rem; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: #fff; background: var(--grad-brand); box-shadow: 0 12px 26px rgba(10,77,179,.28); }
.why-card:nth-child(2n) .why-ic { background: var(--grad-warm); box-shadow: 0 12px 26px rgba(255,107,0,.28); }
.why-card h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.why-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ============================================================
   COVERAGE
============================================================ */
.map-frame { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.india-map { width: 100%; height: auto; }
.india-map .state-bg { fill: #e9eff7; stroke: #fff; stroke-width: 1.4; transition: fill .3s; }
.india-map .state-on { fill: url(#stateGrad); stroke: #fff; stroke-width: 1.6; }
.india-map .state-on:hover { fill: var(--orange); }
.state-dot { animation: blip 2.4s ease-in-out infinite; }
@keyframes blip { 0%,100% { opacity:1;} 50%{opacity:.35;} }

.coverage-list { list-style: none; padding: 0; margin: 0; }
.coverage-list li { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.3rem; margin-bottom: 1rem; transition: transform .25s, box-shadow .25s; }
.coverage-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.coverage-list .cv-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.coverage-list strong { font-family: var(--font-display); display: block; }
.coverage-list span { font-size: .85rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; height: 100%; position: relative; transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .quote-mark { font-size: 2.6rem; color: rgba(45,168,255,.25); font-family: Georgia, serif; line-height: .4; margin-bottom: 1rem; display: block; }
.testi-card .stars { color: var(--gold); margin-bottom: 1rem; }
.testi-card p { color: var(--ink); font-size: .98rem; }
.testi-author { display: flex; align-items: center; gap: .9rem; margin-top: 1.4rem; }
.testi-author .ava { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.testi-author strong { display: block; font-family: var(--font-display); font-size: .95rem; }
.testi-author span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   CONTACT
============================================================ */
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-sm); height: 100%; }
.form-control, .form-select { border-radius: 12px; border: 1.5px solid var(--line); padding: .8rem 1rem; font-size: .95rem; }
.form-control:focus, .form-select:focus { border-color: var(--blue-300); box-shadow: 0 0 0 3px rgba(45,168,255,.18); }
.form-label { font-family: var(--font-display); font-weight: 500; font-size: .88rem; color: var(--ink); }

.contact-info-card { background: var(--grad-hero); color: #fff; border-radius: var(--radius-lg); padding: 2.4rem; height: 100%; position: relative; overflow: hidden; }
.contact-info-card::after { content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -14px; bottom: -20px; font-size: 8rem; color: rgba(255,255,255,.07); }
.ci-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; position: relative; z-index: 2; }
.ci-row .ci-ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; }
.ci-row .ci-t { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.65); }
.ci-row a, .ci-row p { color: #fff; margin: 0; font-weight: 500; }
.ci-row a:hover { color: var(--gold); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

.form-note { font-size: .82rem; color: var(--muted); }
#formStatus { display: none; border-radius: 12px; padding: .9rem 1.1rem; margin-top: 1rem; font-size: .92rem; }
#formStatus.ok { display: block; background: rgba(36,167,99,.12); color: #1c7a47; border: 1px solid rgba(36,167,99,.3); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--blue-900); color: rgba(255,255,255,.75); padding: 70px 0 0; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad-warm); }
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 1.2rem; letter-spacing: .02em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .92rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .9rem; }
.footer-contact i { color: var(--blue-300); margin-top: .25rem; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--gold); }
.social-row { display: flex; gap: .65rem; margin-top: 1.2rem; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .3s, transform .3s; }
.social-row a:hover { background: var(--grad-warm); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .85rem; }
.footer-tag { font-family: var(--font-display); color: var(--gold); font-weight: 600; }

/* ============================================================
   FLOATING BUTTONS + BACK TO TOP
============================================================ */
.float-stack { position: fixed; right: 20px; bottom: 22px; z-index: 1040; display: flex; flex-direction: column; gap: 14px; }
.float-btn { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; box-shadow: 0 10px 26px rgba(0,0,0,.25); transition: transform .25s; position: relative; }
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-wa { background: #25D366; }
.float-call { background: var(--grad-warm); }
.float-btn .ring { position: absolute; inset: 0; border-radius: 50%; animation: ring 2s ease-out infinite; }
.float-wa .ring { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
.float-call .ring { box-shadow: 0 0 0 0 rgba(255,107,0,.5); }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

#backToTop { position: fixed; right: 22px; bottom: 162px; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-700); color: #fff; border: none; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 1040; }
#backToTop.show { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); }

/* contact quick chooser modal-ish */
.call-pop { position: fixed; right: 88px; bottom: 22px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: .6rem; z-index: 1041; display: none; min-width: 210px; }
.call-pop.show { display: block; }
.call-pop a { display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem; border-radius: 10px; color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: .92rem; }
.call-pop a:hover { background: var(--bg-soft); color: var(--blue-700); }
.call-pop a i { color: var(--orange); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .navbar-collapse { background: #fff; border-radius: var(--radius); padding: 1rem; margin-top: .6rem; box-shadow: var(--shadow-md); }
  .navbar .nav-link { padding: .7rem 1rem !important; }
  .nav-call { margin-top: .8rem; justify-content: center; }
  .hero { padding: 130px 0 90px; }
  .hero-visual { min-height: 280px; margin-top: 2rem; }
  .section { padding: 70px 0; }
}
@media (max-width: 575px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:last-child { grid-column: span 2; }
  .float-btn { width: 52px; height: 52px; font-size: 1.3rem; }
  .about-mini { grid-template-columns: 1fr; }
}

/* accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
