/* ══════════════════════════════════════════════════════
   RVD MATRIMONIAL — INTERNAL PAGES STYLESHEET
   ══════════════════════════════════════════════════════ */

/* ─── HEADER ALWAYS SCROLLED (internal pages) ──── */
.scrolled-always {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 8px 0 !important;
  top: 33px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

.scrolled-always .logo-img { height: 48px; }

.scrolled-always.scrolled { top: 0; }


/* ─── PAGE HERO ──────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.page-hero-overlay-solid {
  position: absolute;
  inset: 0;
  background: var(--gray-900);
  z-index: 1;
}

.page-hero-sm { min-height: 300px; }

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 0 60px;
}

.page-hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.page-hero-content h1 .cursive {
  font-size: 1.2em;
}

.page-hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb .current { color: rgba(255,255,255,0.8); }
.breadcrumb span:not(.current) { color: rgba(255,255,255,0.3); }


/* ─── CONTACT PAGE ───────────────────────────────── */
.contact-main {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

/* Info Cards Row */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.contact-info-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-200), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.contact-info-card:hover::before { transform: scaleX(1); }

.cic-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gray-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}

.contact-info-card:hover .cic-icon {
  background: var(--gold);
  color: var(--gray-900);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.contact-info-card a,
.contact-info-card span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.contact-info-card a:hover { color: var(--gray-900); }

/* Form + Map Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.form-header { margin-bottom: 32px; }
.form-header .section-tag { padding-left: 0; }
.form-header .section-tag::before { display: none; }
.form-header .section-tag::after { left: calc(100% + 14px); }
.form-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 8px 0;
}
.form-header p { font-size: 0.9rem; color: var(--gray-500); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: color 0.3s ease;
  z-index: 1;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all 0.3s ease;
  outline: none;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.input-wrap input:focus ~ i,
.input-wrap select:focus ~ i,
.input-wrap textarea:focus ~ i,
.input-wrap:focus-within i {
  color: var(--gold);
}

.textarea-wrap { align-items: flex-start; }
.textarea-wrap i { top: 14px; }
.textarea-wrap textarea { resize: vertical; min-height: 120px; }

.form-group + .form-group { margin-top: 0; }
.form-row + .form-group { margin-top: 16px; }

.form-submit {
  margin-top: 24px;
  width: 100%;
}

/* Map */
.contact-map-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 500px;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.map-container iframe {
  border-radius: 22px;
}

.map-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gray-900);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
  max-width: 260px;
}

.map-logo {
  height: 32px;
  margin-bottom: 10px;
}

.map-overlay-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.map-overlay-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}


/* ─── FAQ ─────────────────────────────────────────── */
.faq-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--gray-50);
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.08);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-toggle:hover { color: var(--gold-dark); }

.faq-toggle i {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}


/* ─── ABOUT DETAILED ─────────────────────────────── */
.about-detailed {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Floating decorative icons on founder section */
.about-detailed::before {
  content: '\f004';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 15%;
  right: 5%;
  font-size: 2.5rem;
  color: rgba(201,168,76,0.06);
  animation: aboutFloat 7s ease-in-out infinite;
  pointer-events: none;
}

.about-detailed::after {
  content: '\f70b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 12%;
  left: 4%;
  font-size: 1.8rem;
  color: rgba(201,168,76,0.06);
  animation: aboutFloat 6s ease-in-out 1s infinite;
  pointer-events: none;
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.detail-img-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.detail-img-frame img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.detail-img-frame:hover img { transform: scale(1.03); }

.detail-exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gray-900);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
}

.detail-exp-badge .cursive { font-size: 0.9rem; display: block; }
.detail-year {
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.about-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.about-detail-role {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 28px;
}

.about-detail-quote {
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 24px;
}

.about-detail-quote i {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.4;
  margin-bottom: 8px;
  display: block;
}

.about-detail-quote p {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
}

.about-detail-content > p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-detail-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.ads-item { text-align: center; }

.ads-number {
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  display: block;
  line-height: 1;
}

.ads-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 4px;
}


/* ─── VISION & MISSION ───────────────────────────── */
.vm-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

/* Corner decorative ring */
.vm-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.vm-section::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  bottom: -40px;
  left: -40px;
  pointer-events: none;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-200), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.vm-card:hover::before { transform: scaleX(1); }

.vm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gray-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
  background: var(--gold);
  color: var(--gray-900);
  transform: scale(1.1);
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}


/* ─── VALUES ─────────────────────────────────────── */
.values-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 24px;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03), transparent);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.value-card:hover::after { left: 150%; }

.vc-number {
  font-family: var(--font-number);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.value-card:hover .vc-number { color: rgba(201,168,76,0.15); }

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ─── PAGE CTA ───────────────────────────────────── */
.page-cta {
  padding: 80px 0;
  background: var(--gray-900);
  text-align: center;
}

.page-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 32px;
}

.page-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}


/* ─── BLOG PAGE ──────────────────────────────────── */
.blog-page-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

/* Featured Post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  margin-bottom: 72px;
  border: 1px solid var(--gray-100);
}

.bf-img {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.bf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-featured:hover .bf-img img { transform: scale(1.05); }

.bf-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray-50);
}

.bf-date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bf-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 14px;
}

.bf-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Blog Grid */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-page-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.5s ease;
}

.blog-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.bpc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.bpc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-page-card:hover .bpc-img img { transform: scale(1.06); }

.bpc-body {
  padding: 24px;
}

.bpc-date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bpc-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 10px;
}

.bpc-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}


/* ─── LEGAL / PRIVACY ────────────────────────────── */
.legal-content {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 36px 0 12px;
}

.legal-wrap h2:first-of-type { margin-top: 0; }

.legal-wrap p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-wrap ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.legal-wrap ul li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 4px;
}

.legal-wrap ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-wrap a {
  color: var(--gold-dark);
  font-weight: 500;
}

.legal-wrap a:hover { color: var(--gray-900); }


/* ─── ABOUT: QUOTE BANNER ────────────────────────── */
.about-quote-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aqb-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aqb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.aqb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
  max-width: 700px;
}

.aqb-icon {
  color: var(--gold);
  font-size: 1.75rem;
  opacity: 0.4;
  margin-bottom: 20px;
}

.aqb-content blockquote {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}

.aqb-author {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}


/* ─── ABOUT: COMMUNITIES ─────────────────────────── */
.communities-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(170deg, #FFFDF8 0%, #FFF9EE 40%, #FDF5E6 70%, #FFFDF8 100%);
  position: relative;
  overflow: hidden;
}

/* Corner images */
.communities-section::before,
.communities-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.07;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.communities-section::before {
  top: -80px;
  right: -80px;
  background-image: url('2026/04/acf7eab196a5a3405e002c2a9ff46c83-e1775016503504.jpg');
  border: 2px solid rgba(201,168,76,0.1);
}

.communities-section::after {
  bottom: -80px;
  left: -80px;
  background-image: url('2026/04/authentic-indian-bride-groom-s-hands-holding-together-traditional-wedding-attire-scaled-e1775016570207.jpg');
  border: 2px solid rgba(201,168,76,0.1);
}

/* Floating icons */
.comm-deco {
  position: absolute;
  color: rgba(201,168,76,0.1);
  pointer-events: none;
  z-index: 0;
}

.comm-deco-1 { top: 12%; left: 6%; font-size: 2rem; animation: aboutFloat 7s ease-in-out infinite; }
.comm-deco-2 { top: 55%; right: 5%; font-size: 1.5rem; animation: aboutFloat 5s ease-in-out 1s infinite; }
.comm-deco-3 { bottom: 15%; left: 12%; font-size: 1.2rem; animation: aboutFloat 6s ease-in-out 0.5s infinite; }
.comm-deco-4 { top: 25%; right: 10%; font-size: 1.8rem; animation: aboutFloat 8s ease-in-out 2s infinite; }

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

.comm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.comm-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.comm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-200), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.comm-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.comm-card:hover::before { transform: scaleX(1); }

.comm-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-dark);
  transition: all 0.4s ease;
}

.comm-card:hover .comm-icon {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}

.comm-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.comm-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ─── ABOUT: WHY CHOOSE US NUMBERS ──────────────── */
.about-numbers {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

/* Corner images */
.an-corner {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: 0.06;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  border: 2px solid rgba(201,168,76,0.08);
}

.an-corner-tl {
  top: -60px;
  left: -60px;
  background-image: url('2026/04/Untitled-design-2-scaled-e1775016838917.jpg');
}

.an-corner-br {
  bottom: -60px;
  right: -60px;
  background-image: url('2026/04/Untitled-design-6-scaled.jpg');
}

/* Floating icons */
.an-float {
  position: absolute;
  color: rgba(201,168,76,0.1);
  pointer-events: none;
}

.an-float-1 { top: 18%; right: 8%; font-size: 2rem; animation: aboutFloat 6s ease-in-out infinite; }
.an-float-2 { bottom: 20%; left: 6%; font-size: 1.6rem; animation: aboutFloat 7s ease-in-out 1.5s infinite; }
.an-float-3 { top: 50%; left: 15%; font-size: 1rem; animation: aboutFloat 5s ease-in-out 0.8s infinite; }

.an-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.an-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.an-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03), transparent);
  transform: skewX(-15deg);
  transition: left 0.8s ease;
}

.an-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.an-card:hover::after { left: 150%; }

.an-number {
  font-family: var(--font-number);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.4s ease;
}

.an-card:hover .an-number { color: rgba(201,168,76,0.12); }

.an-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.an-card:hover .an-icon {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--gold);
}

.an-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.an-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ─── ABOUT: TESTIMONIAL SECTION ─────────────────── */
.about-testimonial {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle pattern bg */
.about-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C25 5 20 10 20 16 C20 26 30 35 30 35 C30 35 40 26 40 16 C40 10 35 5 30 5Z' fill='%23C9A84C'/%3E%3C/svg%3E");
  pointer-events: none;
}

.at-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.at-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.at-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-200), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.at-card:hover {
  background: var(--white);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.at-card:hover::before { transform: scaleX(1); }

.at-stars {
  color: var(--gold);
  font-size: 0.7rem;
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.at-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.at-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-900);
  font-weight: 600;
}

.at-author span {
  font-size: 0.75rem;
  color: var(--gold-dark);
}


/* ─── ABOUT PAGE RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .comm-grid { grid-template-columns: repeat(2, 1fr); }
  .an-grid { grid-template-columns: repeat(2, 1fr); }
  .at-grid { grid-template-columns: repeat(2, 1fr); }
  .at-card:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  .comm-grid { grid-template-columns: 1fr; }
  .an-grid { grid-template-columns: 1fr; }
  .at-grid { grid-template-columns: 1fr; }
  .at-card:nth-child(3) { display: block; }
  .about-quote-banner { min-height: 300px; }
  .aqb-content blockquote { font-size: 1.3rem; }
}


/* ─── JOURNEY PAGE ───────────────────────────────── */
.journey-intro {
  padding: clamp(60px, 8vw, 80px) 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ─── JOURNEY FLOATING ICONS ─────────────────────── */
.jf-icon {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  color: rgba(201,168,76,0.1);
}

.jf-icon-1 { top: 15%; left: 6%; font-size: 2rem; animation: jFloat 7s ease-in-out infinite; }
.jf-icon-2 { bottom: 20%; right: 8%; font-size: 1.6rem; animation: jFloat 6s ease-in-out 1s infinite; }
.jf-icon-3 { top: 5%; right: 6%; font-size: 1.4rem; animation: jFloat 8s ease-in-out 0.5s infinite; }
.jf-icon-4 { top: 18%; left: 4%; font-size: 2.2rem; animation: jFloat 9s ease-in-out 2s infinite; }
.jf-icon-5 { top: 38%; right: 3%; font-size: 1.8rem; animation: jFloat 6s ease-in-out 1.5s infinite; }
.jf-icon-6 { top: 55%; left: 5%; font-size: 1.2rem; animation: jFloat 7s ease-in-out 0.8s infinite; }
.jf-icon-7 { top: 72%; right: 7%; font-size: 1.6rem; animation: jFloat 5s ease-in-out 2.5s infinite; }
.jf-icon-8 { bottom: 8%; left: 8%; font-size: 2rem; animation: jFloat 8s ease-in-out 1.2s infinite; }
.jf-icon-9 { top: 20%; right: 5%; font-size: 1.5rem; color: rgba(201,168,76,0.08); animation: jFloat 7s ease-in-out infinite; }
.jf-icon-10 { bottom: 25%; left: 6%; font-size: 1.2rem; color: rgba(201,168,76,0.08); animation: jFloat 6s ease-in-out 1.5s infinite; }

@keyframes jFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
  25% { transform: translateY(-10px) rotate(5deg); opacity: 0.7; }
  50% { transform: translateY(-18px) rotate(-3deg); opacity: 1; }
  75% { transform: translateY(-8px) rotate(4deg); opacity: 0.8; }
}

.ji-content { max-width: 700px; margin: 0 auto; }
.ji-cursive { font-size: 1.5rem; display: block; margin-bottom: 12px; }

.ji-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ji-content p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* Full Timeline */
.journey-timeline-page {
  padding: clamp(40px, 4vw, 60px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(170deg, #FFFDF8 0%, #FFF9EE 40%, #FDF5E6 70%, #FFFDF8 100%);
  position: relative;
  overflow: hidden;
}

/* Corner images on timeline */
.journey-timeline-page::before,
.journey-timeline-page::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  opacity: 0.06;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  border: 2px solid rgba(201,168,76,0.08);
}

.journey-timeline-page::before {
  top: -70px;
  right: -70px;
  background-image: url('2026/04/acf7eab196a5a3405e002c2a9ff46c83-e1775016503504.jpg');
}

.journey-timeline-page::after {
  bottom: -70px;
  left: -70px;
  background-image: url('2026/04/authentic-indian-bride-groom-s-hands-holding-together-traditional-wedding-attire-scaled-e1775016570207.jpg');
}

.timeline-full {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.timeline-line-full {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gray-300), var(--gold));
  transform: translateX(-50%);
  opacity: 0.4;
}

.tf-item {
  display: flex;
  justify-content: flex-end;
  padding: 0 calc(50% + 40px) 60px 0;
  position: relative;
}

.tf-item.right {
  justify-content: flex-start;
  padding: 0 0 60px calc(50% + 40px);
}

.tf-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 9999px;
  z-index: 3;
  box-shadow: 0 0 0 5px var(--white), 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.tf-dot.gold {
  background: var(--gold);
  color: var(--gray-900);
}

.tf-dot span {
  font-family: var(--font-number);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tf-item:hover .tf-dot {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 0 6px var(--white), 0 0 24px rgba(201,168,76,0.2);
}

.tf-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.5s ease;
  max-width: 420px;
}

.tf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.2);
}

.tf-card-highlight { border-color: var(--gold); }

.tf-img {
  height: 200px;
  overflow: hidden;
}

.tf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.tf-body {
  padding: 24px;
}

.tf-body h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.tf-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* Milestones */
.milestones-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--gray-900);
}

.milestones-section .section-tag { color: var(--gold); }
.milestones-section .section-title { color: var(--white); }

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ms-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 18px;
  transition: all 0.5s ease;
}

.ms-card:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
}

.ms-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.ms-number {
  font-family: var(--font-number);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  display: inline;
}

.ms-suffix {
  font-family: var(--font-number);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: inline;
}

.ms-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 500;
}


/* ─── SERVICES PAGE ──────────────────────────────── */
.services-intro, .stories-intro {
  padding: clamp(60px, 8vw, 80px) 0;
  background: var(--white);
  text-align: center;
}

.si-content { max-width: 700px; margin: 0 auto; }
.si-cursive { font-size: 1.5rem; display: block; margin-bottom: 12px; }

.si-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.si-content p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.services-detail {
  padding: 0 0 clamp(60px, 8vw, 100px);
  background: var(--gray-50);
}

.sd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sd-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  transition: all 0.5s ease;
  align-items: flex-start;
}

.sd-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.sd-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.sd-card:hover .sd-icon {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--gold);
}

.sd-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.sd-body > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}

.sd-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sd-features li {
  font-size: 0.8125rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sd-features li i {
  color: var(--gold);
  font-size: 0.65rem;
}

/* How It Works Page */
.how-works-page {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(170deg, #FFFDF8 0%, #FFF9EE 40%, #FDF5E6 70%, #FFFDF8 100%);
  position: relative;
  overflow: hidden;
}

.how-works-page::before,
.how-works-page::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.how-works-page::before {
  top: -60px;
  right: -60px;
  background-image: url('2026/04/acf7eab196a5a3405e002c2a9ff46c83-e1775016503504.jpg');
  border: 2px solid rgba(201,168,76,0.1);
}

.how-works-page::after {
  bottom: -60px;
  left: -60px;
  background-image: url('2026/04/authentic-indian-bride-groom-s-hands-holding-together-traditional-wedding-attire-scaled-e1775016570207.jpg');
  border: 2px solid rgba(201,168,76,0.1);
}

.hwp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.hwp-step {
  text-align: center;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 1;
}

.hwp-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-200), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.hwp-step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.hwp-step:hover::before { transform: scaleX(1); }

.hwp-num {
  font-family: var(--font-number);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.hwp-step:hover .hwp-num { color: rgba(201,168,76,0.15); }

.hwp-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold-50);
  border: 2px solid var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-dark);
  transition: all 0.5s ease;
  position: relative;
}

.hwp-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  opacity: 0;
  transition: all 0.5s ease;
}

.hwp-step:hover .hwp-icon {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hwp-step:hover .hwp-icon::after {
  opacity: 1;
  animation: serviceRing 1.5s ease infinite;
}

.hwp-step h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.hwp-step:hover h4 { color: var(--gold-dark); }

.hwp-step p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.hwp-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.35;
  padding: 0 6px;
  animation: connectorPulse 2s ease infinite;
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.6; transform: translateX(4px); }
}


/* ─── STORIES PAGE ───────────────────────────────── */
.stories-grid-section {
  padding: 0 0 clamp(60px, 8vw, 100px);
  background: var(--gray-50);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.5s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.2);
}

.story-card-lg {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.story-card-lg .sc-img { min-height: 320px; }

.sc-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.15) 100%);
}

.sc-body {
  padding: 28px;
}

.sc-stars {
  color: var(--gold);
  font-size: 0.75rem;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.sc-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.sc-meta {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.sc-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.75;
  font-style: italic;
}

/* Video Testimonial */
.video-testimonial {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

.vt-placeholder {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

.vt-poster {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.vt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  z-index: 2;
}

.vt-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(201,168,76,0.4);
}

.vt-play i { margin-left: 3px; }

.vt-label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  z-index: 2;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — NEW PAGES
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tf-item, .tf-item.right { padding: 0 0 48px 80px; justify-content: flex-start; }
  .timeline-line-full { left: 30px; }
  .tf-dot { left: 30px; }
  .tf-card { margin: 0; max-width: none; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card-lg { grid-column: span 2; }
  .hwp-connector { display: none; }
  .hwp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .tf-item, .tf-item.right { padding: 0 0 36px 60px; }
  .timeline-line-full { left: 20px; }
  .tf-dot { left: 20px; font-size: 0.7rem; padding: 6px 14px; }
  .tf-img { height: 160px; }
  .milestones-grid { grid-template-columns: 1fr 1fr; }
  .ms-number { font-size: 1.75rem; }
  .sd-card { flex-direction: column; padding: 28px 24px; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card-lg { grid-column: span 1; grid-template-columns: 1fr; }
  .story-card-lg .sc-img { min-height: 220px; }
  .hwp-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .vt-poster { height: 300px; }
  .vt-play { width: 60px; height: 60px; font-size: 1.1rem; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 400px; }
  .map-container { min-height: 400px; }
  .about-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-detail-img { max-width: 450px; margin: 0 auto; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-img { min-height: 260px; }
  .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .scrolled-always { top: 0 !important; }
  .page-hero { min-height: 340px; }
  .page-hero-content { padding: 100px 0 40px; }
  .contact-cards-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-info-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-detail-stats { gap: 20px; }
  .ads-number { font-size: 1.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-cards-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-detail-stats { flex-direction: column; gap: 16px; }
}

/* ══════════════════════════════════════════════════════
   NRI WEDDING SERVICES SECTION
   ══════════════════════════════════════════════════════ */
.nri-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, #FDF8F0 0%, #F5EDE0 40%, #FBF7EC 100%);
  overflow: hidden;
}
.nri-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Grid: globe + cards ── */
.nri-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

/* ── Animated globe ── */
.nri-globe {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nri-globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  animation: nriOrbit 12s linear infinite;
}
.nri-globe-ring--2 {
  inset: 20px;
  border-style: dashed;
  border-color: rgba(201,168,76,0.2);
  animation-duration: 18s;
  animation-direction: reverse;
}
.nri-globe-core {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.08));
  border: 1.5px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nri-globe-core i {
  font-size: 2.5rem;
  color: var(--gold, #C9A84C);
  opacity: 0.8;
}
.nri-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: nriPulse 3s ease-out infinite;
}
.nri-pulse--2 {
  animation-delay: 1.5s;
}
@keyframes nriOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes nriPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── Country cards ── */
.nri-countries {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nri-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: #FFFFFF;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.nri-card:hover {
  background: #FFFDF8;
  border-color: rgba(201,168,76,0.4);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
}

/* Flag */
.nri-flag {
  flex-shrink: 0;
  width: 52px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.08);
}
.nri-flag-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card body */
.nri-card-body {
  flex: 1;
  min-width: 0;
}
.nri-card-body h4 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.1rem;
  color: var(--maroon, #1A1A1A);
  margin: 0 0 4px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nri-card-body p {
  font-size: 0.82rem;
  color: #6B6B6B;
  margin: 0;
  line-height: 1.5;
}
.nri-card:hover .nri-card-body p {
  color: #555;
}

/* Arrow */
.nri-card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nri-card-arrow i {
  font-size: 0.75rem;
  color: var(--gold, #C9A84C);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.nri-card:hover .nri-card-arrow {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
}
.nri-card:hover .nri-card-arrow i {
  opacity: 1;
  transform: translateX(2px);
}

/* ── Highlights bar ── */
.nri-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.nri-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nri-hi-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nri-hi-icon i {
  font-size: 0.9rem;
  color: var(--gold, #C9A84C);
}
.nri-highlight-item span {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── NRI Responsive ── */
@media (max-width: 900px) {
  .nri-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nri-globe {
    width: 180px;
    height: 180px;
  }
  .nri-globe-core {
    width: 80px;
    height: 80px;
  }
  .nri-globe-core i { font-size: 2rem; }
}
@media (max-width: 600px) {
  .nri-section { padding: 60px 0; }
  .nri-card { padding: 14px 16px; gap: 14px; }
  .nri-card-body h4 { font-size: 1rem; }
  .nri-card-body p { font-size: 0.78rem; }
  .nri-flag { width: 44px; height: 30px; }
  .nri-card-arrow { display: none; }
  .nri-highlights { gap: 20px; }
  .nri-highlight-item span { font-size: 0.78rem; }
  .nri-hi-icon { width: 32px; height: 32px; }
}
@media (max-width: 480px) {
  .nri-highlights { flex-direction: column; align-items: center; }
  .nri-globe { width: 150px; height: 150px; }
}

/* ══════════════════════════════════════════════════════
   MATCHMAKING PACKAGES
   ══════════════════════════════════════════════════════ */
.pkg-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(175deg, #FFFDF8 0%, #F9F3E8 50%, #FDF8F0 100%);
  overflow: hidden;
}
.pkg-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Package grid ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

/* ── Card base ── */
.pkg-card {
  position: relative;
  border-radius: 20px;
}
.pkg-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 28px;
  background: #FFFFFF;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.pkg-card:hover .pkg-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07), 0 4px 20px rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}

/* ── Featured card ── */
.pkg-card--featured .pkg-card-inner {
  background: linear-gradient(170deg, #1A1A1A 0%, #111111 100%);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 4px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,168,76,0.1);
}
.pkg-card--featured:hover .pkg-card-inner {
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(201,168,76,0.3);
}
.pkg-card--featured .pkg-tier,
.pkg-card--featured .pkg-name {
  color: #FFFFFF;
}
.pkg-card--featured .pkg-icon-svg {
  color: var(--gold, #C9A84C);
}
.pkg-card--featured .pkg-features li {
  color: rgba(255,255,255,0.7);
}
.pkg-card--featured .pkg-features li i.fa-check {
  color: var(--gold, #C9A84C);
}
.pkg-card--featured .pkg-features .pkg-feat-disabled {
  color: rgba(255,255,255,0.25);
}
.pkg-card--featured .pkg-divider span {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

/* ── NRI card accent ── */
.pkg-card--nri .pkg-card-inner {
  border-color: rgba(201,168,76,0.18);
}

/* ── Badge ── */
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 5px 20px;
  background: linear-gradient(135deg, var(--gold, #C9A84C), var(--gold-dark, #A88B3D));
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.pkg-badge--nri {
  background: linear-gradient(135deg, #2D3748, #1A202C);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ── Card header ── */
.pkg-header {
  text-align: center;
  padding-bottom: 20px;
}
.pkg-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-icon-svg {
  width: 54px;
  height: 54px;
  color: var(--gold-dark, #A88B3D);
}
.pkg-tier {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin-bottom: 6px;
}
.pkg-name {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon, #1A1A1A);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── Divider ── */
.pkg-divider {
  padding: 0 0 20px;
}
.pkg-divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

/* ── Features list ── */
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #555;
  line-height: 1.45;
}
.pkg-features li i {
  margin-top: 3px;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.pkg-features li i.fa-check {
  color: var(--gold-dark, #A88B3D);
}
.pkg-feat-disabled {
  opacity: 0.4;
}
.pkg-feat-disabled i {
  color: #999 !important;
}

/* ── CTA button ── */
.pkg-footer {
  margin-top: auto;
}
.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--gold-dark, #A88B3D);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.pkg-btn:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.pkg-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.pkg-btn:hover i {
  transform: translateX(3px);
}

/* Gold filled button for featured */
.pkg-btn--gold {
  background: linear-gradient(135deg, var(--gold, #C9A84C), var(--gold-dark, #A88B3D));
  border-color: transparent;
  color: #FFFFFF;
}
.pkg-btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-dark, #A88B3D), var(--gold-deep, #8A7030));
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}

/* ── Bottom note ── */
.pkg-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding: 18px 28px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 14px;
}
.pkg-note i {
  color: var(--gold, #C9A84C);
  font-size: 1rem;
  flex-shrink: 0;
}
.pkg-note p {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}
.pkg-note a {
  color: var(--gold-dark, #A88B3D);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pkg-note a:hover {
  color: var(--gold, #C9A84C);
}

/* ── Packages responsive ── */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 680px) {
  .pkg-section { padding: 70px 0 60px; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 32px; }
  .pkg-card-inner { padding: 32px 24px 24px; }
  .pkg-name { font-size: 1.35rem; }
  .pkg-note { flex-direction: column; text-align: center; padding: 16px 20px; }
}
