/* ============================================================
   Zundaa Events – Shared Block Styles
   Brand: Red #D93A1E  Charcoal #1A1A1A  Cream #FAFAFA
   ============================================================ */

/* --- Reset & Base -------------------------------------------*/
.zundaa-page {
  font-family: 'Lato', sans-serif;
  color: #1A1A1A;
  background: #FAFAFA;
  -webkit-font-smoothing: antialiased;
}

.zundaa-page h1,
.zundaa-page h2,
.zundaa-page h3,
.zundaa-page h4,
.zundaa-page h5,
.zundaa-page h6,
.zundaa-page .playfair {
  font-family: 'Playfair Display', serif;
}

/* --- Nav / Global Sticky Nav --------------------------------*/
.zundaa-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(217,58,30,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.zundaa-nav__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zundaa-nav__logo { height: 48px; }
.zundaa-nav__cta {
  display: inline-block;
  background: #D93A1E;
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #D93A1E;
  transition: background 0.3s;
}
.zundaa-nav__cta:hover { background: #B02E14; }

/* --- Breadcrumb --------------------------------------------*/
.zundaa-breadcrumb {
  background: #FAFAFA;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  padding: 10px 24px;
}
.zundaa-breadcrumb ol {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: rgba(26,26,26,0.5);
}
.zundaa-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.zundaa-breadcrumb a:hover { color: #D93A1E; }

/* --- Hero --------------------------------------------------*/
.zundaa-hero {
  position: relative;
  background: #1A1A1A;
  color: #fff;
  padding: 128px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 8px solid #D93A1E;
  overflow: hidden;
}
.zundaa-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}
.zundaa-hero__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
}
.zundaa-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.zundaa-hero__cta {
  display: inline-block;
  background: #D93A1E;
  color: #fff;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #D93A1E;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.zundaa-hero__cta:hover { background: #B02E14; }

/* --- Section Shared ----------------------------------------*/
.zundaa-section {
  padding: 96px 24px;
}
.zundaa-section--cream { background: #FAFAFA; }
.zundaa-section--white { background: #fff; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.zundaa-section--charcoal { background: #1A1A1A; color: #fff; }
.zundaa-section__inner { max-width: 72rem; margin: 0 auto; }
.zundaa-section__inner--narrow { max-width: 48rem; margin: 0 auto; }
.zundaa-section__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1A1A1A;
}
.zundaa-section--charcoal .zundaa-section__title { color: #D93A1E; }
.zundaa-section__divider {
  width: 96px;
  height: 4px;
  background: #D93A1E;
  margin: 0 auto 64px;
}
.zundaa-section__subtitle {
  text-align: center;
  color: rgba(26,26,26,0.6);
  max-width: 40rem;
  margin: 0 auto 16px;
}

/* --- Services Grid ------------------------------------------*/
.zundaa-services-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.zundaa-service-card {
  width: 100%;
}
@media (min-width: 640px) { 
  .zundaa-service-card { width: calc(50% - 1rem); } 
}
@media (min-width: 1024px) { 
  .zundaa-service-card { width: calc(25% - 1.5rem); max-width: 320px; } 
}
.zundaa-service-card {
  background: #FAFAFA;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(217,58,30,0.2);
  transition: border-color 0.3s;
}
.zundaa-service-card:hover { border-color: #D93A1E; }
.zundaa-service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(217,58,30,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.zundaa-service-card:hover .zundaa-service-card__icon { background: rgba(217,58,30,0.2); }
.zundaa-service-card__icon svg { width: 32px; height: 32px; color: #D93A1E; }
.zundaa-service-card__icon img { width: 32px; height: 32px; object-fit: contain; }
.zundaa-service-card__title { font-size: 1.125rem; font-weight: 700; color: #1A1A1A; margin-bottom: 8px; }
.zundaa-service-card__desc { font-size: 0.9rem; color: rgba(26,26,26,0.7); line-height: 1.6; }

/* --- Wedding Stories ---------------------------------------*/
.zundaa-story-card {
  background: #FAFAFA;
  border: 1px solid rgba(217,58,30,0.2);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.zundaa-story-card__placeholder {
  width: 100%;
  height: 288px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26,26,26,0.3);
  font-size: 1rem;
}
.zundaa-story-card__body { padding: 24px; }
.zundaa-story-card__title { font-size: 1.5rem; font-weight: 700; color: #1A1A1A; margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.zundaa-story-card__tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #D93A1E; margin-bottom: 12px; }
.zundaa-story-card__headline { font-size: 0.95rem; font-weight: 600; color: rgba(26,26,26,0.9); margin-bottom: 8px; font-family: 'Playfair Display', serif; font-style: italic; }
.zundaa-story-card__desc { font-size: 0.875rem; color: rgba(26,26,26,0.8); line-height: 1.7; }
.zundaa-story-card__readmore { background: none; border: none; padding: 0; color: #D93A1E; font-weight: 600; font-size: 0.8rem; cursor: pointer; margin-top: 8px; }
.zundaa-story-card__readmore:hover { text-decoration: underline; }
.zundaa-story-card__longdesc { margin-top: 12px; display: none; }
.zundaa-story-card__longdesc p { font-size: 0.875rem; color: rgba(26,26,26,0.8); line-height: 1.7; margin-bottom: 12px; }
.zundaa-stories-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

/* --- Venues ------------------------------------------------*/
.zundaa-venue-card {
  display: block;
  background: #111827;
  border: 1px solid rgba(217,58,30,0.2);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s;
  height: 100%;
}
.zundaa-venue-card:hover { border-color: rgba(217,58,30,0.5); }
.zundaa-venue-card__logo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  height: 128px;
}
.zundaa-venue-card__logo img { max-height: 64px; max-width: 100%; object-fit: contain; }
.zundaa-venue-card__body { padding: 20px; }
.zundaa-venue-card__title { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.zundaa-venue-card__city { font-size: 0.875rem; color: #D93A1E; margin-bottom: 8px; }
.zundaa-venue-card__desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.zundaa-venues-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.zundaa-venues-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(217,58,30,0.4);
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: #D93A1E; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.zundaa-venues-nav button:hover { background: #D93A1E; color: #fff; }

/* --- Why Choose --------------------------------------------*/
.zundaa-whychoose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-left: 4px solid #D93A1E;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 32px;
}
.zundaa-whychoose-item__icon { color: #D93A1E; flex-shrink: 0; margin-top: 4px; }
.zundaa-whychoose-item__icon svg { width: 24px; height: 24px; }
.zundaa-whychoose-item__title { font-size: 1.125rem; font-weight: 700; color: #1A1A1A; margin-bottom: 8px; }
.zundaa-whychoose-item__desc { color: rgba(26,26,26,0.8); line-height: 1.6; font-size: 0.95rem; }

/* --- FAQs --------------------------------------------------*/
.zundaa-faq {
  background: #FAFAFA;
  padding: 24px;
  border: 1px solid rgba(217,58,30,0.3);
  cursor: pointer;
  margin-bottom: 16px;
}
.zundaa-faq[open] { background: #fff; }
.zundaa-faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1A1A1A;
  list-style: none;
}
.zundaa-faq summary::-webkit-details-marker { display: none; }
.zundaa-faq summary .faq-arrow { transition: transform 0.25s; }
.zundaa-faq[open] summary .faq-arrow { transform: rotate(180deg); }
.zundaa-faq__answer { margin-top: 16px; color: rgba(26,26,26,0.8); line-height: 1.7; font-size: 0.95rem; }

/* --- Lead Form ---------------------------------------------*/
.zundaa-form { display: flex; flex-direction: column; gap: 20px; }
.zundaa-form__label { display: block; font-size: 0.875rem; font-weight: 700; color: #1A1A1A; margin-bottom: 4px; }
.zundaa-form input,
.zundaa-form select,
.zundaa-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
  font-family: 'Lato', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.zundaa-form input:focus,
.zundaa-form select:focus,
.zundaa-form textarea:focus { border-color: #D93A1E; }
.zundaa-form textarea { resize: vertical; }
.zundaa-form__submit {
  width: 100%;
  background: #D93A1E;
  color: #fff;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Lato', sans-serif;
}
.zundaa-form__submit:hover { background: #B02E14; }

/* --- CTA Banner --------------------------------------------*/
.zundaa-cta {
  padding: 96px 24px;
  background: #1A1A1A;
  text-align: center;
  border-top: 8px solid #D93A1E;
}
.zundaa-cta__inner { max-width: 48rem; margin: 0 auto; }
.zundaa-cta__heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
.zundaa-cta__btn {
  display: inline-block;
  background: #D93A1E;
  color: #fff;
  padding: 20px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #D93A1E;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: background 0.3s;
}
.zundaa-cta__btn:hover { background: #B02E14; }

/* --- Swiper overrides --------------------------------------*/
.swiper-pagination-bullet { background: #D93A1E !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1 !important; }
.swiper-button-next,
.swiper-button-prev { color: #D93A1E !important; }
.wedding-carousel .swiper-pagination-bullet { background: #fff !important; opacity: 0.6; }
.wedding-carousel .swiper-pagination-bullet-active { opacity: 1 !important; }

/* --- Block editor preview notice ---------------------------*/
.zundaa-editor-notice {
  background: #1A1A1A;
  color: #fff;
  padding: 24px;
  font-family: 'Lato', sans-serif;
  border-left: 4px solid #D93A1E;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.zundaa-editor-notice strong { color: #D93A1E; }

/* --- Sticky Chat CTA ---------------------------------------*/
.zundaa-sticky-chat {
  position: fixed;
  z-index: 9999;
  background: #25D366; /* WhatsApp Green for high conversion */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.3s;
}
.zundaa-sticky-chat:hover {
  background: #1EBE53;
}
.zundaa-sticky-chat__icon {
  width: 24px;
  height: 24px;
}

/* Mobile: Full width bottom bar */
@media (max-width: 767px) {
  .zundaa-sticky-chat {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 24px;
  }
}

/* Desktop: Floating bottom-right pill */
@media (min-width: 768px) {
  .zundaa-sticky-chat {
    bottom: 32px;
    right: 32px;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
  }
  .zundaa-sticky-chat:hover {
    transform: translateY(-4px);
  }
}
