:root {
  --navy: #06283d;
  --navy-2: #0b3954;
  --blue: #0284c7;
  --blue-2: #38bdf8;
  --teal: #0f766e;
  --green: #22c55e;
  --lime: #84cc16;
  --ink: #102a3a;
  --muted: #5d7180;
  --line: #dce8ed;
  --soft: #f3f8fa;
  --white: #ffffff;
  --warning: #f59e0b;
  --shadow-sm: 0 10px 30px rgba(6, 40, 61, .08);
  --shadow: 0 24px 70px rgba(6, 40, 61, .15);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(56, 189, 248, .3); color: var(--navy); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; overflow: clip; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy); }
.section-gradient {
  background:
    radial-gradient(circle at 12% 20%, rgba(56,189,248,.22), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(132,204,22,.18), transparent 26%),
    linear-gradient(135deg, #f6fcff, #eefaf4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.eyebrow-light { color: #a7f3d0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2,
.page-hero h1,
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading h2 { font-size: clamp(1.9rem, 3.3vw, 3.35rem); }
.section-heading p { margin: 16px 0 0; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-heading h2 { color: #fff; }
.section-dark .section-heading p { color: #cfe1ea; }
.lead { color: var(--muted); font-size: 1.12rem; }
.small { font-size: .9rem; }
.muted { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 800; }
.text-link:hover { color: var(--blue); }

.topbar {
  color: #d9f2fb;
  background: #041e2d;
  font-size: .86rem;
}
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-items { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a:hover { color: #fff; }
.topbar-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(34,197,94,.13); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(220,232,237,.8);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(6,40,61,.08); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; width: min(310px, 38vw); }
.brand img { height: 62px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 11px 13px;
  border-radius: 11px;
  color: #294454;
  font-size: .94rem;
  font-weight: 750;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--teal); background: #edf9f7; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); transition: .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 12px 25px rgba(2,132,199,.2); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(2,132,199,.28); }
.btn-whatsapp { color: #fff; background: linear-gradient(135deg, #25d366, #159447); box-shadow: 0 12px 25px rgba(37,211,102,.2); }
.btn-outline { color: var(--navy); border-color: #bad0d9; background: rgba(255,255,255,.7); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-light { color: var(--navy); background: #fff; }
.btn-sm { min-height: 42px; padding: 10px 15px; font-size: .9rem; }
.btn-block { width: 100%; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 82% 15%, rgba(56,189,248,.24), transparent 22%),
    radial-gradient(circle at 14% 90%, rgba(132,204,22,.18), transparent 25%),
    linear-gradient(135deg, #f7fcff 0%, #eef9fb 48%, #f5fff5 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 68px; }
.hero h1 span { color: transparent; background: linear-gradient(120deg, var(--blue), var(--teal), var(--green)); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-points { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; color: #385364; font-size: .93rem; font-weight: 700; }
.hero-point { display: inline-flex; align-items: center; gap: 8px; }
.check-dot { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #fff; background: var(--green); font-size: .75rem; }
.hero-visual { position: relative; min-height: 540px; }
.hero-photo {
  position: absolute;
  inset: 24px 0 40px 26px;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.9);
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.hero-photo img { height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,40,61,.42)); }
.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.hero-badge strong { display: block; color: var(--navy); font-size: .98rem; }
.hero-badge span { display: block; color: var(--muted); font-size: .8rem; }
.hero-badge.one { left: 0; bottom: 74px; }
.hero-badge.two { right: -10px; top: 0; }
.hero-badge-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); }
.hero-ring { position: absolute; right: 10px; bottom: 0; width: 110px; height: 110px; border: 20px solid rgba(132,204,22,.25); border-radius: 50%; }

.trust-strip { position: relative; z-index: 2; margin-top: -34px; }
.trust-panel { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.trust-item { padding: 24px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .87rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(6,40,61,.06);
}
.service-card { position: relative; padding: 28px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #b9d9df; box-shadow: var(--shadow-sm); }
.service-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 110px; height: 110px; border-radius: 50%; background: rgba(56,189,248,.09); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 17px; color: var(--teal); background: linear-gradient(135deg, #e0f2fe, #ecfccb); }
.service-icon .icon { width: 29px; height: 29px; }
.service-card h3 { margin: 20px 0 8px; color: var(--navy); font-size: 1.22rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.service-card .text-link { margin-top: 18px; font-size: .9rem; }

.image-frame { position: relative; min-height: 480px; }
.image-frame-main { height: 100%; min-height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.image-float { position: absolute; right: -22px; bottom: -30px; width: 44%; padding: 10px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.image-float img { aspect-ratio: 4/3; object-fit: cover; border-radius: 17px; }
.content-block h2 { margin: 0 0 16px; color: var(--navy); font-size: clamp(2rem,3.5vw,3.45rem); line-height: 1.08; letter-spacing: -.04em; }
.content-block p { color: var(--muted); }
.feature-list { display: grid; gap: 14px; margin: 24px 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; color: #385363; }
.feature-list .check-dot { margin-top: 2px; }

.why-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 56px; align-items: center; }
.promise-stack { display: grid; gap: 14px; }
.promise { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.promise-num { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); font-weight: 900; }
.promise h3 { margin: 1px 0 4px; color: var(--navy); font-size: 1rem; }
.promise p { margin: 0; color: var(--muted); font-size: .89rem; }

.process { counter-reset: process; }
.process-card { position: relative; padding: 28px; border-top: 4px solid transparent; }
.process-card::before { counter-increment: process; content: "0" counter(process); display: block; margin-bottom: 18px; color: var(--blue); font-size: 2rem; font-weight: 900; letter-spacing: -.06em; }
.process-card:nth-child(2n) { border-top-color: var(--green); }
.process-card:nth-child(2n+1) { border-top-color: var(--blue); }
.process-card h3 { margin: 0 0 8px; color: var(--navy); }
.process-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-card { position: relative; grid-column: span 4; min-height: 290px; overflow: hidden; border-radius: 22px; background: var(--navy); }
.gallery-card.wide { grid-column: span 8; }
.gallery-card.tall { min-height: 420px; }
.gallery-card img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: auto 0 0; padding: 45px 22px 20px; color: #fff; background: linear-gradient(transparent, rgba(3,30,46,.9)); }
.gallery-overlay strong { display: block; font-size: 1.06rem; }
.gallery-overlay span { font-size: .82rem; color: #d7edf5; }
.gallery-filters { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: #385363; background: #fff; font-weight: 750; }
.filter-btn.active, .filter-btn:hover { color: #fff; border-color: var(--teal); background: var(--teal); }
.gallery-card.is-hidden { display: none; }

.coverage-box { position: relative; overflow: hidden; min-height: 430px; border-radius: var(--radius-lg); background: var(--navy); }
.coverage-box > img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .44; }
.coverage-box::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,40,61,.96), rgba(6,40,61,.55)); }
.coverage-content { position: relative; z-index: 1; max-width: 700px; padding: 64px; color: #fff; }
.coverage-content h2 { margin: 0; font-size: clamp(2rem,3.4vw,3.4rem); line-height: 1.08; }
.coverage-content p { color: #d3e6ee; }
.district-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 30px; }
.district-chip { padding: 8px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #fff; background: rgba(255,255,255,.1); font-size: .84rem; font-weight: 700; backdrop-filter: blur(8px); }

.planner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.planner-box { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: #294454; font-size: .87rem; font-weight: 800; }
.form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c9d9df;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea.form-control { min-height: 128px; resize: vertical; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(2,132,199,.11); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }

.faq-list { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; border: 0; color: var(--navy); background: transparent; text-align: left; font-weight: 850; }
.faq-question span:last-child { font-size: 1.35rem; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.cta-band { position: relative; overflow: hidden; padding: 52px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: var(--shadow); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border: 24px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-band::before { width: 190px; height: 190px; right: -70px; top: -80px; }
.cta-band::after { width: 110px; height: 110px; left: 35%; bottom: -90px; }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin: 0 0 7px; font-size: clamp(1.8rem,3vw,2.8rem); line-height: 1.12; }
.cta-band p { margin: 0; color: #dff6ff; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }

.page-hero { position: relative; padding: 110px 0 88px; overflow: hidden; background: linear-gradient(135deg, #f4fbff, #effcf3); }
.page-hero::before { content: ""; position: absolute; width: 420px; height: 420px; right: -100px; top: -180px; border: 65px solid rgba(56,189,248,.12); border-radius: 50%; }
.page-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 48px; }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--teal); font-size: .88rem; font-weight: 800; }
.page-hero-art { position: relative; min-height: 310px; }
.page-hero-art img { position: absolute; inset: 0; height: 100%; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.page-hero-art::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 88px; height: 88px; border: 14px solid rgba(132,204,22,.5); border-radius: 50%; }

.value-card { padding: 27px; }
.value-card h3 { margin: 15px 0 8px; color: var(--navy); }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.timeline { position: relative; display: grid; gap: 20px; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(var(--blue), var(--green)); }
.timeline-item { position: relative; padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.timeline-item::before { content: ""; position: absolute; left: -32px; top: 28px; width: 16px; height: 16px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.timeline-item h3 { margin: 0 0 6px; color: var(--navy); }
.timeline-item p { margin: 0; color: var(--muted); }

.service-detail { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 30px; }
.service-detail .service-icon { width: 84px; height: 84px; border-radius: 24px; }
.service-detail .service-icon .icon { width: 38px; height: 38px; }
.service-detail h2 { margin: 0 0 9px; color: var(--navy); font-size: 1.55rem; }
.service-detail p { margin: 0; color: var(--muted); }
.service-detail ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 14px; margin: 16px 0 0; padding: 0; list-style: none; color: #385363; font-size: .9rem; }
.service-detail li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 20px; }
.contact-card h3 { margin: 0 0 4px; color: var(--navy); font-size: 1rem; }
.contact-card p, .contact-card a { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-form-card { padding: 34px; }
.contact-form-card h2 { margin: 0 0 6px; color: var(--navy); }
.contact-form-card > p { margin: 0 0 25px; color: var(--muted); }
.map-panel { position: relative; overflow: hidden; min-height: 360px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #dff4fb, #e8f7df); }
.map-shape { position: absolute; inset: 0; opacity: .65; background-image: radial-gradient(circle at center, rgba(2,132,199,.22) 2px, transparent 2px); background-size: 28px 28px; }
.map-card { position: absolute; left: 50%; top: 50%; width: min(420px, calc(100% - 42px)); padding: 28px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); text-align: center; }
.map-pin { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 14px; border-radius: 50% 50% 50% 10%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); transform: rotate(-45deg); }
.map-pin .icon { transform: rotate(45deg); }
.map-card h2 { margin: 0; color: var(--navy); }
.map-card p { color: var(--muted); }

.site-footer { color: #c9dce5; background: #041e2d; }
.footer-main { display: grid; grid-template-columns: 1.45fr .8fr .9fr 1.05fr; gap: 40px; padding: 72px 0 50px; }
.footer-brand img { width: 290px; height: 74px; padding: 8px; border-radius: 14px; background: #fff; object-fit: contain; }
.footer-brand p { max-width: 430px; color: #9cb7c4; }
.footer-title { margin: 0 0 16px; color: #fff; font-size: 1rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #a9c1cc; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 10px; color: #a9c1cc; font-size: .91rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: #8facb9; font-size: .84rem; }

.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 1200; }
.whatsapp-button { position: relative; display: grid; place-items: center; width: 62px; height: 62px; border: 0; border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 16px 35px rgba(21,148,71,.38); }
.whatsapp-button::before { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(37,211,102,.42); border-radius: 50%; animation: pulse 2s infinite; }
.whatsapp-button .icon { width: 29px; height: 29px; }
.whatsapp-panel { position: absolute; right: 0; bottom: 76px; width: min(355px, calc(100vw - 30px)); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98); transform-origin: bottom right; transition: .22s ease; }
.whatsapp-panel.open { opacity: 1; visibility: visible; transform: none; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 18px; color: #fff; background: linear-gradient(135deg,#128c7e,#25d366); }
.chat-avatar { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: rgba(255,255,255,.2); }
.chat-head strong { display: block; }
.chat-head span { font-size: .78rem; color: #e5fff0; }
.chat-body { padding: 17px; background: #f2f7f4; }
.chat-message { margin-bottom: 14px; padding: 12px 14px; border-radius: 4px 15px 15px 15px; color: #294454; background: #fff; box-shadow: 0 5px 15px rgba(6,40,61,.07); font-size: .9rem; }
.chat-options { display: grid; gap: 8px; }
.chat-option { width: 100%; padding: 11px 13px; border: 1px solid #cfe2d6; border-radius: 11px; color: #177648; background: #fff; text-align: left; font-weight: 750; }
.chat-option:hover { border-color: #25d366; background: #effdf4; }
.chat-close { margin-left: auto; border: 0; color: #fff; background: transparent; font-size: 1.35rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 0% { transform: scale(.92); opacity: 1; } 75%,100% { transform: scale(1.25); opacity: 0; } }

@media (max-width: 1080px) {
  .nav-actions .btn { display: none; }
  .main-nav a { padding-inline: 9px; }
  .hero-grid { gap: 38px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .topbar-inner { justify-content: center; }
  .topbar-items:last-child { display: none; }
  .brand { width: 280px; max-width: calc(100vw - 100px); }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; left: 18px; right: 18px; top: 128px; display: grid; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .22s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 13px 15px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid, .page-hero-grid, .grid-2, .why-grid, .planner, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .trust-panel { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .page-hero-art { min-height: 360px; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .footer-main > :last-child { grid-column: auto; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .coverage-content { padding: 45px 35px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 245px; }
  .brand img { height: 54px; }
  .main-nav { top: 82px; }
  .hero { padding: 55px 0 62px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 410px; }
  .hero-photo { inset: 20px 8px 25px; border-width: 7px; border-radius: 28px; }
  .hero-badge { padding: 11px 12px; }
  .hero-badge.one { left: 0; bottom: 28px; }
  .hero-badge.two { right: 0; top: 0; }
  .hero-badge-icon { width: 37px; height: 37px; }
  .trust-strip { margin-top: 0; padding-top: 14px; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .image-frame { min-height: 390px; }
  .image-frame-main { min-height: 390px; }
  .image-float { right: -4px; width: 48%; }
  .gallery-card, .gallery-card.wide { grid-column: span 12; min-height: 300px; }
  .gallery-card.tall { min-height: 340px; }
  .coverage-content { padding: 34px 24px; }
  .cta-band { padding: 34px 24px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .page-hero { padding: 78px 0 68px; }
  .page-hero-art { min-height: 280px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail ul { grid-template-columns: 1fr; }
  .contact-form-card, .planner-box { padding: 24px; }
  .footer-main { grid-template-columns: 1fr; padding-top: 55px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; }
  .whatsapp-button { width: 57px; height: 57px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* HD refresh adjustments */
.brand img { height: 66px; }
.btn-whatsapp { gap: 8px; font-weight: 700; }
.topbar a[data-whatsapp-link] { font-weight: 700; }
.footer-contact a[data-whatsapp-link] { font-weight: 700; }
.chat-avatar .icon,
.whatsapp-button .icon { width: 24px; height: 24px; }
.footer-brand img { width: 310px; height: 80px; }
.hero-photo img,
.page-hero-art img,
.gallery-card img,
.image-frame-main,
.image-float img,
.coverage-box > img { image-rendering: auto; }

/* Trichy refresh */
.brand img {
  height: 74px;
  width: auto;
  max-width: 430px;
  object-fit: contain;
}
.footer-brand img {
  width: 360px;
  height: auto;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
}
.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}
.wa-icon-white { filter: brightness(0) invert(1); }
.wa-icon-dark { filter: none; }
.btn-whatsapp,
a[data-whatsapp-link] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-button {
  display: grid;
  place-items: center;
}
.whatsapp-button .wa-icon,
.chat-avatar .wa-icon {
  width: 26px;
  height: 26px;
}
.wa-card-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.contact-card .service-icon:has(.wa-card-icon) {
  background: #fff;
  border: 1px solid rgba(8,59,97,.12);
}
@media (max-width: 640px) {
  .brand img { height: 62px; max-width: 320px; }
  .footer-brand img { width: 300px; }
}

/* Institutional and industrial audience update */
#who-we-serve .service-card { min-height: 270px; }
#who-we-serve .service-card h3 { margin-top: 18px; }
#who-we-serve .service-card p { line-height: 1.7; }


/* Final devotional note in home hero */
.hero-devotional {
  margin: 0 0 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(8,59,97,0.08);
  box-shadow: 0 8px 24px rgba(8,59,97,0.08);
  backdrop-filter: blur(6px);
}
.pillayar-suzhi {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #0b5da1;
  text-align: center;
}
.deity-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.deity-lines span {
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
  color: #18435d;
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .hero-devotional {
    width: 100%;
    padding: 9px 12px;
    margin-bottom: 12px;
  }
  .pillayar-suzhi { font-size: 1.55rem; }
  .deity-lines span { font-size: 0.82rem; }
}

/* Dual contact number support */
.contact-number-list {
  display: grid;
  gap: 5px;
  margin: 5px 0 7px;
}
.contact-number-list a {
  display: block;
  color: var(--navy);
  font-weight: 800;
}
.topbar .topbar-items:first-child a {
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .topbar-items { gap: 14px; }
  .topbar { font-size: .78rem; }
}
