/* ===========================
   styles.css
   Purple: #6f2dbd
   Font: Poppins
   =========================== */

/* Reset & base */
* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #fbf8ff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;

  /* Layout so footer stays at bottom */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; display: block; }

a { color: inherit; }

/* Layout */
.container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.page-main { padding: 40px 0 60px; }

/* ================= HEADER ================= */

.site-header {
  background: #6f2dbd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky; /* desktop stays sticky as before */
  top: 0;
  z-index: 20;
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

/* Desktop: cleaner header alignment (unchanged) */
@media (min-width: 901px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .nav.main-nav {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 18px;
  }
}

/* Logo area */
.brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.logo {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* Center nav */
.nav.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-link {
  text-decoration: none;
  color: #f4ecff;
  padding: 6px 10px;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Book now button in nav */
.nav-book {
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-book:hover { background: rgba(255, 255, 255, 0.12); }

/* Right side: CTA row */
.header-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  color: #2ecc71; /* green */
}

.phone-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

/* Desktop shows Book Now in NAV, mobile shows Book Now in header-cta */
.header-book { display: none; }

@media (max-width: 900px) {
  .nav-book-desktop { display: none; }
  .header-book { display: inline-flex; }
}

.header-phone:hover { background: rgba(0, 0, 0, 0.08); }

/* ✅ MOBILE header: one-line nav + centered one-line CTA */
@media (max-width: 900px) {

  /* keep header visible while scrolling (mobile) */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;               /* tighter */
    padding: 8px 0;         /* tighter */
  }

  .brand {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  /* ✅ ONE-LINE navigation (fits better) */
  .nav.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;               /* tighter gap */

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 4px 6px;
  }
  .nav.main-nav::-webkit-scrollbar { display: none; }

  .nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.85rem;     /* 🔑 smaller text */
    padding: 6px 8px;       /* 🔑 tighter pill */
  }

  /* ✅ CTA row centered (Book Now + Phone) */
  .header-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 4px 6px;
  }
  .header-cta::-webkit-scrollbar { display: none; }

  .header-cta > * {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.85rem;     /* 🔑 match nav size */
  }

  .header-book,
  .header-phone {
    padding: 8px 12px;      /* 🔑 fits iPhone SE / Android */
  }
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(180deg, #6f2dbd, #4c1c88);
  color: #fff;
  box-shadow: 0 14px 35px rgba(111, 45, 189, 0.5);
}

.btn-secondary {
  background: #fff;
  color: #4c1c88;
  border: 1px solid rgba(111, 45, 189, 0.3);
}

.btn-block { display: block; text-align: center; }

/* ================= HERO ================= */

.hero {
  position: relative;
  overflow: visible;
  padding: 60px 0 50px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
}

.hero-content { max-width: 680px; z-index: 2; }

.hero h2 {
  font-size: 2.3rem;
  margin: 0 0 18px;
  color: #000;
  letter-spacing: 0.01em;
}

.hero .lead {
  font-size: 0.98rem;
  color: #333;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  flex: 1;
  max-width: 380px;
}

.hero-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

/* ✅ MOBILE HERO FIX — tighter spacing + squeezed headline */
@media (max-width: 700px) {

  .hero {
    padding: 18px 0 24px;     /* removes big empty space */
  }

  .hero-inner {
    padding: 10px 0;         /* was 30px */
    gap: 14px;               /* was 40px */
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 1.6rem;
    line-height: 1.15;
    margin: 0 0 10px;
    letter-spacing: 0;
  }

  .hero .lead {
    margin-top: 0;
  }

  /* ✅ adds space before image */
  .hero-actions {
    margin-top: 12px;
    margin-bottom: 16px;
  }
}

/* ================= PRICING ================= */

.pricing-section { padding: 20px 0 50px; }

.section-title {
  font-size: 1.9rem;
  margin: 0 0 24px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(180deg, #ffffff, #fbfaff);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(44, 16, 84, 0.08);
  border-top: 5px solid rgba(111, 45, 189, 0.95);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pricing-card img {
  width: 100%;
  height: 92px; /* desktop stays the same */
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 8px;
}

.pricing-card h3 {
  margin: 4px 0 6px;
  font-size: 1.12rem;
  color: #111;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-card .price {
  font-size: 2rem;
  color: #6f2dbd;
  font-weight: 700;
  margin: 0 0 2px;
  text-align: center;
}

.start-price {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  text-align: center;
  margin: 0 0 6px;
}

.pricing-card .small {
  color: #555;
  font-size: 0.92rem;
  text-align: center;
  min-height: 3.4em;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pricing {
  margin-top: auto;
  margin-bottom: 6px;
  padding: 9px 16px;
  font-size: 0.9rem;
  background: #6f2dbd;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  text-align: center;
  box-shadow: 0 4px 14px rgba(111, 45, 189, 0.18);
}
.btn-pricing:hover { opacity: 0.94; }

/* ✅ Mobile: pricing images look like normal photos */
@media (max-width: 700px) {

  .pricing-grid {
    align-items: stretch;
  }

  .pricing-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card img {
    width: 100%;
    height: auto;              /* ✅ override desktop 92px */
    max-height: none;          /* ✅ remove forced cap */
    aspect-ratio: 4 / 3;       /* ✅ consistent look */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 10px;
  }

  .pricing-card h3 { min-height: 2.8em; }
  .pricing-card .small { min-height: 3em; }
}

/* ================= FEATURES ================= */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin: 20px auto 60px;
  max-width: 1100px;
}

.feature {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(111, 45, 189, 0.06);
  text-align: center;
}

.feature-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid #6f2dbd;
  box-shadow: 0 8px 22px rgba(111, 45, 189, 0.12);
}

.feature h3 {
  color: #6f2dbd;
  margin: 8px 0;
  font-size: 1.15rem;
}

.feature p { color: #333; margin: 0; }

/* ================= ADVANTAGES SECTION ================= */

.advantages { padding: 40px 0 60px; }
.advantages-inner { max-width: 1120px; margin: 0 auto; }

.advantages-title {
  text-align: center;
  font-size: 1.9rem;
  margin: 0 0 8px;
}

.advantages-subtitle {
  text-align: center;
  margin: 0 0 26px;
  color: #555;
  font-size: 0.95rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

@media (min-width: 900px) {
  .adv-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .adv-grid > :nth-last-child(2) { grid-column: 2; }
  .adv-grid > :last-child { grid-column: 3; }
}

.adv-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 14px 34px rgba(26, 4, 63, 0.06);
  text-align: center;
}

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(145deg, #f5e9ff, #ffffff);
  color: #6f2dbd;
  box-shadow: 0 8px 20px rgba(111, 45, 189, 0.25);
}

.adv-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.adv-card p { margin: 0; font-size: 0.9rem; color: #444; }

@media (max-width: 700px) { .adv-card { padding: 18px 14px; } }

/* ================= OTHER SECTIONS ================= */

.service-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.service-list li {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.service-list h3 { margin-top: 0; color: #6f2dbd; }

@media (min-width: 900px) {
  .service-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ================= GALLERY (UPDATED — PERFECT SIZES) ================= */

.gallery { padding: 26px 0 40px; }

.gallery h2 { margin: 0 0 14px; }

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .gallery { padding: 18px 0 28px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}

.gallery-card {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
}

.gallery-link {
  display: block;
  text-decoration: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-link:hover img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.gallery-card figcaption {
  padding: 10px 12px;
  font-size: 0.88rem;
  line-height: 1.25;
  color: #2b2b2b;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ================= FORMS (GLOBAL) ================= */

form { max-width: 540px; margin: 20px 0 40px; }

label { font-weight: 600; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-family: inherit;
  font-size: 0.95rem;
  margin-top: 4px;
}

textarea { resize: vertical; }

.inline-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 8px 0 12px;
}

.inline-group label { font-weight: 400; }

/* ================= QUOTE PAGE BASE ================= */

.quote-main { padding: 60px 0; }

.quote-container {
  background: #fff;
  padding: 24px 26px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.quote-container form { max-width: 100%; } /* ✅ allow quote form to use full card width */

/* Thank-you page */
.thank-main { padding: 60px 0 80px; }

.thank-box {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  text-align: center;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #6f2dbd;
  border-top: none;
  padding: 16px 0;
  font-size: 0.9rem;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4ecff;
  white-space: nowrap;
}

.footer-area { display: inline; margin: 0; }

.footer-phone {
  display: inline;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin: 0;
}

.footer-phone:hover { text-decoration: underline; }

.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ✅ MOBILE footer: phone on NEW LINE & centered */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: normal;
    font-size: 0.85rem;
  }

  .footer-area {
    display: block;
    text-align: center;
  }

  .footer-phone {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    text-align: center;
  }
}

/* ================= SNOW EFFECT ================= */

.snowflake {
  position: fixed;
  top: -10px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  animation-name: snow-fall, snow-sway;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes snow-fall {
  0% { transform: translate3d(0, -10vh, 0); }
  100% { transform: translate3d(0, 110vh, 0); }
}

@keyframes snow-sway {
  0% { margin-left: -15px; }
  50% { margin-left: 15px; }
  100% { margin-left: -15px; }
}

/* ================= TESTIMONIALS / REVIEWS ================= */

.testimonials { padding: 20px 0 60px; }
.testimonials-inner { max-width: 1120px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 22px; }
.testimonials-header h2 { margin: 0 0 6px; font-size: 1.9rem; }

.testimonials-summary {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.testimonials-google {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6f2dbd;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(111, 45, 189, 0.25);
}

.testimonials-google:hover { background: rgba(111, 45, 189, 0.06); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 5, 40, 0.06);
  padding: 14px 16px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name { font-weight: 600; }
.review-meta { font-size: 0.8rem; color: #777; }
.review-rating { color: #f5a623; font-size: 0.95rem; margin: 4px 0 4px; }
.review-text { font-size: 0.9rem; color: #333; margin: 0; line-height: 1.5; }

/* ===== Send button styled like Book Now (force) ===== */

button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(180deg, #6f2dbd, #4c1c88);
  color: #fff;

  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;

  border: none;
  cursor: pointer;

  box-shadow: 0 14px 35px rgba(111, 45, 189, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(111, 45, 189, 0.55);
  opacity: 0.96;
}

button[type="submit"]:active,
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(111, 45, 189, 0.4);
}

/* Contact "Send" icon (bigger like Book Now) */
.send-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.send-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

@media (max-width: 700px) {
  button[type="submit"],
  input[type="submit"] {
    padding: 14px 26px;
    font-size: 1rem;
  }

  .send-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Hide Netlify honeypot field (single source of truth) */
.hidden { display: none; }

/* =========================================================
   QUOTE FORM — PRETTY + EVEN SPACING (CLEAN, NO DUPLICATES)
   ========================================================= */

.quote-container h1 { margin-top: 0; }

/* Card sections + equal spacing */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px; /* ✅ equal spacing between sections */
}

/* each section becomes a nice card */
.quote-form .form-section {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* ✅ even inside spacing */
  box-shadow: 0 10px 26px rgba(15, 5, 40, 0.04);
}

.quote-form h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

/* labels: consistent */
.quote-form label {
  display: block;
  margin: 0 0 6px;
}

/* helper text */
.quote-form small,
.help-text {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 0.86rem;
  line-height: 1.35;
}

/* inputs: same height + aligned icons */
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form input[type="date"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 44px 10px 12px; /* ✅ same right padding for arrow/calendar */
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  margin-top: 4px; /* keep consistent with global inputs */
}

.quote-form textarea {
  height: auto;
  min-height: 120px;
  padding: 10px 12px;
}

/* nice focus */
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(111, 45, 189, 0.45);
  box-shadow: 0 0 0 4px rgba(111, 45, 189, 0.12);
}

/* ✅ Clean select chevron (aligned, no browser arrow) */
.quote-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%236f2dbd' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

/* ✅ Date picker icon aligned like dropdown */
.quote-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%236f2dbd' d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2zm13 6H6v12h14V8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

/* Hide the browser’s date icon so only yours shows */
.quote-form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

/* inline radios/checkboxes look cleaner */
.quote-form .inline-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
}

.quote-form .inline-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin: 0;
}

/* mount options block as a soft inset card (no dashed borders) */
.quote-form .sub-section {
  padding: 12px;
  border-radius: 12px;
  background: #f7f0ff;
  border: 1px solid rgba(111, 45, 189, 0.18);
}

/* Booking summary spacing */
.summary {
  background: #f7f0ff;
  border-radius: 14px;
  padding: 14px;
  margin: 0;
}

/* Mobile: keep it tight & pretty */
@media (max-width: 700px) {
  .quote-main { padding: 30px 0; }
  .quote-container { padding: 18px; }
  .quote-form { gap: 12px; }
  .quote-form .form-section { padding: 12px; }
}

/* Optional: “add-ons as pills” (safe to keep even if not used yet) */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 900px) { .pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .pill-grid { grid-template-columns: 1fr; } }

.pill {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: center;

  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;

  cursor: pointer;
  user-select: none;

  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  box-shadow: 0 10px 22px rgba(15, 5, 40, 0.04);
}
.pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.pill-title {
  font-weight: 600;
  line-height: 1.2;
  color: #111;
}
.pill-price {
  font-weight: 700;
  color: #6f2dbd;
  white-space: nowrap;
}
.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 5, 40, 0.06);
}
.pill:has(input:checked) {
  border-color: rgba(111, 45, 189, 0.45);
  box-shadow: 0 0 0 4px rgba(111, 45, 189, 0.12);
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
}

/* Optional: pretty Yes/No toggle pills (safe if you add later) */
.toggle-group {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.toggle-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 999px;

  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;

  font-weight: 700;
  font-size: 0.95rem;
  color: #111;

  cursor: pointer;
  user-select: none;

  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  box-shadow: 0 10px 22px rgba(15, 5, 40, 0.04);
}

.toggle-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.toggle-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 5, 40, 0.06);
}

.toggle-pill:has(input:checked) {
  border-color: rgba(111, 45, 189, 0.55);
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
  box-shadow: 0 0 0 4px rgba(111, 45, 189, 0.12);
  color: #4c1c88;
}

@media (max-width: 700px) {
  .toggle-pill {
    padding: 11px 18px;
    font-size: 0.95rem;
  }
}

  