/* ─────────────────────────────────────────────────────────────
   HALDI PAGE STYLES (Use same as pre-wedding with haldi- prefix)
───────────────────────────────────────────────────────────────── */

:root {
/*  --haldi-ff-serif: 'Georgia', 'Cormorant Garamond', 'Noto Serif', serif;
  --haldi-ff-bengali: 'Noto Serif Bengali', 'Hind Siliguri', serif;
  --haldi-ff-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;*/
  
  --haldi-gold: #D4A537;
  --haldi-gold-mid: #E8860B;
  --haldi-gold-lt: #F0C040;
  --haldi-gold-pale: #FEF5E7;
  --haldi-dark: #1A1A2E;
  --haldi-border: #e5e7eb;
  --haldi-grey: #6b7280;
  
  --haldi-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --haldi-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --haldi-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.haldi-page { padding: 0; margin: 0; }

/* ── HERO SECTION ── */
.haldi-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.haldi-hero-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.haldi-hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.haldi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 30%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.6) 70%,
    rgba(10, 10, 10, 0.4) 100%
  );
  backdrop-filter: blur(1px);
}

.haldi-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
}

.haldi-hero-text {
  max-width: 750px;
  width: 100%;
  color: #fff;
  animation: fadeInUp 1s ease-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.haldi-hero-bengali {
  font-family: var(--haldi-ff-bengali);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--haldi-gold-lt);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.haldi-hero-title {
  font-family: var(--haldi-ff-serif);
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.8), 0 8px 16px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
  color: #fff;
}

.haldi-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.haldi-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--haldi-gold), var(--haldi-gold-mid));
  color: #fff;
  font-family: var(--haldi-ff-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: clamp(12px, 2vw, 18px) clamp(28px, 4vw, 44px);
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
}

.haldi-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.6), 0 12px 35px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--haldi-gold-lt), var(--haldi-gold));
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT SECTION ── */
.haldi-about { padding: 80px 0; background: #fff; }
.haldi-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.haldi-section-title { font-family: var(--haldi-ff-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--haldi-dark); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.haldi-about-intro { font-size: 1.05rem; line-height: 1.8; color: var(--haldi-grey); margin-bottom: 32px; }
.haldi-about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.haldi-about-feature { padding: 24px; background: #FEF5E7; border-radius: 12px; text-align: center; transition: all 0.3s ease; border: 1px solid rgba(184, 134, 11, 0.1); }
.haldi-about-feature:hover { transform: translateY(-4px); box-shadow: var(--haldi-shadow-md); }
.haldi-feature-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; height: 60px; display: flex; align-items: center; justify-content: center; }
.haldi-about-feature h4 { font-family: var(--haldi-ff-serif); font-size: 1rem; font-weight: 700; color: var(--haldi-dark); margin-bottom: 8px; }
.haldi-about-feature p { font-size: 0.9rem; color: var(--haldi-grey); line-height: 1.6; }
.haldi-about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.haldi-stat { padding: 24px; background: linear-gradient(135deg, #FEF5E7, rgba(240, 192, 64, 0.08)); border: 1px solid var(--haldi-border); border-radius: 12px; transition: all 0.3s ease; }
.haldi-stat:hover { border-color: var(--haldi-gold); box-shadow: var(--haldi-shadow-sm); }
.haldi-stat-num { font-family: var(--haldi-ff-serif); font-size: 2rem; font-weight: 700; color: var(--haldi-gold); display: block; margin-bottom: 4px; }
.haldi-stat-label { font-size: 0.8rem; color: var(--haldi-grey); text-transform: uppercase; letter-spacing: 0.1em; }
.haldi-about-image { border-radius: 16px; overflow: hidden; box-shadow: var(--haldi-shadow-lg); }
.haldi-about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.haldi-about-image:hover img { transform: scale(1.02); }

/* ── WISHLIST SECTION ── */
.haldi-wishlist { padding: 80px 0; background: #FEF5E7; }
.haldi-section-head { text-align: center; margin-bottom: 48px; }
.haldi-section-desc { font-size: 1rem; color: var(--haldi-grey); max-width: 500px; margin: 12px auto 0; line-height: 1.6; }
.haldi-wishlist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.haldi-wishlist-card { position: relative; height: 280px; border-radius: 14px; overflow: hidden; cursor: pointer; box-shadow: var(--haldi-shadow-md); transition: all 0.3s ease; }
.haldi-wishlist-card:hover { box-shadow: var(--haldi-shadow-lg); }
.haldi-wishlist-img { position: relative; width: 100%; height: 100%; overflow: hidden; }
.haldi-wishlist-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.haldi-wishlist-card:hover .haldi-wishlist-img img { transform: scale(1.08); }
.haldi-wishlist-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%); transition: background 0.3s ease; }
.haldi-wishlist-card:hover .haldi-wishlist-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%); }
.haldi-wishlist-label { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-family: var(--haldi-ff-serif); font-size: 1.1rem; font-weight: 700; z-index: 2; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }

/* ── PROCESS SECTION ── */
.haldi-process { padding: 80px 0; background: #fff; }
.haldi-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; align-items: flex-start; }
.haldi-step { position: relative; padding-top: 20px; }
.haldi-step-number { font-family: var(--haldi-ff-serif); font-size: 2.5rem; font-weight: 700; color: rgba(184, 134, 11, 0.2); line-height: 1; margin-bottom: 12px; }
.haldi-step-title { font-family: var(--haldi-ff-serif); font-size: 1.15rem; font-weight: 700; color: var(--haldi-dark); margin-bottom: 8px; }
.haldi-step-desc { font-size: 0.85rem; color: var(--haldi-grey); line-height: 1.6; }

/* ── GALLERY SECTION ── */
.haldi-gallery { padding: 80px 0; background: #FEF5E7; }
.haldi-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.haldi-gallery-item { position: relative; height: 240px; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: var(--haldi-shadow-sm); transition: all 0.3s ease; }
.haldi-gallery-item:hover { box-shadow: var(--haldi-shadow-md); }
.haldi-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.haldi-gallery-item:hover img { transform: scale(1.1); }
.haldi-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 70%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s ease; }
.haldi-gallery-item:hover .haldi-gallery-overlay { opacity: 1; }
.haldi-gallery-location { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }

/* ── CTA SECTION ── */
.haldi-cta-section { padding: 100px 0; background: linear-gradient(135deg, #FEF5E7 0%, #fff9e6 100%); position: relative; overflow: hidden; }
.haldi-cta-bg { position: absolute; inset: 0; opacity: 0.25; background-image: radial-gradient(circle at 20% 50%, var(--haldi-gold) 0%, transparent 50%), radial-gradient(circle at 80% 50%, var(--haldi-gold-lt) 0%, transparent 50%); pointer-events: none; }
.haldi-cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.haldi-cta-ornament { margin-bottom: 20px; display: flex; justify-content: center; }
.haldi-cta-star { font-size: 1.8rem; display: block; animation: spin 20s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.haldi-cta-bengali { font-family: var(--haldi-ff-bengali); font-style: italic; font-size: 1.1rem; color: var(--haldi-gold); letter-spacing: 0.08em; margin-bottom: 12px; display: block; font-weight: 500; }
.haldi-cta-title { font-family: var(--haldi-ff-serif); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; color: var(--haldi-dark); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.01em; }
.haldi-cta-text { font-size: 1.05rem; color: #5a5a5a; line-height: 1.8; margin-bottom: 40px; }
.haldi-cta-actions { margin-bottom: 32px; }
.haldi-cta-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #20c997; color: #fff; font-family: var(--haldi-ff-sans); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; padding: 15px 40px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3); text-transform: uppercase; }
.haldi-cta-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(32, 201, 151, 0.4); background: #1ba87f; }
.haldi-cta-phones { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.haldi-phone-pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(184, 134, 11, 0.15); border: 2px solid var(--haldi-gold); color: #8b5a0f; font-family: var(--haldi-ff-sans); font-size: 0.95rem; font-weight: 700; padding: 11px 24px; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; }
.haldi-phone-icon { font-size: 1.1rem; }
.haldi-phone-pill:hover { background: var(--haldi-gold); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .haldi-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .haldi-about-features { grid-template-columns: repeat(2, 1fr); }
  .haldi-about-stats { grid-template-columns: 1fr; }
  .haldi-wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .haldi-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  .haldi-hero { height: 85vh; min-height: 500px; }
  .haldi-about { padding: 60px 0; }
  .haldi-about-features { grid-template-columns: 1fr; }
  .haldi-about-stats { grid-template-columns: 1fr; }
  .haldi-wishlist { padding: 60px 0; }
  .haldi-wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .haldi-gallery { padding: 60px 0; }
  .haldi-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .haldi-gallery-item { height: 180px; }
  .haldi-process { padding: 60px 0; }
  .haldi-process-steps { grid-template-columns: 1fr; gap: 20px; }
  .haldi-section-title { font-size: clamp(1.6rem, 4vw, 2.5rem); }
  .haldi-cta-section { padding: 80px 0; }
  .haldi-cta-title { font-size: clamp(2rem, 5vw, 3rem); }
  .haldi-cta-phones { gap: 12px; }
}

@media (max-width: 480px) {
  .haldi-hero { height: 80vh; min-height: 400px; padding: 20px; }
  .haldi-hero-content { padding: 30px 15px; }
  .haldi-hero-title { font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 12px; }
  .haldi-hero-subtitle { font-size: clamp(0.85rem, 1.8vw, 1rem); margin-bottom: 28px; }
  .haldi-btn-primary { width: 95%; max-width: 280px; padding: 11px 20px; font-size: 0.85rem; }
  .haldi-about { padding: 50px 0; }
  .haldi-about-feature { padding: 16px; }
  .haldi-section-title { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: 12px; }
  .haldi-cta-section { padding: 50px 0; }
  .haldi-cta-title { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; }
  .haldi-cta-whatsapp { width: 100%; padding: 13px 20px; font-size: 0.8rem; }
  .haldi-cta-phones { flex-direction: column; gap: 10px; }
  .haldi-phone-pill { width: 100%; padding: 10px 16px; font-size: 0.85rem; }
}