/* ==============================================
   MOTHER'S DAY 2026 — Landing Page Styles
   ============================================== */

/* --- Animations --- */
@keyframes md-fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes md-shine-slide {
  0%       { transform: translateX(-100%); }
  60%, 100% { transform: translateX(140%); }
}
@keyframes md-float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
@keyframes md-pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 79, 147, 0.45); }
  50%       { box-shadow: 0 0 0 14px rgba(201, 79, 147, 0); }
}
@keyframes md-petal-drift {
  0%   { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  20%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(80px) rotate(30deg); }
}

/* --- Hero Section --- */
.md-hero {
  position: relative;
  background: linear-gradient(155deg, #fff8fd 0%, #fde8f3 45%, #f7ceea 100%);
  padding: 0;
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.md-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  animation: md-fadeInUp 0.9s ease both;
}
.md-hero .md-hero-inner {
  background: rgba(202, 79, 147, 0.5);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 44px 60px;
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(217, 108, 168, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.65);
}
@media (max-width: 640px) {
  .md-hero .md-hero-inner { padding: 32px 28px; border-radius: 20px; }
}

/* --- Hero text section (below hero image) --- */
.md-hero-text-section {
  background: linear-gradient(180deg, #fff8fd 0%, #fde8f3 55%, #f7ceea 100%);
  padding: 72px 20px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* --- Full-width parallax image section --- */
.md-parallax-section {
  width: 100%;
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: top center;
  display: block;
}
@media (max-width: 768px) {
  .md-parallax-section { background-attachment: scroll; height: 280px; }
}

/* --- Full-width image utility (true edge-to-edge, breaks out of parent padding) --- */
.md-full-width-img {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  border: none;
  overflow: hidden;
}
.md-full-width-img img {
  width: 100%;
  height: auto;
  display: block;
}
.md-gift-section,
.md-checklist-section {
  overflow-x: hidden;
}

/* --- Gift portrait image (centered, full natural size) --- */
.md-gift-portrait {
  max-width: 480px;
  margin: 48px auto 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 60px rgba(217, 108, 168, 0.22);
  display: block;
}
.md-gift-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.md-hero-logo {
  margin-bottom: 28px;
}
.md-hero-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(217, 108, 168, 0.18));
}

.md-hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: #850a85;
  line-height: 1.05;
  margin: 0 0 8px;
  text-shadow: 0 3px 24px rgba(217, 108, 168, 0.28);
  letter-spacing: 0.5px;
}

.md-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #222222;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
}

.md-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #888;
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.md-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D96CA8 0%, #C94F93 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 60px;
  margin-bottom: 14px;
  box-shadow: 0 8px 32px rgba(201, 79, 147, 0.38);
  animation: md-pulse-ring 2.8s infinite;
  letter-spacing: 0.4px;
}

.md-offer-amount {
  font-size: 1.55em;
  font-weight: 900;
  line-height: 1;
}

.md-addon-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #C94F93;
  margin-bottom: 36px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.md-addon-note span {
  background: #F9DDEB;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 4px;
  display: inline-block;
}

/* --- Buttons --- */
.md-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D96CA8 0%, #C94F93 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 46px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(201, 79, 147, 0.42);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  letter-spacing: 0.3px;
}
.md-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 79, 147, 0.55);
  color: #fff;
  text-decoration: none;
}

.md-btn-outline {
  display: inline-block;
  background: transparent;
  color: #D96CA8;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 60px;
  text-decoration: none;
  border: 2.5px solid #D96CA8;
  transition: all 0.22s ease;
  letter-spacing: 0.2px;
}
.md-btn-outline:hover {
  background: #D96CA8;
  color: #fff;
  text-decoration: none;
}

.md-btn-white {
  display: inline-block;
  background: #fff;
  color: #C94F93;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
  transition: all 0.22s ease;
  letter-spacing: 0.3px;
}
.md-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.2);
  color: #C94F93;
  text-decoration: none;
}

/* --- Floral Corner Decorations --- */
.md-floral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.52;
  transition: opacity 0.3s;
}
.md-floral-tl { top: -10px;  left: -10px;  width: clamp(150px, 22vw, 260px); }
.md-floral-tr { top: -10px;  right: -10px; width: clamp(150px, 22vw, 260px); transform: scaleX(-1); }
.md-floral-bl { bottom: -10px; left: -10px;  width: clamp(110px, 15vw, 190px); transform: scaleY(-1); }
.md-floral-br { bottom: -10px; right: -10px; width: clamp(110px, 15vw, 190px); transform: scale(-1, -1); }

/* Floating petal dots */
.md-petal {
  position: absolute;
  border-radius: 50% 20% 50% 20%;
  opacity: 0;
  z-index: 1;
  animation: md-petal-drift linear infinite;
}

/* --- Shared Section Styles --- */
.md-section { padding: 80px 20px; }
.md-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.md-center  { text-align: center; }

.md-section-label {
  display: inline-block;
  background: #F9DDEB;
  color: #D96CA8;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.md-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #222222;
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.25;
}

.md-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.03rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* --- Offer Details Section --- */
.md-offer-section {
  background: #fff;
  padding: 80px 20px;
}

.md-offer-box {
  background: linear-gradient(145deg, #fff8fd 0%, #fde8f3 100%);
  border: 2.5px solid #F4B6D3;
  border-radius: 28px;
  padding: 52px 48px;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(217, 108, 168, 0.1);
}
.md-offer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  animation: md-shine-slide 4.5s ease-in-out infinite 1s;
  pointer-events: none;
}

.md-offer-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #222;
  margin: 0 0 20px;
  font-weight: 700;
}

.md-offer-box p {
  font-family: 'Inter', sans-serif;
  font-size: 1.03rem;
  color: #555;
  line-height: 1.82;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.md-offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.md-offer-deadline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D96CA8, #C94F93);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.md-limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #C94F93;
  border: 2px solid #E9A4C7;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
}

/* --- Hero Quote Form Section --- */
.md-quote-section {
  background: #fff;
  padding: 80px 20px 88px;
}
.md-quote-section .md-container {
  max-width: 980px;
}
.md-quote-section .hero-quote-form {
  background: linear-gradient(145deg, #fff8fd 0%, #fde8f3 100%);
  border: 2px solid #F4B6D3;
  border-radius: 28px;
  padding: 40px 32px 36px;
  box-shadow: 0 12px 50px rgba(217, 108, 168, 0.16);
  position: relative;
}
.md-quote-section .hero-quote-form .form-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 18px;
}
.md-quote-section .hero-quote-form .form-group {
  flex: 1 1 220px;
  margin-bottom: 14px;
}
.md-quote-section .hero-quote-form .input-icon {
  position: relative;
}
.md-quote-section .hero-quote-form .input-icon .icon {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px;
  height: 18px;
  color: #C94F93;
}
.md-quote-section .hero-quote-form input,
.md-quote-section .hero-quote-form select,
.md-quote-section .hero-quote-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1.5px solid #F4B6D3;
  padding: 14px 16px 14px 46px !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: #333;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 12px rgba(217, 108, 168, 0.06);
  min-height: 54px;
}
.md-quote-section .hero-quote-form textarea {
  min-height: 96px;
  padding-top: 14px;
}
.md-quote-section .hero-quote-form input:focus,
.md-quote-section .hero-quote-form select:focus,
.md-quote-section .hero-quote-form textarea:focus {
  outline: none;
  border-color: #C94F93;
  box-shadow: 0 0 0 2px rgba(201, 79, 147, 0.18);
}
.md-quote-section .hero-quote-form .btn-hero-cta {
  margin-top: 10px;
  background: linear-gradient(135deg, #D96CA8 0%, #C94F93 100%);
  color: #fff;
  border: none;
  border-radius: 60px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201, 79, 147, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.md-quote-section .hero-quote-form .btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 79, 147, 0.5);
}
.md-quote-section .hero-quote-form .btn-hero-cta .arrow {
  margin-left: 4px;
}
.md-quote-section .form-micro-trust {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #555;
}
.md-quote-section .form-micro-trust li {
  display: flex;
  align-items: center;
}
.md-quote-section .form-micro-trust svg {
  margin-right: 6px;
}
@media (max-width: 768px) {
  .md-quote-section {
    padding: 64px 16px 72px;
  }
  .md-quote-section .hero-quote-form {
    padding: 28px 22px 30px;
    width: 100%;
    box-sizing: border-box;
  }
  .md-quote-section .hero-quote-form .form-row {
    flex-direction: column;
  }
  .md-quote-section .hero-quote-form .form-group {
    flex: 1 1 auto;
    margin-bottom: 12px;
  }
  .md-quote-section .hero-quote-form .input-icon .icon {
    left: 14px !important;
  }
  .md-quote-section .hero-quote-form .btn-hero-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- Add-On Cards --- */
.md-addons-section {
  background: linear-gradient(180deg, #fdf5fb 0%, #fff 100%);
  padding: 80px 20px;
}

.md-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  max-width: 740px;
  margin: 0 auto;
}

.md-addon-card {
  background: #fff;
  border: 2px solid #F4B6D3;
  border-radius: 26px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 6px 32px rgba(217, 108, 168, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.md-addon-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #D96CA8, #F4B6D3, #C94F93);
  border-radius: 4px 4px 0 0;
}
.md-addon-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 55px rgba(217, 108, 168, 0.22);
}

.md-addon-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #fde8f3, #F4B6D3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2.1rem;
  box-shadow: 0 4px 18px rgba(217, 108, 168, 0.2);
}

.md-addon-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}
.md-addon-card p {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 0.94rem;
  line-height: 1.72;
}

.md-addon-free {
  display: inline-block;
  background: #F9DDEB;
  color: #C94F93;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

/* --- Why Moms Love This --- */
.md-why-section {
  background: #fff;
  padding: 80px 20px;
}

.md-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.md-why-card {
  background: linear-gradient(150deg, #fff8fd, #fde8f3);
  border-radius: 22px;
  padding: 36px 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1.5px solid rgba(244, 182, 211, 0.5);
}
.md-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(217, 108, 168, 0.17);
}

.md-why-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #D96CA8, #C94F93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 5px 18px rgba(217, 108, 168, 0.32);
}
.md-why-icon svg { width: 26px; height: 26px; }

.md-why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
  font-weight: 700;
}
.md-why-card p {
  font-family: 'Inter', sans-serif;
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* --- Cleaning Details Section --- */
.md-details-section {
  background: linear-gradient(160deg, #fff5fb 0%, #fafafa 100%);
  padding: 90px 20px;
}

.md-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.md-details-img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 60px rgba(217, 108, 168, 0.18);
  position: relative;
}
.md-details-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}
.md-details-img-ring {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 3px solid rgba(217, 108, 168, 0.18);
  pointer-events: none;
}

.md-details-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #222;
  margin: 0 0 14px;
  font-weight: 700;
}
.md-details-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #D96CA8;
  margin: 24px 0 8px;
  font-weight: 600;
}
.md-details-text p {
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.82;
  margin-bottom: 12px;
  font-size: 0.97rem;
}

.md-cleaning-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.md-cleaning-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 9px 0;
  font-family: 'Inter', sans-serif;
  color: #444;
  font-size: 0.94rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(244, 182, 211, 0.5);
}
.md-cleaning-list li:last-child { border-bottom: none; }

.md-list-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, #D96CA8, #C94F93);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.md-list-check svg { width: 11px; height: 11px; }

/* --- Two-column text section --- */
.md-text-section {
  background: #fff;
  padding: 80px 20px;
}
.md-text-inner {
  max-width: 840px;
  margin: 0 auto;
}
.md-text-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #222;
  margin: 0 0 14px;
  font-weight: 700;
}
.md-text-inner p {
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.85;
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}

/* --- Gift / lifestyle section --- */
.md-gift-section {
  background: linear-gradient(155deg, #fff8fd 0%, #fde8f3 100%);
  padding: 90px 20px 0;
}
.md-gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.md-gift-img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 60px rgba(217, 108, 168, 0.18);
}
.md-gift-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.md-gift-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #222;
  margin: 0 0 16px;
  font-weight: 700;
}
.md-gift-text p {
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.md-gift-quote {
  background: linear-gradient(135deg, #fde8f3, #F9DDEB);
  border-left: 4px solid #D96CA8;
  border-radius: 0 16px 16px 0;
  padding: 18px 22px;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #D96CA8;
  font-style: italic;
  line-height: 1.6;
}

/* --- Areas section --- */
.md-areas-section {
  background: #fff;
  padding: 70px 20px;
}
.md-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.md-area-pill {
  background: #F9DDEB;
  color: #C94F93;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

/* --- Booking CTA Section --- */
.md-cta-section {
  background: linear-gradient(135deg, #D96CA8 0%, #C94F93 55%, #b0348a 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.md-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='26' cy='26' r='6'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.md-cta-floral-tl { top: -15px; left: -15px; opacity: 0.18; }
.md-cta-floral-br { bottom: -15px; right: -15px; opacity: 0.18; transform: scale(-1,-1); }

.md-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.md-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
}
.md-cta-section p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 36px;
  line-height: 1.75;
}
.md-cta-note {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-top: 16px;
}

/* --- Offer section: image side-by-side --- */
.md-offer-flex {
  display: flex;
  gap: 52px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.md-offer-img-side {
  flex: 0 0 340px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 60px rgba(217, 108, 168, 0.2);
}
.md-offer-img-side img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .md-offer-flex { flex-direction: column; gap: 32px; }
  .md-offer-img-side { flex: none; width: 100%; }
  .md-offer-img-side img { height: 260px; }
}

/* --- Centered featured image (add-ons, why-moms) --- */
.md-featured-img {
  margin: 0 auto 40px;
  max-width: 840px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 45px rgba(217, 108, 168, 0.15);
}
.md-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Checklist with side image --- */
.md-checklist-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.md-checklist-side-img {
  flex: 0 0 280px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(217, 108, 168, 0.18);
  align-self: stretch;
}
.md-checklist-side-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .md-checklist-layout { flex-direction: column; }
  .md-checklist-side-img { flex: none; width: 100%; }
  .md-checklist-side-img img { min-height: 220px; height: 220px; }
}

/* --- More Than Clean: split layout --- */
.md-promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.md-promise-img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 60px rgba(217, 108, 168, 0.18);
}
.md-promise-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.md-promise-text { text-align: left; }
.md-promise-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #222;
  margin: 0 0 14px;
  font-weight: 700;
}
.md-promise-text p {
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.85;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .md-promise-grid { grid-template-columns: 1fr; gap: 36px; }
  .md-promise-img { order: -1; }
  .md-promise-img img { height: 260px; }
}

/* --- Service areas: split layout --- */
.md-areas-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.md-areas-content { text-align: left; }
.md-areas-side-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(217, 108, 168, 0.18);
}
.md-areas-side-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 900px) {
  .md-areas-layout { grid-template-columns: 1fr; }
  .md-areas-side-img { display: none; }
  .md-areas-content { text-align: center; }
}

/* --- Standalone Bathroom Checklist Section --- */
.md-checklist-section {
  background: linear-gradient(180deg, #fff 0%, #fdf5fb 100%);
  padding-top: 0 !important;
}

.md-checklist-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}

.md-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1.5px solid rgba(244, 182, 211, 0.55);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 3px 18px rgba(217, 108, 168, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.md-checklist-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(217, 108, 168, 0.15);
}

.md-checklist-item .md-list-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  margin-top: 2px;
}
.md-checklist-item .md-list-check svg { width: 13px; height: 13px; }

.md-checklist-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #D96CA8;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}
.md-checklist-item span > span,
.md-checklist-item > span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.md-checklist-result {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #D96CA8;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .md-checklist-grid { grid-template-columns: 1fr; }
}

/* --- Disclaimer --- */
.md-disclaimer {
  background: #fff5fb;
  border-top: 1.5px solid #F4B6D3;
  padding: 22px 20px;
  text-align: center;
}
.md-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Schema-friendly heading utility --- */
.md-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .md-details-grid, .md-gift-grid { grid-template-columns: 1fr; gap: 40px; }
  .md-details-img, .md-gift-img { order: -1; }
}
@media (max-width: 640px) {
  .md-hero  { padding: 0; min-height: 35vh; }
  .md-offer-box { padding: 32px 22px; }
  .md-floral-tl, .md-floral-tr { width: 110px; }
  .md-floral-bl, .md-floral-br { width: 85px; }
  .md-offer-tags { flex-direction: column; align-items: flex-start; }
  .md-addons-grid { grid-template-columns: 1fr; }
  .md-why-grid { grid-template-columns: 1fr 1fr; }
  .md-section { padding: 60px 16px; }
}
@media (max-width: 420px) {
  .md-why-grid { grid-template-columns: 1fr; }
}
