.topbanner{
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      background-image: url("../images/hero-bg.png");
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      border-bottom: none;
  }
    :root {
      --cream: #e6d0a8;
      --cream-soft: #efe0c0;
      --gold: #9a6e16;
      --gold-dark: #7f5711;
      --brown: #6b4812;
      --white: #ffffff;
      --text: #5c4318;
      --muted: #8c7449;
      --line: rgba(122, 86, 22, 0.22);
      --shadow: 0 18px 40px rgba(108, 76, 23, 0.12);
      --radius: 22px;
      --container: 1180px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.5;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 28px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      transition: 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(180deg, #ac7c1c 0%, #875c12 100%);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(122, 78, 11, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: linear-gradient(180deg, #b98621 0%, #7a5310 100%);
    }

    .btn-outline {
      background: var(--white);
      color: var(--gold-dark);
      border-color: rgba(154, 110, 22, 0.25);
    }

    .btn-outline:hover {
      transform: translateY(-2px);
      border-color: var(--gold);
    }

    .section-title {
      font-family: 'Cinzel', serif;
      text-align: center;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      color: var(--brown);
      letter-spacing: 0.03em;
      margin-bottom: 28px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      /* background: rgba(234, 214, 177, 0.92); */
      border-bottom: 1px solid rgba(154, 110, 22, 0.14);
    }

    .navbar {
      min-height: 108px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      padding: 18px 0 10px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
    }

    .logo-badge {
      width: 180px;
      /* height: 50px; */
      /* border-radius: 50%; */
      /* overflow: hidden; */
      /* background: var(--white); */
      /* border: 2px solid rgba(154, 110, 22, 0.18); */
      /* box-shadow: 0 8px 16px rgba(86, 56, 14, 0.12); */
    }

    .logo-text {
      font-family: 'Cinzel', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--brown);
      line-height: 1.1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 34px;
      font-size: 14px;
      color: #8b6525;
      background: linear-gradient(180deg, rgba(248,241,226,0.96) 0%, rgba(239,229,207,0.96) 100%);
      padding: 16px 30px;
      border-radius: 999px;
      border: 1px solid rgba(191,155,94,0.18);
      box-shadow: 0 6px 18px rgba(121, 88, 31, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
      width: fit-content;
      margin: 0 auto;
    }

    .nav-links a {
      position: relative;
      font-weight: 600;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(180deg, #d2a339 0%, #9a6e16 100%);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    .hero {
      position: relative;
      overflow: hidden;
      /* background: */
        /* radial-gradient(circle at 50% 20%, rgba(255,255,255,0.45), transparent 26%), */
        /* radial-gradient(circle at 32% 30%, rgba(255,255,255,0.18), transparent 18%), */
        /* linear-gradient(180deg, #efdcb5 0%, #e7cfa0 100%); */
    }

    .hero::before,
    .hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
      pointer-events: none;
    }

    .hero::before {
      width: 420px;
      height: 420px;
      left: 50%;
      top: -120px;
      transform: translateX(-50%);
    }

    .hero::after {
      width: 280px;
      height: 280px;
      right: 16%;
      top: 40px;
    }

    .hero-inner {
      min-height: 620px;
      display: grid;
      grid-template-columns: 320px 1fr 300px;
      align-items: end;
      gap: 28px;
      padding: 38px 0 26px;
      position: relative;
      z-index: 1;
    }

    .hero-figure-left img,
    .hero-figure-right img {
      object-fit: contain;
      margin-inline: auto;
      filter: drop-shadow(0 14px 26px rgba(88, 61, 18, 0.18));
    }

    .hero-content {
      text-align: center;
      align-self: center;
      padding-inline: 14px;
    }

    .hero-kicker {
      color: var(--gold-dark);
      font-size: 13px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.08;
      color: var(--brown);
      margin-bottom: 16px;
      text-transform: uppercase;
      text-shadow: 0 2px 0 rgba(255,255,255,0.35);
    }

    .hero-text {
      max-width: 720px;
      margin: 0 auto 28px;
      color: rgba(92, 67, 24, 0.85);
      font-size: 15px;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .kundali-section {
      padding: 76px 0 50px;
    }

    .kundali-card {
      background: rgba(255,255,255,0.72);
      border-radius: 26px;
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(154, 110, 22, 0.12);
      max-width: 1040px;
      margin: 0 auto;
    }

    .kundali-form {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .field,
    .field-full {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    label {
      font-size: 14px;
      font-weight: 600;
      color: var(--brown);
    }

    input,
    select,
    textarea {
      width: 100%;
      height: 48px;
      border-radius: 12px;
      border: 1px solid rgba(154, 110, 22, 0.18);
      background: rgba(255,255,255,0.85);
      padding: 0 14px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    textarea {
      min-height: 110px;
      padding: 14px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(154, 110, 22, 0.12);
    }

    .birth-grid {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .time-grid {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .form-action {
      grid-column: 1 / -1;
      margin-top: 8px;
    }

    .form-action .btn {
      width: 100%;
      min-height: 52px;
      font-size: 15px;
      letter-spacing: 0.18em;
    }

    .services {
      background: linear-gradient(180deg, #9c701b 0%, #886017 100%);
      color: var(--white);
      padding: 70px 0;
    }

    .services .section-title {
      color: #fff8eb;
      margin-bottom: 34px;
    }

    .service-list {
      display: grid;
      gap: 26px;
    }

    .service-item {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 20px;
      padding-bottom: 22px;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .service-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .service-copy h3 {
      font-family: 'Cinzel', serif;
      font-size: 23px;
      margin-bottom: 8px;
      color: #fff9ef;
    }

    .service-copy p {
      color: rgba(255,255,255,0.8);
      max-width: 720px;
      margin-bottom: 14px;
      font-size: 14px;
    }

    .service-meta {
      display: grid;
      gap: 14px;
      justify-items: end;
      min-width: 170px;
    }

    .price-tag {
      min-width: 122px;
      text-align: center;
      background: var(--white);
      color: var(--gold-dark);
      padding: 10px 20px;
      border-radius: 12px;
      font-size: 26px;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      font-family: 'Cinzel', serif;
    }

    .testimonials {
      padding: 80px 0;
    }

    .testimonial-shell {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 44px 0;
    }

    .testimonial-card {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      align-items: center;
      gap: 48px;
    }

    .testimonial-card h3 {
      font-family: 'Cinzel', serif;
      font-size: 28px;
      color: var(--brown);
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .testimonial-card p {
      font-size: 15px;
      color: rgba(92, 67, 24, 0.92);
      margin-bottom: 18px;
      max-width: 620px;
    }

    .testimonial-author {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .testimonial-photo {
      justify-self: end;
      max-width: 330px;
      width: 100%;
      border: 8px solid rgba(255,255,255,0.55);
      box-shadow: var(--shadow);
    }

    .dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .dot {
      width: 36px;
      height: 12px;
      border-radius: 999px;
      background: rgba(154, 110, 22, 0.26);
    }

    .dot.active {
      background: var(--gold);
    }

    .footer {
      background: linear-gradient(180deg, #98701b 0%, #815a13 100%);
      color: #f8ecda;
      padding: 58px 0 20px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      align-items: start;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .footer h3,
    .footer h4 {
      font-family: 'Cinzel', serif;
      letter-spacing: 0.04em;
    }

    .footer h3 {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .footer p {
      color: rgba(248,236,218,0.82);
      font-size: 14px;
      max-width: 520px;
    }

    .newsletter-form {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.9);
      border-radius: 999px;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
      min-height: 52px;
    }

    .newsletter-form input {
      border: none;
      background: transparent;
      height: 52px;
      border-radius: 0;
      color: #6b4812;
    }

    .newsletter-form button {
      border: none;
      min-width: 130px;
      height: 52px;
      background: var(--cream-soft);
      color: var(--brown);
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.06em;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      padding-top: 28px;
      padding-bottom: 18px;
    }

    .footer-links h4 {
      font-size: 18px;
      margin-bottom: 14px;
      color: #fff5e8;
    }

    .footer-links a {
      display: block;
      color: rgba(248,236,218,0.82);
      font-size: 14px;
      margin-bottom: 10px;
      transition: 0.25s ease;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .copyright {
      padding-top: 18px;
      text-align: center;
      color: rgba(248,236,218,0.75);
      font-size: 13px;
      border-top: 1px solid rgba(255,255,255,0.1);
	  
    }

    @media (max-width: 1100px) {
      .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
        padding-top: 32px;
      }

      .hero-figure-left,
      .hero-figure-right {
        max-width: 320px;
        margin: 0 auto;
      }

      .testimonial-card,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .testimonial-photo {
        justify-self: start;
      }

      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
      }

      .nav-links {
        gap: 14px;
      }

      .kundali-form,
      .birth-grid,
      .time-grid,
      .service-item,
      .footer-links {
        grid-template-columns: 1fr;
      }

      .service-meta {
        justify-items: start;
      }

      .newsletter-form {
        flex-direction: column;
        border-radius: 18px;
      }

      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
      }

      .hero-title {
        font-size: 34px;
      }

      .section-title {
        font-size: 28px;
      }

      .kundali-card {
        padding: 18px;
      }
    }
	
	.testimonials {
  padding: 60px 0;
  background: #f8f8f8;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-shell {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
  flex: 1;
}

.testimonial-content h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #222;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.testimonial-photo {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dots {
  text-align: center;
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #6a8f3b;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 25px;
  }

  .testimonial-photo {
    width: 220px;
    height: 220px;
  }

  .testimonial-content h3 {
    font-size: 22px;
  }

  .testimonial-content p {
    font-size: 15px;
  }
}

 /* ── HAMBURGER ── */
    .hamburger-btn {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px; z-index: 50;
    }
    .hamburger-btn span { display: block; width: 26px; height: 2px; background: var(--brown); border-radius: 2px; transition: 0.3s; }
    .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; }
    .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(230,208,168,0.98); backdrop-filter: blur(12px);
      z-index: 40; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-family: 'Cinzel',serif; font-size: 18px; font-weight: 600; color: var(--brown); padding: 14px 32px; letter-spacing: 0.06em; text-decoration: none; transition: color 0.2s; }
    .mobile-nav a:hover { color: var(--gold); }

    /* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(180deg, #eedcb4 0%, #e6d0a8 100%);
      text-align: center;
      padding: 60px 24px 48px;
      border-bottom: 1px solid rgba(154,110,22,0.15);
    }
    .page-hero .kicker {
      font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px;
    }
    .page-hero h1 {
      font-family: 'Cinzel', serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700; color: var(--brown);
      letter-spacing: 0.04em; line-height: 1.15;
    }
    .page-hero p {
      color: var(--muted); font-size: 15px;
      margin-top: 10px; max-width: 520px; margin-inline: auto;
    }

    /* ── BOOKING LAYOUT ── */
    .booking-wrapper {
      max-width: 880px;
      margin: 0 auto;
      padding: 52px 20px 80px;
    }

    /* ── STEP INDICATOR ── */
    .steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 44px;
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      position: relative;
    }
    .step-num {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.7);
      border: 2px solid rgba(154,110,22,0.25);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 14px; font-weight: 700;
      color: var(--muted);
      transition: 0.3s;
      z-index: 1;
    }
    .step.active .step-num {
      background: linear-gradient(180deg, #ac7c1c 0%, #875c12 100%);
      color: #fff; border-color: transparent;
      box-shadow: 0 6px 16px rgba(122,78,11,0.28);
    }
    .step.done .step-num {
      background: #6b9b3b; color: #fff; border-color: transparent;
    }
    .step-label {
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted); white-space: nowrap;
    }
    .step.active .step-label { color: var(--gold-dark); }
    .step-line {
      width: 80px; height: 2px;
      background: rgba(154,110,22,0.18);
      margin: 0 8px;
      margin-bottom: 22px;
      flex-shrink: 0;
    }
    .step-line.done { background: var(--gold); }

    /* ── CARD ── */
    .booking-card {
      background: rgba(255,255,255,0.75);
      border-radius: 24px;
      border: 1px solid rgba(154,110,22,0.14);
      box-shadow: 0 18px 48px rgba(108,76,23,0.1);
      padding: 36px 32px;
      margin-bottom: 24px;
    }

    .card-title {
      font-family: 'Cinzel', serif;
      font-size: 18px; font-weight: 700;
      color: var(--brown);
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(154,110,22,0.14);
      display: flex; align-items: center; gap: 10px;
    }
    .card-title svg { flex-shrink: 0; }

    /* ── SERVICE SELECT ── */
    .service-select-wrap { position: relative; }
    .service-select-wrap select {
      appearance: none;
      -webkit-appearance: none;
      padding-right: 44px;
      cursor: pointer;
      background: rgba(255,255,255,0.9);
      font-weight: 500;
    }
    .service-select-wrap::after {
      content: '▾';
      position: absolute;
      right: 16px; top: 50%;
      transform: translateY(-50%);
      color: var(--gold-dark);
      font-size: 14px;
      pointer-events: none;
    }

    .selected-service-info {
      display: none;
      background: linear-gradient(135deg, rgba(174,130,40,0.1), rgba(122,88,14,0.06));
      border: 1px solid rgba(154,110,22,0.2);
      border-radius: 14px;
      padding: 16px 20px;
      margin-top: 14px;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
    }
    .selected-service-info.visible { display: flex; }
    .sel-name { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: var(--brown); }
    .sel-desc { font-size: 13px; color: var(--muted); margin-top: 3px; }
    .sel-price {
      font-family: 'Cinzel', serif;
      font-size: 24px; font-weight: 700; color: var(--gold-dark);
      background: #fff;
      padding: 8px 18px; border-radius: 12px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(108,76,23,0.1);
    }

    /* ── DATE PICKER ── */
    .date-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    input[type="date"] { cursor: pointer; }

    /* ── TIME SLOTS ── */
    .slots-section { margin-top: 0; }
    .slots-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px; flex-wrap: wrap; gap: 10px;
    }
    .slots-legend {
      display: flex; gap: 16px; align-items: center;
    }
    .legend-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: var(--muted); font-weight: 500;
    }
    .legend-dot {
      width: 12px; height: 12px; border-radius: 50%;
    }
    .legend-dot.available { background: #6b9b3b; }
    .legend-dot.booked { background: rgba(154,110,22,0.25); }
    .legend-dot.selected { background: linear-gradient(180deg, #ac7c1c, #875c12); }

    .slots-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .slot {
      padding: 12px 8px;
      border-radius: 12px;
      border: 2px solid transparent;
      text-align: center;
      cursor: pointer;
      transition: 0.2s;
      font-size: 13px;
      font-weight: 600;
      background: rgba(107,155,59,0.1);
      border-color: rgba(107,155,59,0.3);
      color: #4a7a1e;
    }
    .slot:hover:not(.booked) {
      background: rgba(107,155,59,0.2);
      transform: translateY(-2px);
    }
    .slot.selected {
      background: linear-gradient(180deg, #ac7c1c 0%, #875c12 100%);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 6px 16px rgba(122,78,11,0.28);
      transform: translateY(-2px);
    }
    .slot.booked {
      background: rgba(154,110,22,0.08);
      border-color: rgba(154,110,22,0.15);
      color: rgba(92,67,24,0.4);
      cursor: not-allowed;
      text-decoration: line-through;
    }
    .slot .slot-time { font-size: 13px; font-weight: 700; }
    .slot .slot-status { font-size: 10px; font-weight: 500; margin-top: 2px; letter-spacing: 0.08em; opacity: 0.75; }

    .slots-placeholder {
      text-align: center;
      padding: 32px;
      color: var(--muted);
      font-size: 14px;
      border: 2px dashed rgba(154,110,22,0.2);
      border-radius: 14px;
    }

    /* ── PERSONAL DETAILS ── */
    .form-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .field-span2 { grid-column: span 2; }
    .field-span3 { grid-column: 1 / -1; }

    /* ── BOOKING SUMMARY ── */
    .booking-summary {
      background: linear-gradient(135deg, rgba(174,130,40,0.08), rgba(122,88,14,0.04));
      border: 1px solid rgba(154,110,22,0.18);
      border-radius: 16px;
      padding: 20px 22px;
      margin-bottom: 20px;
    }
    .summary-title {
      font-family: 'Cinzel', serif;
      font-size: 13px; font-weight: 700;
      color: var(--brown); letter-spacing: 0.08em;
      text-transform: uppercase; margin-bottom: 14px;
    }
    .summary-rows { display: flex; flex-direction: column; gap: 8px; }
    .summary-row {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 14px;
    }
    .summary-row .s-label { color: var(--muted); font-weight: 500; }
    .summary-row .s-value { font-weight: 600; color: var(--text); }
    .summary-row.total {
      padding-top: 12px;
      border-top: 1px solid rgba(154,110,22,0.18);
      font-size: 16px;
    }
    .summary-row.total .s-label { font-family: 'Cinzel', serif; font-weight: 700; color: var(--brown); }
    .summary-row.total .s-value { font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold-dark); font-size: 20px; }

    /* ── SUBMIT BTN ── */
    .submit-btn { width: 100%; min-height: 56px; font-size: 16px; letter-spacing: 0.16em; border: none; }

    /* ── PAYMENT MODAL ── */
    .payment-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(60, 40, 10, 0.55);
      backdrop-filter: blur(6px);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .payment-overlay.open { display: flex; }

    .payment-modal {
      background: #fff;
      border-radius: 24px;
      max-width: 500px;
      width: 100%;
      padding: 36px 32px;
      box-shadow: 0 32px 80px rgba(40,24,0,0.22);
      animation: modalIn 0.3s ease;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: translateY(24px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .modal-close {
      position: absolute; top: 18px; right: 20px;
      background: none; border: none; cursor: pointer;
      font-size: 22px; color: var(--muted); line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--brown); }

    .modal-title {
      font-family: 'Cinzel', serif;
      font-size: 20px; font-weight: 700; color: var(--brown);
      margin-bottom: 6px;
    }
    .modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

    .payment-amount {
      background: linear-gradient(180deg, #9c701b 0%, #7a5410 100%);
      border-radius: 14px;
      padding: 18px;
      text-align: center;
      margin-bottom: 24px;
      color: #fff;
    }
    .payment-amount .amt-label { font-size: 12px; letter-spacing: 0.16em; opacity: 0.8; text-transform: uppercase; margin-bottom: 4px; }
    .payment-amount .amt-value { font-family: 'Cinzel', serif; font-size: 36px; font-weight: 700; }
    .payment-amount .amt-service { font-size: 13px; opacity: 0.75; margin-top: 4px; }

    .payment-methods { display: flex; flex-direction: column; gap: 12px; }
    .pay-method {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 18px;
      border: 2px solid rgba(154,110,22,0.18);
      border-radius: 14px;
      cursor: pointer;
      transition: 0.2s;
      background: rgba(255,255,255,0.8);
    }
    .pay-method:hover { border-color: var(--gold); background: rgba(255,248,230,0.8); }
    .pay-method.active { border-color: var(--gold-dark); background: rgba(174,130,40,0.08); }

    .pay-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 18px;
    }
    .pay-icon.upi { background: #f0f7e6; color: #4a8c1a; }
    .pay-icon.card { background: #e8f0ff; color: #1a4a8c; }
    .pay-icon.netbanking { background: #fff0e6; color: #8c4a1a; }
    .pay-icon.wallet { background: #f0e6ff; color: #5a1a8c; }

    .pay-info { flex: 1; }
    .pay-name { font-weight: 700; font-size: 15px; color: var(--text); }
    .pay-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

    .pay-radio {
      width: 18px; height: 18px;
      border-radius: 50%;
      border: 2px solid rgba(154,110,22,0.3);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: 0.2s;
    }
    .pay-method.active .pay-radio {
      border-color: var(--gold-dark);
      background: var(--gold-dark);
    }
    .pay-method.active .pay-radio::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
    }

    .pay-cta {
      width: 100%;
      margin-top: 20px;
      min-height: 52px;
      font-size: 15px;
      letter-spacing: 0.14em;
      border: none;
    }

    /* SUCCESS STATE */
    .success-view {
      display: none;
      text-align: center;
      padding: 20px 0;
    }
    .success-view.visible { display: block; }
    .success-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(180deg, #7bb83a 0%, #4a8c1a 100%);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 8px 24px rgba(74,140,26,0.3);
    }
    .success-view h3 {
      font-family: 'Cinzel', serif;
      font-size: 22px; font-weight: 700; color: var(--brown);
      margin-bottom: 10px;
    }
    .success-view p { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .booking-ref {
      display: inline-block;
      background: rgba(154,110,22,0.1);
      border: 1px solid rgba(154,110,22,0.25);
      border-radius: 8px;
      padding: 8px 20px;
      font-family: 'Cinzel', serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--gold-dark);
      margin: 14px 0 20px;
      letter-spacing: 0.1em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .navbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; min-height: auto; }
      .nav-links { display: none; }
      .navbar > .btn.desk-only { display: none; }
      .hamburger-btn { display: flex; }
      .booking-card { padding: 22px 18px; }
      .form-grid-3 { grid-template-columns: 1fr; }
      .field-span2, .field-span3 { grid-column: 1; }
      .date-row { grid-template-columns: 1fr; }
      .slots-grid { grid-template-columns: repeat(3, 1fr); }
      .steps { gap: 0; }
      .step-line { width: 40px; }
      .selected-service-info { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .slots-grid { grid-template-columns: repeat(2, 1fr); }
      .payment-modal { padding: 24px 18px; }
      .step-label { display: none; }
    }