@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

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

.mu-wrap {
  font-family: 'Inter Tight',sans-serif;
  padding: 52px 28px 44px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* ══════════════════════════
   HERO SECTION
══════════════════════════ */
.mu-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 28px;
}

.mu-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.mu-eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: #FEF0E6;
  border-radius: 6px;
}
.mu-eyebrow-icon svg { width: 16px; height: 16px; }
.mu-eyebrow-sep {
  width: 5px; height: 5px;
  background: #C9621B;
  border-radius: 50%;
}
.mu-eyebrow-text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9621B;
}

.mu-title {
  font-family: 'Inter Tight', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.15;
  margin-bottom: 16px;
}
.mu-title-orange { color: #C9621B; }

.mu-desc {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 22px;
}

/* Alert bar */
.mu-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF8F3;
  border: 1.5px solid #F0D4BC;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  color: #3A3A3A;
}
.mu-alert-icon {
  width: 22px; height: 22px;
  background: #C9621B;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mu-alert-icon svg { width: 12px; height: 12px; }
.mu-alert strong { color: #C9621B; font-weight: 700; }

/* Hero CTA button */
.mu-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C9621B;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  letter-spacing: 0.01em;
}
.mu-hero-cta:hover { background: #a84e14; color: #fff; transform: translateY(-1px); }
.mu-hero-cta-icon {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mu-hero-cta-icon svg { width: 16px; height: 16px; }

/* Kalash image right */
.mu-hero-right {
  width: 360px;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: -20px;
}
.mu-kalash-img {
  width: 360px;
  height: 320px;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.10));
}

/* Decorative sparkles */
.mu-sparkle {
  position: absolute;
  color: #D4A062;
  opacity: 0.55;
  line-height: 1;
}
.mu-sparkle-1 { top: 0px; right: 40px; font-size: 26px; }
.mu-sparkle-2 { top: 40px; right: 4px; font-size: 16px; }
.mu-sparkle-3 { top: 80px; right: 18px; font-size: 12px; }

/* ══════════════════════════
   MONTH CARDS GRID
══════════════════════════ */
.mu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mu-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1.5px solid #EDE8E0;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.mu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #C9621B;
  border-radius: 14px 14px 0 0;
}

/* Card header */
.mu-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mu-card-icon {
  width: 44px; height: 44px;
  background: #FEF0E6;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mu-card-icon svg { width: 24px; height: 24px; }
.mu-card-month {
  font-family: 'Inter Tight', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
}

.mu-card-desc {
  font-size: 12.5px;
  color: #7A7A7A;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Date pills grid */
.mu-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  flex: 1;
}
.mu-date-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #2A2A2A;
}
.mu-date-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.mu-date-item.full { grid-column: 1 / -1; }

/* Available count */
.mu-available {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #1A7A3C;
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 1px solid #EDE8E0;
}
.mu-available svg { width: 16px; height: 16px; }

/* Card CTA button */
.mu-btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #C9621B;
  border: 1.5px solid #C9621B;
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.mu-btn:hover { background: #C9621B; color: #FFFFFF; }
.mu-btn-arrow { margin-left: 4px; }

/* ══════════════════════════
   HELP BAR
══════════════════════════ */
.mu-help {
  background: #FEF8F2;
  border: 1.5px solid #EDE0D0;
  border-radius: 14px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.mu-help-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mu-help-person-icon {
  width: 52px; height: 52px;
  background: #FEF0E6;
  border-radius: 50%;
  border: 2px solid #E8C4A0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mu-help-person-icon svg { width: 28px; height: 28px; }
.mu-help-title {
  font-family: 'Inter Tight', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 4px;
}
.mu-help-sub {
  font-size: 12.5px;
  color: #6A6A6A;
  line-height: 1.6;
  max-width: 200px;
}

.mu-help-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.mu-help-feature-icon {
  width: 38px; height: 38px;
  background: #FEF0E6;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mu-help-feature-icon svg { width: 20px; height: 20px; }
.mu-help-feature-text {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.45;
}

/* Consultation CTA solid button */
.mu-cta-btn {
  background: #C9621B;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 16px 22px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.15s;
}
.mu-cta-btn:hover { background: #a84e14; color: #fff; transform: translateY(-1px); }
.mu-cta-btn-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mu-cta-btn-icon svg { width: 18px; height: 18px; }
.mu-cta-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.mu-cta-sub {
  font-size: 11.5px;
  opacity: 0.85;
  font-weight: 400;
}

/* ══════════════════════════
   BOTTOM TRUST BAR
══════════════════════════ */
.mu-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid #EAE4DA;
}
.mu-ft-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #4A4A4A;
}
.mu-ft-item svg { width: 18px; height: 18px; }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 900px) {
  .mu-cards { grid-template-columns: 1fr 1fr; }
  .mu-help { grid-template-columns: 1fr 1fr; }
  .mu-cta-btn { grid-column: 1 / -1; justify-self: start; }
  .mu-hero { grid-template-columns: 1fr; }
  .mu-hero-right { display: none; }
}
@media (max-width: 560px) {
  .mu-cards { grid-template-columns: 1fr; }
  .mu-help { grid-template-columns: 1fr; }
  .mu-footer-trust { flex-direction: column; gap: 14px; }
  .mu-wrap { padding: 32px 16px 28px; }
}

.mu-title,.mu-card-month,.mu-help-title{font-family:'Inter Tight',sans-serif!important;font-weight:700!important;letter-spacing:-0.02em;}
.mu-footer-trust{display:none!important;}
