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

/* =========================
   RESET / GLOBAL
========================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
  float: none !important;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  z-index: 1000;
}

.has-hero-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.has-hero-header .header-inner {
  border: none !important;
  box-shadow: none !important;
}

.has-hero-header .site-header::before,
.has-hero-header .site-header::after,
.has-hero-header .header-inner::before,
.has-hero-header .header-inner::after {
  display: none !important;
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 120px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav > a,
.menu-item > a {
  color: #000;
  font-weight: 700;
  font-size: 15px;
}

.nav > a:hover,
.menu-item > a:hover {
  color: #e91e63;
}

/* IMPORTANT: HERO WHITE TEXT ONLY FOR TOP LEVEL LINKS */
.has-hero-header .nav > a,
.has-hero-header .nav > .menu-item > a {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.has-hero-header .nav > a:hover,
.has-hero-header .nav > .menu-item > a:hover {
  color: #fff !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #e91e63;
  color: #fff;
  font-size: 24px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
}

.has-hero-header .menu-toggle {
  background: rgba(233,30,99,0.92);
  color: #fff;
}

/* =========================
   DROPDOWN
========================= */
.menu-item {
  position: relative;
}

.has-dropdown > a::after {
    content: "v";
    font-size: 12px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff !important;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 16px;
  min-width: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-title {
  font-weight: 700;
  color: #e91e63 !important;
  margin-bottom: 6px;
  text-shadow: none !important;
}

.dropdown a,
.has-hero-header .dropdown a {
  color: #333 !important;
  font-weight: 500;
  padding: 6px 0;
  text-shadow: none !important;
}

.dropdown a:hover,
.has-hero-header .dropdown a:hover {
  color: #e91e63 !important;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #ff4fa7;
  color: #fff;
  padding: 20px 0;
  margin-top: 60px;
}

.footer-simple {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.footer-copy {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin: 0;
}

/* =========================
   BUTTONS
========================= */
.ms-btn,
.ms-btn-primary,
.ms-btn-secondary,
.ms-btn-white {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
  text-align: center;
}

.ms-btn:hover,
.ms-btn-primary:hover,
.ms-btn-secondary:hover,
.ms-btn-white:hover {
  transform: translateY(-2px);
}

.ms-btn {
  border: none;
  cursor: pointer;
}

.ms-btn-primary {
  background: linear-gradient(135deg, #ff4f9a, #e91e63);
  color: #fff;
  box-shadow: 0 10px 24px rgba(233, 30, 99, 0.22);
}

.ms-btn-secondary {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
}

.ms-btn-white {
  background: #fff;
  color: #e91e63;
}

/* =========================
   PAGE / ANIMATION
========================= */
.ms-home,
.ms-home * {
  box-sizing: border-box;
}

.ms-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.ms-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FAQ HERO
========================= */
.faq-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,.28), rgba(255,255,255,.08)),
    url('../images/home/events/FAQ.png') no-repeat center/cover;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(135,220,255,.10), rgba(255,182,212,.10));
}

.faq-hero-card {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.faq-hero h1 {
  margin: 0 0 12px;
  font-size: 52px;
  line-height: 1.05;
  color: #e91e63;
  font-family: 'Poppins', sans-serif;
}

.faq-hero p {
  margin: 0 auto;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

/* =========================
   MAIN HERO
========================= */
.ms-hero {
  position: relative;
  min-height: 650px;
  height: 650px;
  display: flex;
  align-items: flex-end;
  background: url('/assets/images/home/events/weddings-engagements.jpeg') center/cover no-repeat;
  padding-top: 135px;
  margin-top: 0 !important;
  border-top: none !important;
}

.ms-hero::before {
  display: none !important;
}

.ms-hero-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.ms-hero-content {
  max-width: 720px;
  margin-bottom: 60px;
  color: #fff;
}

.ms-topline {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.ms-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 15px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.ms-hero-copy {
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 720px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.ms-hero-urgency {
  display: inline-block;
  margin: 10px auto 20px;
  padding: 10px 16px;
  font-weight: 700;
  color: #fff;
  background: #e91e63;
  border-radius: 8px;
}

.ms-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ms-eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8f5e9, #f1fff3);
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 16px rgba(0,0,0,.08), 0 0 18px rgba(76,175,80,.18);
  position: relative;
  overflow: hidden;
  animation: ecoFloat 4s ease-in-out infinite;
}

.ms-eco-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-25deg);
  animation: ecoShine 5s ease-in-out infinite;
}

.ms-eco-icon { font-size: 18px; }
.ms-eco-sub { font-size: 12px; color: #4b7a4e; }

@keyframes ecoFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@keyframes ecoShine {
  0% { left: -120%; }
  100% { left: 120%; }
}

/* =========================
   STATS / COUNTERS
========================= */
.ms-stats {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  padding: 0 20px 42px;
  display: flex;
  justify-content: center;
}

.ms-stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.ms-stat {
  flex: 1 1 0;
  max-width: 280px;
  background: linear-gradient(180deg, #fff, #fff8fc);
  padding: 26px 20px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  text-align: center;
}

.ms-stat-num {
  font-size: 38px;
  color: #e91e63;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.ms-stat-text {
  font-size: 30px;
}

.ms-stat-label {
  margin-top: 8px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.ms-stat-small {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}

/* =========================
   SECTIONS / TEXT
========================= */
.ms-section {
  padding: 70px 20px;
  text-align: center;
}

.ms-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  color: #e91e63;
  margin: 0 0 16px;
  line-height: 1.08;
}

.ms-lead {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: 19px;
  line-height: 1.75;
  color: #444;
}

.ms-soft-pink { background: linear-gradient(180deg, #fff8fb 0%, #fff 100%); }
.ms-soft-blue { background: linear-gradient(180deg, #f4fbff 0%, #fff 100%); }
.ms-soft-cream { background: linear-gradient(180deg, #fffaf2 0%, #fff 100%); }

/* =========================
   FEATURES
========================= */
.ms-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.ms-feature {
  background: #fff;
  padding: 30px 22px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

.ms-feature-icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.ms-feature h3 {
  font-family: 'Poppins', sans-serif;
  color: #e91e63;
  margin: 0 0 10px;
  font-size: 23px;
}

.ms-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

/* =========================
   CARD GRID
========================= */
.ms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.ms-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.14);
}

.ms-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .35s ease;
}

.ms-card:hover img {
  transform: scale(1.06);
}

.ms-card-body {
  padding: 18px 18px 20px;
}

.ms-card h3 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  color: #e91e63;
  font-size: 22px;
}

.ms-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* =========================
   SPLIT
========================= */
.ms-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
}

.ms-split img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.ms-split-text {
  text-align: left;
}

.ms-split-text .ms-lead {
  text-align: left;
  max-width: none;
}

/* =========================
   TREATS
========================= */
.ms-treats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.ms-treat {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(0,0,0,.08);
  text-align: left;
  border-top: 4px solid #e3f2fd;
}

.ms-treat:nth-child(2) { border-top-color: #ffe3f0; }
.ms-treat:nth-child(3) { border-top-color: #fff0c8; }
.ms-treat:nth-child(4) { border-top-color: #e8f7ff; }

.ms-treat h3 {
  margin: 0 0 10px;
  color: #e91e63;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.ms-treat ul {
  margin: 0;
  padding-left: 18px;
}

.ms-treat li {
  margin: 6px 0;
  line-height: 1.5;
  font-size: 15px;
}

.ms-note {
  margin: 0 0 10px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}

/* =========================
   GALLERY
========================= */
.ms-gallery-title {
  margin-top: 50px !important;
}

.ms-events-grid-section {
  overflow: hidden;
}

.ms-events-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 22px;
  align-items: stretch;
}

.ms-events-grid-item {
  width: 100%;
  min-width: 0;
}

.ms-events-grid-item img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ms-events-grid-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 28px rgba(0,0,0,.14);
}

/* =========================
   PACKAGES
========================= */
.ms-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.ms-package {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.ms-package-top {
  padding: 18px 20px;
  background: #e9f5ff;
  color: #1976d2;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}

.ms-package-featured {
  transform: scale(1.04);
  border: 2px solid #e91e63;
}

.ms-package-featured .ms-package-top {
  background: #ffe8f3;
  color: #d81b60;
}

.ms-package-body {
  padding: 26px;
  text-align: left;
}

.ms-package h3 {
  margin: 0 0 10px;
  color: #e91e63;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
}

.ms-package p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 15px;
  color: #555;
}

.ms-package ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.ms-package li {
  margin: 6px 0;
  font-size: 15px;
}

.ms-package-highlight {
  color: #1976d2 !important;
  font-weight: 700;
}

.ms-package-best {
  font-weight: 700;
  color: #e91e63 !important;
}

/* =========================
   TESTIMONIAL
========================= */
.ms-testimonial {
  max-width: 840px;
  margin: 0 auto;
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  background: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

/* =========================
   INFO
========================= */
.ms-info {
  background: #f8f8f8;
  padding: 70px 20px;
}

.ms-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ms-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.ms-info-card h4 {
  margin: 0 0 10px;
  color: #e91e63;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}

/* =========================
   FAQ
========================= */
.ms-faq-accordion {
  max-width: 950px;
  margin: 30px auto 0;
  text-align: left;
}

.ms-faq-item {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  overflow: hidden;
}

.ms-faq-item input {
  display: none;
}

.ms-faq-question {
  display: block;
  position: relative;
  padding: 22px 56px 22px 22px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #e91e63;
  cursor: pointer;
}

/* Default (closed) */
.ms-faq-question::after {
    content: "+";
    float: right;
    font-size: 20px;
    font-weight: bold;
}

/* Open */
.ms-faq-item input:checked + .ms-faq-question::after {
    content: "-";
}

.ms-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}

.ms-faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.ms-faq-item input:checked + .ms-faq-question + .ms-faq-answer {
  max-height: 420px;
  padding: 0 22px 22px;
}

.ms-faq-item input:checked + .ms-faq-question::after {
  content: "-";
}

.ms-locations {
  max-width: 1100px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.ms-locations a {
  color: #1976d2;
  font-weight: 700;
}

.ms-faq-cta {
  margin-top: 30px;
}

/* =========================
   FINAL CTA
========================= */
.ms-final {
  background: linear-gradient(135deg, #e91e63, #ff6fa5);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.ms-final h2 {
  color: #fff;
}

.ms-final p {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 19px;
  line-height: 1.7;
}

/* =========================
   STICKY BUTTONS
========================= */
.ms-sticky-wrap {
  position: fixed;
  right: 14px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 99999;
}

.ms-sticky-wrap .ms-quote,
.ms-sticky-wrap .ms-call {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.ms-sticky-wrap .ms-quote {
  background: linear-gradient(135deg, #ff4f9a, #e91e63);
  color: #fff;
}

.ms-sticky-wrap .ms-call {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
}

/* =========================
   FORMS
========================= */
.page-hero {
  padding: 70px 0 35px;
  background: linear-gradient(180deg, #fff6fa 0%, #fff 100%);
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  color: #e91e63;
  font-size: 2.6rem;
  line-height: 1.15;
}

.page-hero p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.08rem;
  color: #555;
}

.ms-form {
  background: #fff;
  border: 1px solid #f5d3e0;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.98rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  font-size: 16px;
  background: #fff;
  color: #333;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* =========================
   HELPERS / GUARANTEE / LOCATIONS
========================= */
.faq-category + .faq-category {
  margin-top: 40px;
}

.faq-bottom-cta {
  margin-top: 50px;
  text-align: center;
}

.ms-guarantee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ms-guarantee img {
  height: auto;
  display: block;
}

.ms-guarantee .left-img {
  width: 200px;
}

.ms-guarantee .right-img {
  width: 140px;
}

.ms-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.ms-location-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.ms-location-card:hover {
  transform: translateY(-6px);
}

.ms-location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ms-location-card h3 {
  margin: 0;
  padding: 16px;
  color: #e91e63;
  font-size: 22px;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .ms-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(255,255,255,0.96);
    border: 1px solid #f2d1dd;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
    z-index: 1001;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .menu-item > a {
    padding: 10px 4px;
    color: #333 !important;
    text-shadow: none !important;
  }

  .dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0;
    min-width: 0;
    width: 100%;
    background: transparent !important;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-item:hover .dropdown {
    display: none;
  }

  .menu-item.open .dropdown {
    display: grid;
  }

  .dropdown a,
  .has-hero-header .dropdown a {
    color: #333 !important;
    text-shadow: none !important;
  }

  .dropdown-title,
  .has-hero-header .dropdown-title {
    color: #e91e63 !important;
    text-shadow: none !important;
  }

  .site-logo {
    height: 105px;
  }
}

@media (max-width: 900px) {
  .ms-feature-grid,
  .ms-grid,
  .ms-treats,
  .ms-packages,
  .ms-info-grid {
    grid-template-columns: 1fr;
  }

  .ms-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .ms-events-grid-item img {
    min-height: 220px;
    height: 220px;
  }

  .ms-split {
    grid-template-columns: 1fr;
  }

  .ms-split-text,
  .ms-split-text .ms-lead {
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .ms-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ms-stats-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ms-stat {
    flex: 0 1 calc(50% - 11px);
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .site-logo {
    height: 95px;
  }

  .page-hero {
    padding: 54px 0 28px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .ms-hero {
    min-height: 420px;
    height: 420px;
    align-items: center;
    text-align: center;
    padding-top: 110px;
  }

  .ms-hero-content {
    margin-bottom: 0;
    max-width: 100%;
  }

  .ms-hero h1 {
    font-size: 30px;
  }

  .ms-hero-copy {
    font-size: 16px;
  }

  .ms-hero-buttons {
    flex-direction: column;
  }

  .ms-btn,
  .ms-btn-primary,
  .ms-btn-secondary,
  .ms-btn-white {
    width: 100%;
    display: block;
    text-align: center;
  }

  .ms-form {
    padding: 20px;
    border-radius: 20px;
  }

  .ms-sticky-wrap {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 28px);
    max-width: 360px;
    justify-content: center;
  }

  .ms-sticky-wrap .ms-quote,
  .ms-sticky-wrap .ms-call {
    font-size: 13px;
    padding: 10px 14px;
    flex: 1 1 0;
    min-width: 0;
  }

  .ms-stats {
    margin-top: -40px;
    padding: 0 14px 34px;
  }

  .ms-stats-grid {
    flex-direction: column;
    align-items: center;
    max-width: 360px;
  }

  .ms-stat {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
}

@media (max-width: 700px) {
  .ms-guarantee {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ms-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    min-height: 420px;
    padding: 40px 18px;
  }

  .faq-hero-card {
    padding: 24px 20px;
  }

  .faq-hero h1 {
    font-size: 38px;
  }

  .faq-hero p {
    font-size: 16px;
  }
}

/* =========================
   FINAL MOBILE MENU FIX
   (FORCE DARK TEXT OVER HERO STYLES)
========================= */
@media (max-width: 980px) {

  .has-hero-header .nav > a,
  .has-hero-header .nav > .menu-item > a,
  .has-hero-header .nav a,
  .has-hero-header .menu-item > a {
    color: #333 !important;
    text-shadow: none !important;
  }

  .has-hero-header .dropdown a {
    color: #333 !important;
  }

  .has-hero-header .dropdown-title {
    color: #e91e63 !important;
  }

}


/* =========================
   IMPROVED MOBILE MENU UX
========================= */
@media (max-width: 980px) {

  .nav {
    transition: all 0.25s ease;
  }

  .nav > a,
  .menu-item > a {
    display: block;
    width: 100%;
    padding: 14px 6px;
    font-size: 17px;
    line-height: 1.4;
    border-bottom: 1px solid #f3e3eb;
  }

  .nav > a:last-child {
    border-bottom: 0;
  }

  .menu-item {
    width: 100%;
  }

  .menu-item > a {
    position: relative;
    padding-right: 34px;
  }

  /* arrow */
  .menu-item.has-dropdown > a::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #e91e63;
    font-weight: 700;
  }

  .menu-item.open > a::after {
    content: "-™";
  }

  .dropdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.28s ease, padding 0.28s ease, margin 0.28s ease;
    border-top: 0;
  }

  .menu-item.open .dropdown {
    max-height: 900px;
    padding: 10px 0 6px;
    margin: 2px 0 8px;
  }

  .dropdown-group {
    background: #fff7fb;
    border-radius: 12px;
    padding: 12px 14px;
  }

  .dropdown-title {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .dropdown a {
    display: block;
    padding: 9px 0;
    font-size: 15px;
    line-height: 1.35;
    border-bottom: 1px solid #f3dbe7;
  }

  .dropdown a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .nav.open {
    animation: msMenuFade 0.2s ease;
  }

  @keyframes msMenuFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* =========================
   MOBILE HOVER / ACTIVE FIX
========================= */
@media (max-width: 980px) {

  .nav a:hover,
  .nav a:active,
  .menu-item > a:hover,
  .menu-item > a:active,
  .has-hero-header .nav a:hover,
  .has-hero-header .nav a:active,
  .has-hero-header .menu-item > a:hover,
  .has-hero-header .menu-item > a:active {
    color: #333 !important;
    text-shadow: none !important;
    background: #fff5fa !important;
  }

  .menu-item.open > a,
  .has-hero-header .menu-item.open > a {
    color: #333 !important;
    background: #fff5fa !important;
  }

  .dropdown a:hover,
  .dropdown a:active {
    color: #e91e63 !important;
    background: #ffe3f0 !important;
  }

}


/* =========================
   MOBILE PARENT CATEGORY HOVER FIX
========================= */
@media (max-width: 980px) {

  .has-hero-header .nav > .menu-item.has-dropdown > a,
  .has-hero-header .nav > .menu-item.has-dropdown > a:hover,
  .has-hero-header .nav > .menu-item.has-dropdown > a:focus,
  .has-hero-header .nav > .menu-item.has-dropdown > a:active,
  .has-hero-header .nav > .menu-item.open > a,
  .has-hero-header .nav > .menu-item.open > a:hover,
  .has-hero-header .nav > .menu-item.open > a:focus,
  .has-hero-header .nav > .menu-item.open > a:active {
    color: #333 !important;
    text-shadow: none !important;
    background: #fff5fa !important;
  }

  .has-hero-header .nav > .menu-item.has-dropdown > a::after,
  .has-hero-header .nav > .menu-item.open > a::after {
    color: #e91e63 !important;
    text-shadow: none !important;
  }
}

.radio-buttons {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.radio-btn {
  position:relative;
  cursor:pointer;
}

.radio-btn input {
  display:none;
}

.radio-btn span {
  display:block;
  padding:12px 18px;
  border-radius:999px;
  border:2px solid #e91e63;
  background:#fff;
  color:#e91e63;
  font-weight:600;
  transition:0.2s;
}

/* selected */
.radio-btn input:checked + span {
  background:#e91e63;
  color:#fff;
}

/* hover */
.radio-btn:hover span {
  background:#ffe3f0;
}

/* =========================
   SPLIT SECTION MINI SLIDERS
========================= */
.ms-split-with-sliders {
  align-items: start;
}

.ms-split-with-sliders .ms-split-text {
  display: flex;
  flex-direction: column;
}

.ms-mini-title-wrap {
  margin-top: 6px;
  margin-bottom: 16px;
  text-align: center;
}

.ms-mini-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #e91e63;
  line-height: 1.2;
  margin-bottom: 6px;
}

.ms-mini-sub {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.ms-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.ms-mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.ms-mini-card-heading {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ms-mini-slider {
  position: relative;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.ms-mini-slider .ms-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.ms-mini-slider .ms-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ms-mini-slider .ms-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-slide-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.05));
}

.ms-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #e91e63;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
  z-index: 3;
}

.ms-slider-arrow.prev {
  left: 8px;
}

.ms-slider-arrow.next {
  right: 8px;
}

.ms-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}

.ms-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
}

.ms-slider-dot.active {
  background: #fff;
}

@media (max-width: 1200px) {
  .ms-mini-card-heading {
    min-height: auto;
  }
}


@media (max-width: 1100px) {
  .ms-split {
    grid-template-columns: 1fr;
  }

  .ms-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ms-mini-slider {
    height: 145px;
  }
}

@media (max-width: 900px) {
  .ms-mini-grid {
    grid-template-columns: 1fr;
  }

  .ms-mini-slider {
    height: 240px;
  }

  .ms-mini-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .ms-mini-title {
    font-size: 20px;
  }

  .ms-mini-sub {
    font-size: 13px;
  }

  .ms-slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

/* mobile sticky buttons left aligned */
@media (max-width: 768px) {
  .ms-sticky-wrap {
    left: 14px;
    right: auto;
    transform: none;
    bottom: 20px;
  }
}

/* =========================
   HOME EVENTS GRID OVERRIDE FIX
========================= */
.ms-events-grid-section {
  overflow: hidden;
}

.ms-events-grid-section .container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.ms-home-events-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 22px auto 0 !important;
  padding: 0 !important;
}

.ms-home-events-grid-item {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ms-home-events-grid-item img {
  display: block !important;
  width: 100% !important;
  height: 320px !important;
  min-height: 320px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

@media (max-width: 768px) {

  /* ===== EVENTS GRID (unchanged) ===== */
  .ms-home-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .ms-home-events-grid-item img {
    height: 220px !important;
    min-height: 220px !important;
  }

  /* ===== STICKY WRAP (FIX WIDTH ISSUE) ===== */
  .ms-sticky-wrap {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 16px !important;

    width: auto !important;              /* 🔥 no full width */
    max-width: fit-content !important;   /* 🔥 shrink to buttons */
    padding: 6px 10px !important;        /* small breathing space */

    justify-content: center !important;
  }

  /* ===== BUTTON CONTAINER ===== */
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;           /* tighter spacing */
    flex-wrap: nowrap;  /* keep on one line */
  }

  /* ===== BUTTONS (SLIM VERSION) ===== */
  .cta-buttons a {
    padding: 7px 12px;      /* 🔥 smaller height */
    font-size: 13.5px;      /* 🔥 slightly smaller text */
    border-radius: 12px;    /* tighter corners */

    width: auto !important;
    min-width: unset !important;
    flex: 0 0 auto !important;

    white-space: nowrap;    /* prevent wrapping inside button */
    text-align: center;
  }

}

/* BASE HERO */
.ms-hero {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* OVERLAY */
.ms-hero-overlay {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    max-width: 800px;
}

/* PAGE-SPECIFIC HERO IMAGE */
.ms-hero-wedding {
    background-image: url('/assets/images/events/wedding-hero.jpg');
}