/* ============================================================
   EVERGREEN GLOW DISPLAYS — Bright, festive, friendly-premium.
   Snow white · Spruce green · Berry red · Gold.
   ============================================================ */

:root {
  --snow: #FBFDFB;
  --snow-2: #EFF4EF;
  --spruce: #12492F;
  --spruce-2: #0C3A25;
  --spruce-lt: #2E7A52;
  --berry: #C8382F;
  --berry-dk: #A32A23;
  --gold: #F4C531;
  --ink: #1D2A22;
  --muted: #5C6B60;
  --disp: 'Fraunces', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-s: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 22px;
  --shadow: 0 22px 50px -24px rgba(18,73,47,.4);

  /* Calculator Theme Aliases */
  --green: var(--spruce);
  --green-dark: var(--spruce-2);
  --green-light: var(--spruce-lt);
  --red: var(--berry);
  --serif: var(--disp);
  --radius: var(--r);
  --radius-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--snow); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.kicker { display: inline-block; font-family: var(--body); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--berry); margin-bottom: .9rem; }
.kicker--light { color: var(--gold); }
.title { font-family: var(--disp); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.05; color: var(--spruce); letter-spacing: -0.01em; }
.sub { color: var(--muted); max-width: 52ch; margin: 1rem auto 0; }
.head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.8rem); text-align: center; }
.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 5.5rem); }
.stars { color: var(--gold); letter-spacing: .1em; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-family: var(--body); font-weight: 700; font-size: .95rem; padding: .95rem 1.6rem; border-radius: 100px; cursor: pointer; border: 2px solid transparent; transition: transform .4s var(--ease), box-shadow .4s var(--ease-s), background .3s, color .3s; white-space: nowrap; flex-shrink: 0; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--red { background: var(--berry); color: #fff; box-shadow: 0 12px 28px -12px rgba(200,56,47,.7); }
.btn--red:hover { background: var(--berry-dk); transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 40px -12px rgba(200,56,47,.8); }
.btn--soft { background: #fff; color: var(--spruce); border-color: var(--snow-2); box-shadow: var(--shadow); }
.btn--soft:hover { transform: translateY(-4px) scale(1.03); border-color: var(--spruce-lt); color: var(--spruce); }

/* ---------- SNOW ---------- */
.snow { position: fixed; inset: 0; pointer-events: none; z-index: 90; overflow: hidden; }
.snow i { position: absolute; top: -12px; border-radius: 50%; background: #fff; opacity: .85; filter: drop-shadow(0 1px 2px rgba(0,0,0,.08)); animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); } }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .4s var(--ease-s); }
.nav.is-stuck { background: rgba(251,253,251,.9); backdrop-filter: blur(12px); box-shadow: 0 4px 24px -16px rgba(18,73,47,.5); }
.nav__inner { max-width: 1320px; margin: 0 auto; padding: 1.1rem clamp(1.25rem, 6vw, 5.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; box-sizing: border-box; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--disp); font-weight: 700; font-size: 1.4rem; color: var(--spruce); white-space: nowrap; flex-shrink: 0; }
.brand em { font-style: italic; color: var(--berry); }
.brand--light { color: #fff; } .brand--light em { color: var(--gold); }
.brand__tree { width: 30px; height: 30px; color: var(--spruce-lt); }
.nav__links { display: flex; gap: 1.9rem; align-items: center; }
.nav__links a { font-weight: 500; font-size: .92rem; color: var(--ink); position: relative; padding: .2rem 0; white-space: nowrap; }
.nav__links a::after { content:''; position:absolute; left:0; bottom:-3px; width:100%; height:2px; border-radius:2px; background: var(--berry); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-s); }
.nav__links a:hover { color: var(--berry); } .nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { white-space: nowrap; flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; border-radius: 2px; background: var(--spruce); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 9rem clamp(1.25rem, 6vw, 5.5rem) 5rem; overflow: hidden; background: linear-gradient(180deg, #F4FAF5 0%, var(--snow) 100%); }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(40% 45% at 82% 20%, rgba(244,197,49,.16), transparent 60%), radial-gradient(40% 45% at 10% 80%, rgba(46,122,82,.10), transparent 60%); }
.hero__inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pill { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--snow-2); color: var(--spruce); font-weight: 600; font-size: .85rem; padding: .5rem 1rem; border-radius: 100px; box-shadow: var(--shadow); margin-bottom: 1.6rem; }
.hero__title { font-family: var(--disp); font-weight: 600; font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--spruce); margin-bottom: 1.4rem; }
.hero__title .hl { color: var(--berry); position: relative; white-space: nowrap; }
.hero__title .hl::after { content:''; position:absolute; left:0; right:0; bottom:.06em; height:.28em; background: var(--gold); opacity:.55; border-radius:6px; z-index:-1; }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 44ch; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust { display: flex; align-items: center; gap: .8rem; font-size: .95rem; color: var(--muted); }
.hero__trust strong { color: var(--spruce); }
.hero__trust .stars { font-size: 1.1rem; }

.hero__card { position: relative; }
.hero__photo { width: 100%; aspect-ratio: 4/5; border-radius: 28px; background: center/cover no-repeat url('assets/stock/hero-dusk.jpeg'); box-shadow: 0 40px 80px -30px rgba(18,73,47,.55); }
.floaty { position: absolute; display: inline-flex; align-items: center; gap: .45em; background: #fff; border-radius: 100px; padding: .7rem 1.1rem; font-weight: 600; font-size: .88rem; color: var(--spruce); box-shadow: var(--shadow); animation: bob 4s ease-in-out infinite; }
.floaty .ico { color: var(--berry); }
.floaty--1 { top: 8%; left: -8%; animation-delay: 0s; }
.floaty--2 { bottom: 16%; right: -6%; animation-delay: 1.3s; }
.floaty--3 { bottom: -3%; left: 6%; animation-delay: 2.4s; }
@keyframes bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

/* ---------- SERVICES ---------- */
.services { background: var(--snow); }
.services__grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card { background: #fff; border-radius: var(--r); padding: 2rem 1.8rem; border: 1px solid var(--snow-2); box-shadow: 0 14px 40px -30px rgba(18,73,47,.5); transition: transform .5s var(--ease), box-shadow .5s var(--ease-s); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__ico { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; background: var(--snow-2); color: var(--spruce); margin-bottom: 1.2rem; transition: transform .5s var(--ease), background .4s; }
.card__ico svg { width: 30px; height: 30px; }
.ico { width: 1.05em; height: 1.05em; vertical-align: -0.16em; flex: none; }
.btn .ico { width: 1.1em; height: 1.1em; }
.footer__made { display: inline-flex; align-items: center; gap: .35em; }
.footer__made .ico { color: var(--berry); }
.card:hover .card__ico { transform: rotate(-8deg) scale(1.08); background: #E7F1E9; }
.card h3 { font-family: var(--disp); font-weight: 600; font-size: 1.4rem; color: var(--spruce); margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* ---------- PROCESS ---------- */
.process { background: var(--spruce); color: #fff; border-radius: 40px; margin: 0 clamp(.6rem, 2vw, 1.5rem); }
.process .title { color: #fff; } .process .kicker { color: var(--gold); }
.process__track { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; position: relative; }
.pcard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 2rem 1.6rem; position: relative; transition: transform .5s var(--ease), background .4s; }
.pcard:hover { transform: translateY(-8px); background: rgba(255,255,255,.11); }
.pcard__badge { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 1.3rem; color: var(--spruce); background: var(--gold); margin-bottom: 1.2rem; box-shadow: 0 8px 20px -8px rgba(244,197,49,.7); }
.pcard h3 { font-family: var(--disp); font-weight: 600; font-size: 1.4rem; margin-bottom: .5rem; }
.pcard p { color: rgba(255,255,255,.78); font-size: .93rem; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--snow); }
.gallery__grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1.1rem; }
.glow { position: relative; border-radius: var(--r); overflow: hidden; background: var(--img) center/cover no-repeat, var(--snow-2); box-shadow: 0 14px 40px -30px rgba(18,73,47,.5); }
.glow::after { content:''; position:absolute; inset:0; background: var(--img) center/cover no-repeat; transform: scale(1); transition: transform 1s var(--ease-s); z-index:-1; }
.glow::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(12,58,37,.85)); opacity:.75; transition: opacity .5s; }
.glow:hover::before { opacity: .95; }
.glow:hover { }
.glow img { transition: transform 1s var(--ease-s); }
.glow--tall { grid-row: span 2; } .glow--wide { grid-column: span 2; }
.glow figcaption { position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2; color: #fff; font-family: var(--disp); font-weight: 600; font-size: 1.15rem; transform: translateY(8px); opacity: 0; transition: all .5s var(--ease-s); }
.glow:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- BANNER ---------- */
.banner { background: linear-gradient(120deg, var(--berry), var(--berry-dk)); color: #fff; padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 6vw, 5.5rem); }
.banner__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat strong { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; }
.stat span { font-size: .88rem; opacity: .9; margin-top: .4rem; display: block; }

/* ---------- SERVICE AREA ---------- */
.area { background: var(--snow); }
.area__grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.area .title, .area .head { text-align: left; }
.area__copy .sub { margin-left: 0; }
.area__towns { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0 2rem; }
.area__towns span { font-weight: 500; font-size: .88rem; color: var(--spruce); background: #fff; border: 1px solid var(--snow-2); padding: .5rem .95rem; border-radius: 100px; transition: all .3s var(--ease-s); }
.area__towns span:hover { background: var(--spruce); color: #fff; transform: translateY(-2px); }
.area__mapwrap { border-radius: 28px; padding: 10px; background: #fff; box-shadow: var(--shadow); }
.area__map { position: relative; aspect-ratio: 1/0.82; border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 44%, #EAF3EC, #DDEBE0); }
.area__roads { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(46,122,82,.14) 1px, transparent 1px), linear-gradient(rgba(46,122,82,.14) 1px, transparent 1px); background-size: 44px 44px; }
.mappin { position: absolute; left: var(--x); top: var(--y); width: 12px; height: 12px; border-radius: 50% 50% 50% 0; background: var(--berry); transform: translate(-50%,-100%) rotate(-45deg); box-shadow: 0 4px 10px -3px rgba(200,56,47,.6); animation: drop .6s var(--ease) both; }
.mappin--home { width: auto; height: auto; background: none; box-shadow: none; color: var(--berry); transform: translate(-50%,-90%); animation: bob 3s ease-in-out infinite; }
.mappin--home svg { width: 30px; height: 30px; filter: drop-shadow(0 3px 5px rgba(200,56,47,.45)); }
@keyframes drop { from { opacity: 0; transform: translate(-50%,-180%) rotate(-45deg); } }

/* ---------- REVIEWS ---------- */
.reviews { background: var(--snow-2); }
.reviews__grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review { background: #fff; border-radius: var(--r); padding: 2rem 1.9rem; box-shadow: 0 14px 40px -30px rgba(18,73,47,.5); transition: transform .5s var(--ease), box-shadow .5s var(--ease-s); }
.review:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.review .stars { font-size: 1.1rem; margin-bottom: 1rem; }
.review p { font-family: var(--disp); font-size: 1.18rem; line-height: 1.5; color: var(--spruce); margin-bottom: 1.4rem; }
.review footer { display: flex; align-items: center; gap: .8rem; }
.review footer img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review footer strong { display: block; color: var(--ink); }
.review footer span { font-size: .84rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--snow); }
.faq__list { max-width: 800px; margin: 0 auto; }
.q { background: #fff; border: 1px solid var(--snow-2); border-radius: 18px; margin-bottom: .9rem; overflow: hidden; transition: box-shadow .4s, border-color .4s; }
.q[open] { box-shadow: var(--shadow); border-color: #E1EAE3; }
.q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 1.6rem; font-family: var(--disp); font-weight: 600; font-size: 1.18rem; color: var(--spruce); }
.q summary::-webkit-details-marker { display: none; }
.q__mk { position: relative; width: 18px; height: 18px; flex: none; }
.q__mk::before, .q__mk::after { content:''; position:absolute; background: var(--berry); border-radius: 2px; transition: transform .4s var(--ease-s); }
.q__mk::before { top: 8px; left: 0; width: 18px; height: 2px; }
.q__mk::after { top: 0; left: 8px; width: 2px; height: 18px; }
.q[open] .q__mk::after { transform: rotate(90deg); opacity: 0; }
.q__body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-s); }
.q[open] .q__body { max-height: 260px; }
.q__body p { padding: 0 1.6rem 1.4rem; color: var(--muted); }

/* ---------- QUOTE ---------- */
.quote { padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 5.5rem); background: var(--snow-2); overflow: hidden; }
.quote__card { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,3.5rem); background: var(--spruce); color: #fff; border-radius: 36px; padding: clamp(2.2rem, 5vw, 4rem); align-items: center; box-shadow: 0 40px 80px -40px rgba(12,58,37,.7); }
.quote__copy h2 { font-family: var(--disp); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.06; margin-bottom: 1rem; }
.quote__copy p { color: rgba(255,255,255,.82); margin-bottom: 1.4rem; }
.quote__perks { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.quote__perks li { color: var(--gold); font-weight: 600; }
.quote__form { display: grid; gap: .8rem; background: #fff; border-radius: 22px; padding: 1.6rem; }
.quote__form input { padding: .95rem 1.1rem; border-radius: 12px; border: 1px solid var(--snow-2); font-family: var(--body); font-size: .95rem; color: var(--ink); background: var(--snow); }
.quote__form input:focus { outline: none; border-color: var(--spruce-lt); background: #fff; }
.quote__form .btn { justify-content: center; margin-top: .2rem; }
.quote__form small { text-align: center; color: var(--muted); font-size: .78rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--spruce-2); color: rgba(255,255,255,.75); padding: clamp(3rem,6vw,4.5rem) clamp(1.25rem, 6vw, 5.5rem) 2rem; }
.footer__inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand p { margin: .8rem 0 1.2rem; max-width: 32ch; font-size: .92rem; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; transition: all .3s; }
.footer__social svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--gold); color: var(--spruce); transform: translateY(-3px); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 { color: var(--gold); font-family: var(--body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__cols a { display: block; font-size: .92rem; padding: .3rem 0; transition: color .3s; }
.footer__cols a:hover { color: #fff; }
.footer__base { max-width: 1320px; margin: 1.6rem auto 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-s), transform .8s var(--ease-s); }
.reveal.in { opacity: 1; transform: none; }
.services__grid .card:nth-child(2), .process__track .pcard:nth-child(2), .reviews__grid .review:nth-child(2), .banner__inner .stat:nth-child(2), .gallery__grid .glow:nth-child(2) { transition-delay: .07s; }
.services__grid .card:nth-child(3), .process__track .pcard:nth-child(3), .reviews__grid .review:nth-child(3), .banner__inner .stat:nth-child(3), .gallery__grid .glow:nth-child(3) { transition-delay: .14s; }
.services__grid .card:nth-child(4), .process__track .pcard:nth-child(4), .banner__inner .stat:nth-child(4), .gallery__grid .glow:nth-child(4) { transition-delay: .21s; }
.services__grid .card:nth-child(5) { transition-delay: .28s; } .services__grid .card:nth-child(6) { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } * { animation: none !important; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .nav__inner { gap: 1.2rem; padding: 0.9rem clamp(1rem, 3vw, 2.5rem); }
  .nav__links { gap: 1.1rem; }
  .nav__links a { font-size: 0.88rem; }
  .nav__cta { padding: 0.75rem 1.2rem; font-size: 0.88rem; }
  .brand { font-size: 1.25rem; }
}

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { width: 100%; max-width: 460px; margin: 1rem auto 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__track { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .banner__inner { grid-template-columns: repeat(2, 1fr); }
  .area__grid, .quote__card { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 600px; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__links.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(251,253,251,.97); backdrop-filter: blur(12px); padding: 1.4rem clamp(1.25rem,6vw,5.5rem); gap: 1rem; box-shadow: var(--shadow); }
  .nav__burger { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-right: -10px; }
}

@media (max-width: 700px) {
  .services__grid, .process__track, .gallery__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-auto-rows: 210px; } .glow--wide, .glow--tall { grid-column: auto; grid-row: auto; }
  .banner__inner { grid-template-columns: 1fr 1fr; }
  .floaty { display: none; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: .4rem; }
}


/* Mobile: prevent iOS auto-zoom on input focus */
@media (max-width: 640px) { input, select, textarea { font-size: 16px !important; } }

/* ==========================================================================
   AUTOBIDDER INSTANT PRICING & BOOKING CALCULATOR STYLES
   ========================================================================== */

.quote__card--calc {
  grid-template-columns: 1fr !important;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #ffffff;
  color: #1e293b !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 56, 44, 0.15);
}

.calc-header {
  text-align: center;
  margin-bottom: 2rem;
}
.calc-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #0f382c;
  margin: 0.5rem 0;
}
.calc-header p {
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

/* Stepper Progress Bar */
.calc-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.calc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  cursor: pointer;
}
.calc-step__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #334155;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-s);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.calc-step.active .calc-step__num {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(217, 56, 58, 0.25);
  transform: scale(1.08);
}
.calc-step.done .calc-step__num {
  background: var(--green);
  color: #fff;
}
.calc-step__lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  transition: color 0.3s;
}
.calc-step.active .calc-step__lbl {
  color: #0f382c;
  font-weight: 700;
}
.calc-step__line {
  flex: 1;
  height: 3px;
  background: #cbd5e1;
  margin: 0 8px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Panels */
.calc-panel {
  display: none;
  animation: fadeIn 0.4s var(--ease-s);
  color: #1e293b;
}
.calc-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-panel__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #0f382c;
  margin-bottom: 0.3rem;
}
.calc-panel__sub {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.calc-panel__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Service Chooser Cards */
.calc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.calc-service-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-s);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.calc-service-card:hover {
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.calc-service-card.selected {
  border-color: var(--green);
  background: #f4fbf7;
  box-shadow: 0 4px 16px rgba(18, 73, 47, 0.12);
}
.calc-service-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.calc-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #f0fdf4;
  padding: 6px;
  border: 1px solid rgba(18, 73, 47, 0.1);
}
.calc-service-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  line-height: 1.3;
}
.calc-service-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.calc-service-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: all 0.2s;
}
.calc-service-card.selected .calc-service-card__check {
  background: var(--green);
  border-color: var(--green);
}

/* Dynamic Fields Container */
.calc-fields-container {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.calc-field-group {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.3s;
}
.calc-field-group.hidden {
  display: none !important;
}
.calc-field-label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.calc-field-label .req {
  color: var(--red);
}
.calc-field-help {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* Options Grid (Image & Text Cards) */
.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.85rem;
}
.calc-option-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-s);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  user-select: none;
}
.calc-option-card:hover {
  border-color: #94a3b8;
  background: #fff;
}
.calc-option-card.selected {
  border-color: var(--green);
  background: #f0fdf4;
  box-shadow: 0 2px 10px rgba(18, 73, 47, 0.12);
}
.calc-option-card__img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}
.calc-option-card__lbl {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

/* Stepper Input (+ / - controls) */
.calc-num-stepper {
  display: inline-flex;
  align-items: center;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.calc-num-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #f1f5f9;
  color: var(--green-dark);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-num-btn:hover {
  background: #e2e8f0;
}
.calc-num-input {
  width: 70px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  background: transparent;
}
.calc-num-input:focus {
  outline: none;
}

/* Repeatable Groups (Tree details, etc.) */
.calc-repeatable-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calc-repeatable-item {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.calc-repeatable-item__head {
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e2e8f0;
}
.calc-child-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Form inputs for Step 3 */
.calc-contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.calc-form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.calc-form-group label .req {
  color: var(--red);
}
.calc-form-group input, .calc-form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}
.calc-form-group input:focus, .calc-form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 73, 47, 0.15);
}

/* Step 4: Estimate Display & Booking Layout */
.calc-estimate-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.calc-estimate-price-box {
  background: linear-gradient(135deg, #0c3a25 0%, #12492f 100%);
  color: #ffffff !important;
  border-radius: 18px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(12, 58, 37, 0.25);
}
.calc-estimate-price-box::after {
  content: '✦';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 6rem;
  opacity: 0.12;
  color: #f4c531;
}
.calc-estimate-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.calc-estimate-amount {
  font-family: var(--disp);
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: #f4c531 !important;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.calc-estimate-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-top: 0.5rem;
}

.calc-breakdown-list {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  color: #334155 !important;
}
.calc-breakdown-row strong {
  color: #0f382c !important;
  font-weight: 700;
}
.calc-breakdown-row.total {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f382c !important;
  border-top: 2px dashed #cbd5e1;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
}

/* Upsells & Addons */
.calc-upsells-section {
  margin-bottom: 1.75rem;
}
.calc-upsells-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f382c !important;
  margin-bottom: 0.85rem;
}
.calc-upsell-item {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-s);
  color: #1e293b !important;
}
.calc-upsell-item:hover {
  border-color: #12492f;
  background: #fdfbf7;
}
.calc-upsell-item.selected {
  border-color: #12492f;
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(18, 73, 47, 0.1);
}
.calc-upsell-cb {
  width: 22px;
  height: 22px;
  accent-color: #12492f;
  cursor: pointer;
}
.calc-upsell-info {
  flex: 1;
}
.calc-upsell-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: #0f382c !important;
}
.calc-upsell-price {
  font-weight: 700;
  color: #12492f !important;
  font-size: 1rem;
}

/* Booking Calendar Widget */
.calc-booking-widget {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 2px solid #e2e8f0;
  color: #1e293b !important;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.calc-booking-title {
  font-family: var(--disp);
  font-size: 1.4rem;
  color: #0f382c !important;
  margin-bottom: 0.35rem;
}
.calc-booking-sub {
  font-size: 0.95rem;
  color: #475569 !important;
  margin-bottom: 1.4rem;
}
.calc-dates-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-bottom: 0.85rem;
  margin-bottom: 1.4rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.calc-date-chip {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 0.75rem 1rem;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  color: #1e293b !important;
  transition: all 0.2s var(--ease-s);
  user-select: none;
}
.calc-date-chip:hover {
  border-color: #12492f;
  color: #0f382c !important;
}
.calc-date-chip.selected {
  background: #12492f !important;
  color: #ffffff !important;
  border-color: #12492f !important;
  box-shadow: 0 4px 14px rgba(18, 73, 47, 0.25);
}
.calc-date-chip.selected .calc-date-chip__day,
.calc-date-chip.selected .calc-date-chip__num {
  color: #ffffff !important;
}
.calc-date-chip__day {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.calc-date-chip__num {
  font-size: 1.15rem;
  font-weight: 700;
}

.calc-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-bottom: 1.75rem;
}
.calc-slot-pill {
  flex: 1 1 140px;
  max-width: 100%;
  padding: 0.7rem 0.5rem;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  text-align: center;
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 700;
  color: #1e293b !important;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s var(--ease-s);
  white-space: nowrap;
  box-sizing: border-box;
}
.calc-slot-pill:hover {
  border-color: #12492f;
  color: #0f382c !important;
}
.calc-slot-pill.selected {
  background: #c8382f !important;
  color: #ffffff !important;
  border-color: #c8382f !important;
  box-shadow: 0 4px 14px rgba(200, 56, 47, 0.3);
}

#calc-confirm-book-btn {
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  padding: 1rem 1.5rem;
}

/* Booking Receipt Card */
.calc-receipt-card {
  background: #f0fdf4;
  border: 2px solid #12492f;
  border-radius: 20px;
  padding: 2.2rem 1.75rem;
  text-align: center;
  color: #1e293b !important;
  animation: fadeIn 0.4s var(--ease-s);
}
.calc-receipt-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #12492f;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 18px rgba(18, 73, 47, 0.3);
}
.calc-receipt-title {
  font-family: var(--disp);
  font-size: 1.75rem;
  color: #0f382c !important;
  margin-bottom: 0.5rem;
}
.calc-receipt-details {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 1.4rem;
  margin: 1.4rem auto;
  max-width: 500px;
  text-align: left;
  font-size: 0.98rem;
  color: #1e293b !important;
  line-height: 1.7;
}

/* Alerts & Loading Skeleton */
.calc-alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.calc-alert--error {
  background: #fef2f2;
  color: #991b1b !important;
  border: 1px solid #fecaca;
}
.calc-alert--info {
  background: #eff6ff;
  color: #1e40af !important;
  border: 1px solid #bfdbfe;
}

.calc-loading-skeleton {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #475569 !important;
  font-weight: 600;
  font-size: 1.05rem;
}



