/* ==========================================================================
   Sri Sai Enterprises — Water Heater Repair & Service, Chennai
   Static site stylesheet (HTML5 + CSS3 + Bootstrap 5.3)
   ========================================================================== */

:root {
  --navy: #0a1f44;
  --navy-2: #0d2a5c;
  --royal: #12459c;
  --electric: #1e7bff;
  --sky: #e8f1ff;
  --orange: #ff6a13;
  --orange-2: #ff8f3f;
  --ink: #101828;
  --body: #4a5568;
  --line: #e6ebf2;
  --white: #ffffff;
  --bg-soft: #f6f9fe;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(10, 31, 68, .06);
  --shadow: 0 14px 40px rgba(10, 31, 68, .09);
  --shadow-lg: 0 26px 70px rgba(10, 31, 68, .16);
  --grad-blue: linear-gradient(135deg, var(--royal) 0%, var(--electric) 100%);
  --grad-fire: linear-gradient(135deg, #ff5a00 0%, #ffa726 100%);
  --grad-orange: linear-gradient(135deg, #ff5a00 0%, var(--orange-2) 100%);
  --grad-brand: linear-gradient(100deg, var(--navy) 0%, var(--royal) 55%, var(--orange) 130%);
  --ff: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { -webkit-tap-highlight-color: transparent; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--ff);
  color: var(--body);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .display-brand {
  font-family: var(--ff);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: var(--royal); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--orange); }

p:last-child { margin-bottom: 0; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.text-royal { color: var(--royal) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-soft { background: var(--bg-soft) !important; }
.muted { color: var(--body); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--royal);
  background: var(--sky);
  border: 1px solid rgba(30, 123, 255, .18);
  padding: .45rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.eyebrow.on-dark {
  color: #cfe2ff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}
.eyebrow i { color: var(--orange); font-size: .9rem; }

.section-head { max-width: 760px; }
.section-head p { font-size: 1.03rem; }
.lead-tight { font-size: 1.05rem; color: var(--body); }

.rule {
  width: 68px; height: 5px; border-radius: 100px;
  background: var(--grad-orange); margin: 1.1rem 0 0;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  font-weight: 700;
  border-radius: 100px;
  padding: .82rem 1.6rem;
  border: 0;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:active { transform: translateY(1px); }

.btn-brand {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 90, 0, .3);
}
.btn-brand:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(255, 90, 0, .38); }

.btn-blue {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 69, 156, .26);
}
.btn-blue:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(18, 69, 156, .34); }

.btn-wa { background: #1faa54; color: #fff; box-shadow: 0 12px 26px rgba(31, 170, 84, .28); }
.btn-wa:hover { background: #179146; color: #fff; transform: translateY(-3px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--electric); color: var(--royal); background: var(--sky); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-lg-brand { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-sm-pill { padding: .55rem 1.1rem; font-size: .88rem; }

.pulse-cta { animation: ctaPulse 2.8s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(255, 90, 0, .3); }
  50% { box-shadow: 0 12px 26px rgba(255, 90, 0, .3), 0 0 0 12px rgba(255, 106, 19, .12); }
}

/* ---------- Top contact strip ---------- */
.topbar {
  background: var(--navy);
  color: #c9d8f2;
  font-size: .85rem;
  padding: .5rem 0;
  position: relative;
  z-index: 1040;
}
.topbar::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--grad-brand); opacity: .9;
}
.topbar i { color: var(--orange-2); }
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--orange-2); }
.topbar-list { display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; align-items: center; }
.topbar-list span { display: inline-flex; align-items: center; gap: .45rem; }

/* ---------- Navbar ---------- */
.site-nav {
 background: rgb(247 247 247);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: .55rem 0;
  transition: box-shadow .3s ease, padding .3s ease;
}
.site-nav.is-stuck { box-shadow: var(--shadow-sm); padding: .3rem 0; }
.site-nav .navbar-brand img { height: 90px; width: auto; transition: height .3s ease; }
.site-nav.is-stuck .navbar-brand img { height: 46px; }

.site-nav .nav-link {
  color: var(--navy);
  font-weight: 700;
  font-size: .96rem;
  padding: .6rem .95rem !important;
  border-radius: 100px;
  position: relative;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--royal); background: var(--sky); }
.site-nav .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .5rem;
  min-width: 288px;
}
.site-nav .dropdown-item {
  border-radius: 12px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy);
  padding: .6rem .8rem;
  white-space: normal;
}
.site-nav .dropdown-item i { color: var(--electric); margin-right: .5rem; }
.site-nav .dropdown-item:hover,
.site-nav .dropdown-item.active { background: var(--sky); color: var(--royal); }
.navbar-toggler { border: 1.5px solid var(--line); border-radius: 12px; padding: .4rem .6rem; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { font-size: 1.4rem; color: var(--navy); }

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    margin-top: .75rem;
    border-top: 1px solid var(--line);
    padding-top: .75rem;
    max-height: 78vh;
    overflow-y: auto;
  }
  .site-nav .dropdown-menu { box-shadow: none; border-color: var(--line); margin: .25rem 0 .5rem; }
  .nav-cta-wrap { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 520px at 88% 6%, rgba(255, 106, 19, .3), transparent 62%),
    radial-gradient(900px 600px at 6% 92%, rgba(30, 123, 255, .38), transparent 60%),
    linear-gradient(150deg, #071731 0%, var(--navy) 42%, #123566 100%);
  color: #dce8fb;
  overflow: hidden;
  isolation: isolate;
}
.hero .carousel-item { padding: clamp(3rem, 7vw, 5.6rem) 0 clamp(4rem, 8vw, 6rem); }
.hero h1, .hero h2 { color: #fff; }
.hero h1 .grad {
  background: linear-gradient(100deg, #7fb6ff, #ffb27a 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.hero-copy { color: #b9cdea; font-size: 1.06rem; max-width: 540px; }

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1; pointer-events: none;
}
.hero-glow.g1 { width: 340px; height: 340px; background: rgba(255, 106, 19, .4); top: -70px; right: 8%; }
.hero-glow.g2 { width: 420px; height: 420px; background: rgba(30, 123, 255, .32); bottom: -140px; left: -80px; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 72px; display: block; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.35rem; }
.hero-chip {
  font-size: .82rem; font-weight: 700; color: #dce8fb;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px; padding: .38rem .85rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.hero-chip i { color: var(--orange-2); }

.hero-visual { position: relative; min-height: 330px; }
.hero-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, .06);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(255, 106, 19, .18), transparent 45%, rgba(10, 31, 68, .45));
}

/* heat glow + steam + droplets */
.heat-glow {
  position: absolute; width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, .5), transparent 68%);
  filter: blur(14px); right: -30px; bottom: 8%; z-index: 0;
  animation: heatPulse 4.5s ease-in-out infinite;
}
@keyframes heatPulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: .95; transform: scale(1.12); } }

.steam { position: absolute; top: -8px; left: 12%; z-index: 2; display: flex; gap: 16px; }
.steam span {
  display: block; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255, 255, 255, .5); filter: blur(7px);
  animation: steamUp 5.5s linear infinite;
}
.steam span:nth-child(2) { animation-delay: 1.4s; width: 22px; height: 22px; }
.steam span:nth-child(3) { animation-delay: 2.6s; width: 12px; height: 12px; }
.steam span:nth-child(4) { animation-delay: 3.6s; }
@keyframes steamUp {
  0% { transform: translateY(30px) scale(.6); opacity: 0; }
  25% { opacity: .75; }
  100% { transform: translateY(-90px) scale(1.7); opacity: 0; }
}

.droplet {
  position: absolute; width: 12px; height: 12px; z-index: 2;
  background: linear-gradient(160deg, #9ed0ff, #1e7bff);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  opacity: .85;
  animation: dropFall 6s ease-in infinite;
}
.droplet.d1 { left: 6%; top: 18%; }
.droplet.d2 { left: 26%; top: 6%; animation-delay: 1.6s; width: 9px; height: 9px; }
.droplet.d3 { right: 14%; top: 12%; animation-delay: 3.1s; }
.droplet.d4 { right: 30%; bottom: 12%; animation-delay: 2.2s; width: 8px; height: 8px; }
@keyframes dropFall {
  0% { transform: translateY(-10px) rotate(45deg); opacity: 0; }
  20% { opacity: .9; }
  100% { transform: translateY(70px) rotate(45deg); opacity: 0; }
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: .8rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  z-index: 3;
  min-width: 176px;
}
.float-card .fc-ico {
  width: 40px; height: 40px; border-radius: 12px; flex: 0 0 40px;
  display: grid; place-items: center; color: #fff; font-size: 1.1rem;
  background: var(--grad-blue);
}
.float-card.warm .fc-ico { background: var(--grad-orange); }
.float-card strong { display: block; color: var(--navy); font-size: .92rem; line-height: 1.2; }
.float-card span { font-size: .76rem; color: var(--body); }
.float-card.fc-a { left: -14px; top: 12%; }
.float-card.fc-b { right: -10px; bottom: 16%; }

@media (max-width: 991.98px) {
  .float-card.fc-a { left: 4px; top: 4px; }
  .float-card.fc-b { right: 4px; bottom: 4px; }
  .hero-visual { margin-top: 2.4rem; }
}
@media (max-width: 575.98px) {
  .float-card { display: none; }
}

.carousel-indicators { margin-bottom: 1.2rem; z-index: 4; }
.carousel-indicators [data-bs-target] {
  width: 26px; height: 5px; border-radius: 100px; border: 0;
  background: rgba(255, 255, 255, .38); opacity: 1;
}
.carousel-indicators .active { background: var(--orange); width: 42px; }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: .55; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(3.4rem, 7vw, 5rem);
  background:
    radial-gradient(760px 420px at 92% 0%, rgba(255, 106, 19, .28), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(30, 123, 255, .34), transparent 62%),
    linear-gradient(140deg, #071731, var(--navy) 60%, #10305c);
  color: #c6d8f3;
  overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #b3c9e8; max-width: 640px; }
.crumbs { font-size: .85rem; color: #9fb8dc; margin-bottom: .9rem; }
.crumbs a { color: #dce8fb; font-weight: 600; }
.crumbs a:hover { color: var(--orange-2); }
.crumbs i { font-size: .7rem; margin: 0 .45rem; opacity: .6; }

/* ---------- Stats ---------- */
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.3rem; height: 100%; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(30, 123, 255, .35); }
.stat-card .ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sky); color: var(--royal); font-size: 1.3rem; margin-bottom: .9rem;
}
.stat-card.warm .ico { background: #fff1e6; color: var(--orange); }
.stat-card h3 { font-size: 1.06rem; margin-bottom: .3rem; }
.stat-card p { font-size: .9rem; margin: 0; }

/* ---------- Service cards ---------- */
.svc-card {
  position: relative; display: block; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 1.5rem; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad-blue); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(30, 123, 255, .3); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .svc-ico {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.55rem; color: #fff; background: var(--grad-blue);
  box-shadow: 0 12px 24px rgba(18, 69, 156, .22); margin-bottom: 1.05rem;
  transition: transform .35s ease;
}
.svc-card:nth-child(even) .svc-ico { background: var(--grad-orange); box-shadow: 0 12px 24px rgba(255, 90, 0, .22); }
.svc-card:hover .svc-ico { transform: rotate(-6deg) scale(1.06); }
.svc-card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.svc-card p { font-size: .94rem; margin-bottom: 1rem; }
.svc-more { font-weight: 800; font-size: .9rem; color: var(--royal); display: inline-flex; align-items: center; gap: .4rem; }
.svc-card:hover .svc-more { color: var(--orange); }
.svc-more i { transition: transform .3s ease; }
.svc-card:hover .svc-more i { transform: translateX(5px); }

/* ---------- Problem tiles ---------- */
.problem {
  display: flex; gap: .95rem; align-items: flex-start; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.2rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.problem:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.problem .p-ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center; background: #fff1e6; color: var(--orange); font-size: 1.15rem;
}
.problem h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.problem p { font-size: .89rem; margin: 0; }

/* ---------- Why choose ---------- */
.why-card {
  height: 100%; border-radius: var(--radius-lg); padding: 1.7rem 1.5rem;
  background: linear-gradient(170deg, #fff, #f4f8ff);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.why-card .w-ico {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-size: 1.3rem; margin-bottom: 1rem;
}
.why-card:nth-child(even) .w-ico { background: var(--grad-orange); }
.why-card h3 { font-size: 1.1rem; }
.why-card p { font-size: .93rem; margin: 0; }

/* ---------- Process timeline ---------- */
.process { position: relative; }
.process-line {
  position: absolute; top: 46px; left: 12%; right: 12%; height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--orange));
  opacity: .28; border-radius: 100px;
}
@media (max-width: 991.98px) { .process-line { display: none; } }
.step { text-align: center; position: relative; }
.step .num {
  width: 92px; height: 92px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem; font-weight: 800;
  color: #fff; background: var(--grad-blue); border: 7px solid var(--bg-soft);
  box-shadow: 0 16px 34px rgba(18, 69, 156, .22);
}
.step:nth-child(3) .num { background: var(--grad-orange); box-shadow: 0 16px 34px rgba(255, 90, 0, .24); }
.step:nth-child(4) .num { background: linear-gradient(135deg, var(--navy), var(--royal)); }
.step h3 { font-size: 1.14rem; }
.step p { font-size: .93rem; max-width: 320px; margin: 0 auto; }

/* ---------- Big CTA ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 0;
  background:
    radial-gradient(700px 340px at 88% 10%, rgba(255, 106, 19, .34), transparent 60%),
    linear-gradient(130deg, #071731, var(--navy) 55%, #123063);
  color: #cfe0f8;
  padding: clamp(3rem, 6vw, 4.8rem) 0;
}
.cta-band h2 { color: #fff; }
.cta-band .cta-sub { color: #b8cdea; }
.cta-band::before {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 123, 255, .4), transparent 70%);
  left: -80px; bottom: -120px; filter: blur(20px);
}

/* ---------- Feature list ---------- */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  position: relative; padding-left: 2rem; margin-bottom: .7rem; font-size: .97rem;
}
.tick-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: -1px;
  color: var(--electric); font-size: 1.05rem;
}
.tick-list.warm li::before { color: var(--orange); }

.chip-grid { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  font-size: .87rem; font-weight: 650; color: var(--navy);
  background: var(--sky); border: 1px solid rgba(30, 123, 255, .16);
  border-radius: 100px; padding: .45rem .95rem;
}
.chip.warm { background: #fff2e8; border-color: rgba(255, 106, 19, .2); color: #a4400b; }

/* ---------- Cards / panels ---------- */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
}
.panel-dark {
  background: linear-gradient(145deg, var(--navy), #123063);
  color: #c9dcf7; border: 0;
}
.panel-dark h2, .panel-dark h3 { color: #fff; }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Accordion ---------- */
.accordion-item {
  border: 1px solid var(--line) !important; border-radius: var(--radius) !important;
  margin-bottom: .85rem; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  font-weight: 750; color: var(--navy); font-size: 1rem; padding: 1.1rem 1.25rem;
  background: #fff;
}
.accordion-button:not(.collapsed) { background: var(--sky); color: var(--royal); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--line); }
.accordion-button::after {
  background-image: none; content: "\F282"; font-family: "bootstrap-icons";
  display: grid; place-items: center; width: 1.4rem; height: 1.4rem; font-size: 1rem; color: var(--orange);
  transition: transform .3s ease;
}
.accordion-body { font-size: .96rem; padding-top: 0; }

/* ---------- Contact ---------- */
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: var(--shadow-sm);
}
.contact-card .c-ico {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; font-size: 1.2rem;
}
.contact-card.warm .c-ico { background: var(--grad-orange); }
.contact-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-card p, .contact-card a { font-size: .94rem; margin: 0; }

.form-label { font-weight: 700; color: var(--navy); font-size: .9rem; margin-bottom: .35rem; }
.form-control, .form-select {
  border: 1.5px solid var(--line); border-radius: 14px; padding: .8rem 1rem;
  font-size: .96rem; color: var(--ink); background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--electric); box-shadow: 0 0 0 4px rgba(30, 123, 255, .12);
}
.form-note { font-size: .82rem; color: var(--body); }
.form-status {
  display: none; border-radius: 14px; padding: .9rem 1.1rem; font-size: .93rem; font-weight: 600;
  margin-bottom: 1rem;
}
.form-status.ok { display: block; background: #e8f8ee; color: #12703c; border: 1px solid #bde7cd; }
.form-status.err { display: block; background: #fdeceb; color: #a12018; border: 1px solid #f7c9c5; }

/* ---------- Legal / content pages ---------- */
.prose h2 { font-size: 1.45rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.12rem; margin-top: 1.6rem; }
.prose p, .prose li { font-size: .98rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .45rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, #061428, var(--navy) 70%);
  color: #a9c1e2; padding: clamp(3rem, 6vw, 4.4rem) 0 0;
}
.site-footer h4 {
  color: #fff; font-size: 1.02rem; font-weight: 800; margin-bottom: 1.1rem;
  letter-spacing: .01em;
}
.site-footer img.f-logo {
  height: 100px; width: auto; border-radius: 14px; padding: .4rem .6rem;
  margin-bottom: 1.1rem;
}
.site-footer p, .site-footer li { font-size: .93rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #a9c1e2; }
.footer-links a:hover { color: var(--orange-2); padding-left: 3px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .8rem; }
.footer-contact i { color: var(--orange-2); margin-top: .25rem; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-bottom {
  margin-top: 2.6rem; border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.2rem 0; font-size: .87rem;
}
.footer-bottom a { color: #cfe0f8; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1050;
  display: none; background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px rgba(10, 31, 68, .12); padding: .5rem .6rem;
  gap: .5rem;
}
.mobile-bar a { flex: 1; text-align: center; font-size: .92rem; padding: .7rem .5rem; }
@media (max-width: 767.98px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 22px; z-index: 1045;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: #1faa54; color: #fff; font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(31, 170, 84, .38);
  transition: transform .3s ease;
}
.wa-float:hover { color: #fff; transform: scale(1.08); }
@media (max-width: 767.98px) { .wa-float { bottom: 84px; right: 14px; } }

/* ---------- Reveal defaults (GSAP handles the motion) ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}
