/* =============================================
   COOL ZONE - Air Conditioning & HVAC
   Mumbai, India
   Palette: deep navy, ice blue, cool teal, warm amber
   Premium image-forward editorial redesign
   ============================================= */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg:            #F4F7FA;
  --bg-surface:    #FFFFFF;
  --bg-warm:       #EEF3F7;
  --bg-dark:       #0C1E2E;
  --bg-dark-card:  #132A3C;
  --ink:           #0C1E2E;
  --ink-soft:      #1E3A4F;
  --muted:         #5A7080;
  --ice:           #38BDF8;
  --ice-light:     #BAE6FD;
  --ice-dark:      #0284C7;
  --teal:          #0D9488;
  --teal-light:    #CCFBF1;
  --amber:         #F59E0B;
  --amber-light:   #FEF3C7;
  --amber-dark:    #D97706;
  --border:        #D1E0EA;
  --border-lt:     #EDF2F6;
  --white:         #FFFFFF;
  --hero-soft:     #B6CBD9;
  --hero-faint:    rgba(148,193,224,.35);

  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Newsreader', 'Georgia', serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;

  --fs-hero: clamp(2.4rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 3.4vw, 2.6rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  --lh-tight: 1.1;
  --lh-body: 1.7;

  --ease: cubic-bezier(.4,0,.2,1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.mono-meta { font-family: var(--mono); }

/* ---- Focus ---- */
:focus-visible {
  outline: 3px solid var(--ice);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(56,189,248,.25);
}
:focus-visible:not(:focus-visible) {
  box-shadow: none;
}
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ice-dark); color: #fff;
  padding: .6rem 1.2rem; border-radius: var(--radius);
  font-weight: 600; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: .5rem; }

/* ---- Container ---- */
.container {
  width: 100%; max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ice-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--ice); border-radius: 2px;
}

/* ---- Section ---- */
.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.section--alt { background: var(--bg-warm); }
.section--dark { background: var(--bg-dark); color: #CBD5E1; }
.section--dark .eyebrow { color: var(--ice); }
.section--dark .eyebrow::before { background: var(--ice); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .sec-lead { color: #94A3B8; }

/* ---- Section Headings ---- */
.sec-head {
  max-width: 540px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.sec-head--center {
  text-align: center; margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.sec-head--center .eyebrow::before { display: none; }
.sec-title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: .75rem;
  text-wrap: balance;
}
.section--dark .sec-title { color: #fff; }
.sec-lead {
  font-size: var(--fs-body); line-height: 1.7;
  color: var(--muted); max-width: 480px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: var(--fs-sm); font-weight: 600;
  padding: .85rem 1.8rem; border-radius: 60px; border: none;
  cursor: pointer; transition: all .25s var(--ease);
  white-space: nowrap; text-decoration: none;
  min-height: 44px; min-width: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--ice-dark) 0%, var(--teal) 100%);
  color: #fff;
}
.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(14,165,136,.35);
}
.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--ice); color: var(--ice-dark);
}
.btn--dark {
  background: var(--ice); color: var(--bg-dark);
}
.btn--dark:hover { background: #7DD3FC; }
.btn--lg { padding: 1rem 2.2rem; font-size: .95rem; }
.btn--amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff;
}
.btn--amber:hover { box-shadow: 0 6px 24px rgba(245,158,11,.35); }

/* ---- Cards ---- */
.card {
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--border-lt);
  box-shadow: 0 1px 3px rgba(12,30,46,.04);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  box-shadow: 0 8px 30px rgba(12,30,46,.08);
  transform: translateY(-2px);
  border-color: var(--ice-light);
}

/* =============================================
   NAV (refinements over the inline base styles)
   ============================================= */
.nav__inner { padding-block: .9rem; }
.nav__brand { position: relative; }
.nav__links a { position: relative; padding-bottom: 2px; }
.nav__links a:not(.nav__cta-desktop)::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ice), var(--teal));
  transition: right .3s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__cta-desktop { padding-bottom: .6rem !important; }
.nav__cta-desktop::after { display: none !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1000px 500px at 88% -10%, rgba(14,165,136,.18) 0%, transparent 60%),
    radial-gradient(900px 480px at 0% 112%, rgba(56,189,248,.16) 0%, transparent 60%),
    linear-gradient(158deg, #10283C 0%, #0C1E2E 46%, #0E2437 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 64px);
}
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; z-index: 0;
}
.hero__glow--a { width: 420px; height: 420px; right: -130px; top: -150px; background: rgba(14,165,136,.3); }
.hero__glow--b { width: 380px; height: 380px; left: -150px; bottom: -170px; background: rgba(2,132,199,.28); }
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: 3.25rem; align-items: center;
}
@media (min-width: 860px) {
  .hero__grid { grid-template-columns: 1fr 1.02fr; gap: 3.5rem; }
}
.hero__content { position: relative; z-index: 2; }
.hero__mono {
  display: flex; flex-wrap: wrap; gap: .35rem 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: #7DD3FC;
}
.hero__mono span { display: inline-flex; align-items: center; gap: .55rem; }
.hero__mono span + span::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.hero .eyebrow { color: #7DD3FC; }
.hero .eyebrow::before { width: 34px; background: linear-gradient(90deg, var(--ice), var(--teal)); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 400; line-height: 1.02;
  letter-spacing: -.025em; color: #fff;
  margin-bottom: 1.4rem; text-wrap: balance;
}
.hero h1 span { color: var(--ice); }
.hero__lead {
  font-size: 1.08rem; line-height: 1.75;
  color: var(--hero-soft); max-width: 500px; margin-bottom: 2rem;
}
.hero__lead::after {
  content: ''; display: block; width: 76px; height: 2px;
  margin-top: 1.6rem;
  background: linear-gradient(90deg, var(--ice), transparent);
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.hero .btn--outline {
  border-color: rgba(255,255,255,.35); color: #fff;
}
.hero .btn--outline:hover {
  border-color: var(--ice); color: #fff; background: rgba(56,189,248,.08);
}
.hero__trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: var(--fs-xs); color: var(--hero-soft); font-weight: 500;
}
.hero__trust-item::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--ice); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(56,189,248,.18);
}

/* ---- Hero visual ---- */
.hero__visual {
  position: relative; z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-dark-card);
  border: 1px solid var(--hero-faint);
  box-shadow: 0 34px 90px rgba(0,0,0,.5);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}
.hero__visual-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7,18,28,.34) 0%,
    transparent 34%,
    transparent 52%,
    rgba(7,18,28,.68) 100%
  );
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 10px; z-index: 3;
  border: 1px dashed rgba(255,255,255,.4);
  border-radius: 14px; pointer-events: none;
}
.hero__visual-meta {
  position: absolute; z-index: 4; top: 1.4rem; left: 1.4rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .56rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #EAF4FB;
  background: rgba(13,28,42,.55);
  border: 1px solid var(--hero-faint);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: .5rem .7rem; border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  white-space: nowrap;
}
.hero__visual-meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: dotPulse 2.6s ease-in-out infinite;
}
.hero__chip {
  position: absolute; z-index: 4;
  display: inline-flex; flex-direction: column; gap: .1rem;
  padding: .6rem .8rem; border-radius: 12px;
  background: rgba(13,28,42,.55);
  border: 1px solid var(--hero-faint);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  animation: chipFloat 6s ease-in-out infinite;
}
.hero__chip--temp { top: 1.4rem; right: 1.4rem; }
.hero__chip--amc { bottom: 1.4rem; right: 1.4rem; animation-delay: 1.2s; }
.hero__chip-num {
  font-family: var(--mono); font-weight: 600; font-size: .95rem;
  color: #7DD3FC; letter-spacing: .02em; line-height: 1.1;
}
.hero__chip-lbl {
  font-size: .6rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(226,236,244,.85); line-height: 1.3;
}
.hero__badge {
  position: absolute; z-index: 4; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--ice-light);
  box-shadow: 0 12px 34px rgba(0,0,0,.4);
}
.hero__badge-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ice-dark), var(--teal));
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
}
.hero__badge-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero__badge-text {
  font-size: var(--fs-xs); font-weight: 700; color: var(--ink); line-height: 1.4;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ---- Brand Strip (unused legacy helper) ---- */
.brand-strip {
  padding-block: 3rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-lt);
  border-top: 1px solid var(--border-lt);
}
.brand-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap;
}
.brand-strip__logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--muted); opacity: .5; transition: opacity .3s;
  letter-spacing: -.01em;
}
.brand-strip__logo:hover { opacity: 1; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip__kicker {
  text-align: center;
  font-family: var(--mono); font-size: .62rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ice-dark); margin-bottom: 1.1rem;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: 0 2px 10px rgba(12,30,46,.05);
  overflow: hidden;
  margin-bottom: 0;
}
.stat-mini {
  position: relative; text-align: center;
  padding: 1.9rem 1rem 1.6rem;
}
.stat-mini + .stat-mini { border-left: 1px solid var(--border-lt); }
.stat-mini__idx {
  position: absolute; top: .7rem; left: 1rem;
  font-size: .56rem; font-weight: 600; letter-spacing: .14em;
  color: #A6BECD;
}
.stat-mini__num {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 400; line-height: 1.05;
  color: var(--ice-dark); letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.stat-mini:hover .stat-mini__num { color: var(--teal); }
.stat-mini__lbl { margin-top: .4rem; }

@media (max-width: 600px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-mini { padding: 1.45rem .75rem; }
  .stat-mini:nth-child(3) { border-left: 0; }
  .stat-mini:nth-child(n+3) { border-top: 1px solid var(--border-lt); }
}

/* =============================================
   SERVICES
   ============================================= */
.service-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1000px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.service-card {
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border-lt);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ice) 0%, var(--teal) 100%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.service-card:hover {
  box-shadow: 0 18px 50px rgba(12,30,46,.12);
  transform: translateY(-6px);
  border-color: var(--ice-light);
}
.service-card:hover::before { opacity: 1; }
.service-card__idx {
  position: absolute; top: 1.5rem; right: 1.6rem;
  font-size: .62rem; font-weight: 600; letter-spacing: .12em;
  color: #B9C9D6; transition: color .3s var(--ease);
}
.service-card:hover .service-card__idx { color: var(--ice-dark); }
.service-card__icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(140deg, #0EA5E9 0%, #0D9488 100%);
  color: #fff; display: grid; place-items: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(2,132,199,.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover .service-card__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 26px rgba(2,132,199,.3);
}
.service-card__icon svg {
  width: 24px; height: 24px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.25rem;
  margin-bottom: .5rem; color: var(--ink);
}
.service-card p {
  font-size: var(--fs-sm); color: var(--muted); line-height: 1.65; margin-bottom: 1.15rem;
}
.service-card__price {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .02em;
  color: var(--ice-dark);
  background: linear-gradient(180deg, #F0F8FC, #E6F2F9);
  border: 1px solid var(--border-lt);
  padding: .32rem .7rem; border-radius: 999px;
}

/* =============================================
   BRANDS
   ============================================= */
.brands-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 600px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .brands-grid { grid-template-columns: repeat(6, 1fr); }
}
.brand-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .3rem; padding: 1.35rem .5rem 1.15rem;
  border-radius: var(--radius);
  background: var(--bg-surface); border: 1px solid var(--border-lt);
  transition: all .3s var(--ease); position: relative;
}
.brand-chip::before {
  content: ''; position: absolute; top: 0; left: 18%; right: 18%; height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--teal));
  border-radius: 2px; opacity: 0; transition: opacity .3s var(--ease);
}
.brand-chip:hover {
  border-color: var(--ice); color: var(--ice-dark);
  box-shadow: 0 10px 30px rgba(2,132,199,.12);
  transform: translateY(-3px);
}
.brand-chip:hover::before { opacity: 1; }
.brand-chip__name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.brand-chip:hover .brand-chip__name { color: var(--ice-dark); }
.brand-chip__tag {
  font-family: var(--mono); font-size: .52rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: #93AABD;
  transition: color .3s var(--ease);
}
.brand-chip:hover .brand-chip__tag { color: var(--teal); }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about__img { position: relative; }
.about__img img {
  width: 100%; aspect-ratio: 4/4.35; object-fit: cover;
  border-radius: 280px 280px 20px 20px;
  box-shadow: 0 30px 70px rgba(12,30,46,.22);
}
.about__img::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(180deg, transparent, rgba(12,30,46,.6));
  border-radius: 0 0 20px 20px; pointer-events: none;
}
.about__caption {
  position: absolute; z-index: 2; left: 1.15rem; right: 1.15rem; bottom: 1.05rem;
  display: flex; gap: .9rem 1.5rem; flex-wrap: wrap; justify-content: space-between;
  font-family: var(--mono); font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: #EAF4FB;
  padding: .55rem .75rem;
  background: rgba(12,30,46,.55);
  border: 1px solid var(--hero-faint);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 9px;
}
.about__stat {
  text-align: center; padding: 1.35rem 1rem;
  border-radius: var(--radius); border: 1px solid var(--border-lt);
  background: linear-gradient(180deg, #FFFFFF, #F1F7FB);
  position: relative; transition: all .3s var(--ease);
}
.about__stat::before {
  content: ''; position: absolute; top: 0; left: 22%; right: 22%; height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--teal));
  border-radius: 2px;
}
.about__stat:hover {
  border-color: var(--ice-light);
  box-shadow: 0 10px 26px rgba(12,30,46,.08);
  transform: translateY(-2px);
}
.about__stat .stat-box__number {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: .3rem;
}
.about__stat .stat-box__label { font-weight: 600; }
.about__stat-grid { gap: 1rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 700px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.testi-card {
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); border: 1px solid var(--border-lt);
  transition: all .3s var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(12,30,46,.09);
  border-color: var(--ice-light);
}
.testi-card__stars { color: var(--amber); font-size: .9rem; letter-spacing: .1em; margin-bottom: .75rem; }
.testi-card__quote {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  line-height: 1.65; font-style: italic; color: var(--ink-soft);
  margin-bottom: 1rem;
}
.testi-card__author {
  font-size: var(--fs-xs); font-weight: 700; color: var(--ink);
}
.testi-card__role {
  font-size: var(--fs-xs); color: var(--muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0369A1 0%, var(--ice-dark) 40%, var(--teal) 100%);
  color: #fff;
}
.cta-section::after {
  content: '';
  position: absolute; width: 560px; height: 560px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%; top: -260px; right: -160px;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .sec-title { color: #fff; }
.cta-section .sec-lead { color: rgba(255,255,255,.8); }
.cta-section .btn--outline {
  border-color: rgba(255,255,255,.4); color: #fff;
}
.cta-section .btn--outline:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
}
.cta-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center;
}
@media (min-width: 700px) {
  .cta-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Booking Widget ---- */
.booking-widget {
  position: relative;
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 24px 70px rgba(7,18,28,.35);
  border: 1px solid rgba(255,255,255,.4);
}
.booking-widget::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--ice), var(--teal));
}
.bk-steps {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1.25rem; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .04em;
}
.bk-steps__num {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-size: .75rem;
  border: 1.5px solid var(--border); color: var(--muted); flex-shrink: 0;
}
.bk-steps__num.is-active { background: var(--ice); border-color: var(--ice); color: #fff; }
.bk-steps__num.is-done { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.bk-steps__line { flex: 1; height: 1.5px; background: var(--border); border-radius: 2px; }
.bk-steps__line.is-done { background: var(--teal-light); }
.bk-label {
  display: block; font-size: var(--fs-xs); font-weight: 600;
  color: var(--ink-soft); margin-bottom: .45rem; letter-spacing: .02em;
}
.bk-pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.bk-pill {
  position: relative; display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .9rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--bg-surface);
  color: var(--ink-soft); font-size: var(--fs-xs); font-weight: 500;
  cursor: pointer; user-select: none; transition: all .2s var(--ease); line-height: 1.3;
  min-height: 44px; min-width: 44px;
}
.bk-pill:hover { border-color: var(--ice); color: var(--ice-dark); }
.bk-pill.is-selected {
  background: var(--ice); border-color: var(--ice); color: #fff;
  box-shadow: 0 2px 10px rgba(2,132,196,.25);
}
.bk-pill input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.bk-field { margin-bottom: 1rem; }
.bk-field:last-child { margin-bottom: 0; }
.bk-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: .7rem 1rem; font-family: var(--sans); font-size: var(--fs-sm);
  color: var(--ink); background: var(--bg-surface); transition: all .2s var(--ease);
  min-height: 44px;
}
.bk-input:focus { outline: none; border-color: var(--ice); box-shadow: 0 0 0 3px rgba(56,189,248,.15); }
.bk-input.is-error { border-color: #DC2626; }
.bk-error {
  font-size: .72rem; color: #DC2626; margin-top: .35rem;
  display: none; font-weight: 500;
}
.bk-error.is-visible { display: block; }
.bk-summary {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem;
  padding: .85rem; background: var(--bg-warm); border: 1px solid var(--border-lt); border-radius: var(--radius);
}
.bk-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; color: var(--ink-soft);
  background: var(--bg-surface); border: 1px solid var(--border);
  padding: .3rem .65rem; border-radius: 999px; line-height: 1.2;
}
.bk-chip strong { color: var(--ice-dark); font-weight: 700; }
.bk-times { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.15rem; }
.bk-time {
  padding: .6rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--bg-surface);
  color: var(--ink-soft); font-size: var(--fs-sm); font-weight: 600;
  cursor: pointer; transition: all .2s var(--ease); font-family: var(--sans);
}
.bk-time:hover { border-color: var(--ice); color: var(--ice-dark); transform: translateY(-1px); }
.bk-time.is-selected {
  background: var(--ice); border-color: var(--ice); color: #fff;
  box-shadow: 0 4px 14px rgba(2,132,196,.25);
}
.bk-back {
  background: none; border: none; color: var(--ice-dark);
  font-size: var(--fs-xs); font-weight: 600; cursor: pointer;
  padding: 0; margin-bottom: .85rem; display: inline-flex;
  align-items: center; gap: .25rem; font-family: var(--sans);
}
.bk-back:hover { text-decoration: underline; }
.bk-success { text-align: center; padding: 1.5rem .5rem; }
.bk-success__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ice-light); color: var(--ice-dark);
  display: grid; place-items: center; margin: 0 auto 1rem;
}
.bk-success__icon svg { width: 24px; height: 24px; stroke-width: 2.2; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.bk-success h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: .5rem; color: var(--ink); }
.bk-success p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; max-width: 36ch; margin: 0 auto; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.contact__img {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 2rem;
  aspect-ratio: 16/10;
  box-shadow: 0 22px 55px rgba(12,30,46,.16);
}
.contact__img img { width: 100%; height: 100%; object-fit: cover; }
.contact__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(12,30,46,0) 55%, rgba(12,30,46,.6) 100%);
  pointer-events: none;
}
.contact__img-caption {
  position: absolute; z-index: 2; left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .56rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: #EAF4FB;
  background: rgba(12,30,46,.6);
  border: 1px solid var(--hero-faint);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: .5rem .7rem; border-radius: 8px;
  white-space: nowrap;
}
.contact__img-caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice); box-shadow: 0 0 8px var(--ice);
}
.contact-card-grid { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.contact-info-card {
  background: var(--bg-surface); border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem; border: 1px solid var(--border-lt);
  border-left: 3px solid transparent;
  transition: all .3s var(--ease);
}
.contact-info-card:hover {
  border-color: var(--ice-light); border-left-color: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12,30,46,.09);
}
.contact-info-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .65rem 0; border-bottom: 1px solid var(--border-lt);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(140deg, #E0F2FE, #CCFBF1);
  color: var(--ice-dark);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2,132,199,.12);
  transition: transform .3s var(--ease);
}
.contact-info-card:hover .contact-info-icon { transform: scale(1.06); }
.contact-info-icon svg {
  width: 22px; height: 22px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-row h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.1rem;
  margin-bottom: .15rem; color: var(--ink);
}
.contact-info-row p {
  font-size: var(--fs-sm); color: var(--muted); line-height: 1.5;
}

/* =============================================
   MOBILE BOOKING BAR
   ============================================= */
.mobile-booking-bar {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; padding: .45rem .6rem;
  border-radius: 999px; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-lt);
  box-shadow: 0 8px 32px rgba(12,30,46,.12);
  z-index: 150; animation: barSlideUp .4s var(--ease) both;
}
@keyframes barSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mobile-booking-bar__btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--sans); font-size: var(--fs-sm); font-weight: 600;
  text-decoration: none; border-radius: 999px; padding: .65rem 1.2rem;
  transition: all .25s var(--ease); white-space: nowrap;
  min-height: 44px; min-width: 44px;
}
.mobile-booking-bar__btn--call {
  background: var(--bg); color: var(--ink); border: 1px solid var(--border);
}
.mobile-booking-bar__btn--call:hover { border-color: var(--ice); color: var(--ice-dark); }
.mobile-booking-bar__btn--book {
  background: linear-gradient(135deg, var(--ice) 0%, var(--teal) 100%); color: #fff;
}
.mobile-booking-bar__btn--book:hover { box-shadow: 0 4px 16px rgba(14,165,136,.3); }
@media (min-width: 768px) {
  .mobile-booking-bar { display: none; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-dark); color: #94A3B8; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: var(--fs-sm); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.footer__brand { max-width: 300px; }
.footer__logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: #fff; letter-spacing: -.01em; }
.footer__logo span { color: var(--ice); }
.footer__desc { margin-top: .75rem; line-height: 1.65; max-width: 280px; }
.footer__abn { font-size: var(--fs-xs); color: #7B8FA0; margin-top: 1rem; }
.footer h3 {
  font-family: var(--sans); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: .12em; text-transform: uppercase; color: #CBD5E1;
  margin-bottom: 1rem; position: relative; padding-bottom: .5rem;
}
.footer h3::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 22px; height: 2px; background: var(--ice); border-radius: 2px;
}
.footer ul li { margin-bottom: .55rem; }
.footer ul a { transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--ice); }
.footer__contact li { display: flex; align-items: center; gap: .5rem; }
.footer__contact svg { width: 15px; height: 15px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: .5rem; font-size: var(--fs-xs); color: #7B8FA0;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .35s; }
.reveal-delay-5 { transition-delay: .4s; }

/* =============================================
   HERO RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .hero__visual-meta { display: none; }
  .hero__chip { padding: .45rem .65rem; }
  .hero__chip-num { font-size: .76rem; }
  .hero__chip-lbl { font-size: .54rem; }
  .hero__chip--amc { top: 1.2rem; left: 1.2rem; right: auto; bottom: auto; }
  .hero__mono { font-size: .56rem; letter-spacing: .12em; }
}
@media (max-width: 420px) {
  .hero { padding-block: 3rem 3.5rem; }
  .hero__badge { padding: .7rem .9rem; bottom: 1rem; left: 1rem; }
  .hero__badge-icon { width: 34px; height: 34px; }
  .hero__badge-icon svg { width: 17px; height: 17px; }
  .hero__lead { font-size: 1rem; }
}

/* =============================================
   RESPONSIVE NAV
   ============================================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links--open {
    display: flex !important; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(12,30,46,.1);
    padding: .5rem 0; z-index: 90;
  }
  .nav__links--open a { padding: .9rem 1.5rem; font-size: 1rem; border-bottom: 1px solid var(--border-lt); }
  .nav__links--open a:last-child { border-bottom: none; }
  .nav__links--open a:not(.nav__cta-desktop)::after { display: none; }
  .nav__cta-desktop { display: none !important; }
  .nav__toggle { display: flex !important; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__chip { animation: none; }
  .hero__visual-meta-dot { animation: none; }
  .btn, .card, .service-card, .brand-chip, .testi-card, .contact-info-card, .about__stat { transition-duration: .01ms; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .banner, .nav, .mobile-booking-bar { display: none; }
  html { scroll-behavior: auto; }
}
