/* ══════════════════════════════════════════════════════════════
   MAYER BARI — MERGED STYLESHEET
   Includes: Core + Hero + Stats + About + Services + Gallery +
   Locations + Reviews + Blog + CTA + Footer + Rooms + Tours
   ══════════════════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold      : #b8860b;
  --gold-mid  : #d4a017;
  --gold-lt   : #f0c040;
  --gold-pale : #fdf8ed;
  --gold-bg   : #fffdf5;
  --dark      : #1a1309;
  --dark2     : #2e2210;
  --grey      : #6b6055;
  --light-grey: #f5f2ec;
  --border    : #ede8d8;
  --white     : #ffffff;
  --red       : #c0392b;
  --ff-serif  : 'Cormorant Garamond', Georgia, serif;
  --ff-sans   : 'DM Sans', sans-serif;
  --shadow-sm : 0 2px 12px rgba(184,134,11,.08);
  --shadow-md : 0 8px 32px rgba(184,134,11,.12);
  --shadow-lg : 0 16px 48px rgba(184,134,11,.15);
  --radius    : 16px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--gold-bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── ALPONA PATTERN ── */
.alpona-bg { position: relative; }
.alpona-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.4' opacity='0.18'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M40 22 L44 32 L40 40 L36 32 Z'/%3E%3Cpath d='M58 40 L48 44 L40 40 L48 36 Z'/%3E%3Cpath d='M40 58 L36 48 L40 40 L44 48 Z'/%3E%3Cpath d='M22 40 L32 36 L40 40 L32 44 Z'/%3E%3Ccircle cx='40' cy='22' r='2.5'/%3E%3Ccircle cx='58' cy='40' r='2.5'/%3E%3Ccircle cx='40' cy='58' r='2.5'/%3E%3Ccircle cx='22' cy='40' r='2.5'/%3E%3Ccircle cx='0' cy='0' r='2'/%3E%3Ccircle cx='80' cy='0' r='2'/%3E%3Ccircle cx='0' cy='80' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.alpona-bg > * { position: relative; z-index: 1; }

/* ── UTILITY ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 40px;
}
.divider span { height: 1px; flex: 1; background: var(--border); }
.divider svg { color: var(--gold); flex-shrink: 0; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(184,134,11,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,134,11,.4); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all .3s ease;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,19,9,.75) 0%,
    rgba(26,19,9,.45) 60%,
    rgba(184,134,11,.2) 100%
  );
}
.hero-border {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), var(--gold), var(--gold-lt), transparent);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184,134,11,.2);
  border: 1px solid rgba(240,192,64,.4);
  backdrop-filter: blur(8px);
  color: var(--gold-lt);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp .8s ease forwards;
}
.hero-badge::before, .hero-badge::after { content: '✦'; font-size: 0.6rem; color: var(--gold-lt); }
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 10px;
  animation: fadeUp .9s .15s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-bengali {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  animation: fadeUp .9s .25s ease both;
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp .9s .35s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .9s .45s ease both;
}
.btn-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all .3s ease;
}
.btn-hero-white:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
}
.hero-dot.active { background: var(--gold-lt); width: 28px; border-radius: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 30px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

/* ── STATS BAR ── */
.stats-bar { background: var(--dark2); padding: 28px 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ── ABOUT ── */
.about-section { padding: 100px 0; background: var(--gold-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; height: 520px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 80%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--gold-bg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  background: var(--gold);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 110px;
}
.about-badge-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-txt { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: .85; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gold-pale);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.about-feature-text h4 { font-family: var(--ff-serif); font-size: 1rem; font-weight: 600; color: var(--dark); }
.about-feature-text p { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }

/* ── SERVICES ── */
.services-section { padding: 100px 0; background: var(--light-grey); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .divider { justify-content: center; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-mid); }
.service-card-img { height: 180px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,19,9,.5), transparent);
}
.service-card-icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
}
.service-card-body { padding: 20px; flex: 1; }
.service-card-body h3 { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.service-card-body p { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }
.service-card-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0 20px 16px;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 8px; }

/* ── GALLERY ── */
.gallery-section { padding: 100px 0; background: var(--gold-bg); }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-header .divider { justify-content: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,19,9,.6), transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end;
  padding: 16px; color: #fff; font-size: 0.8rem; font-weight: 500;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; }
.g3 { grid-column: span 3; }
.g4 { grid-column: span 3; }
.g5 { grid-column: span 4; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ── LOCATIONS ── */
.locations-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.locations-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23b8860b' opacity='0.15'/%3E%3C/svg%3E");
}
.locations-section .section-title { color: #fff; }
.locations-section .section-desc { color: rgba(255,255,255,.6); }
.locations-header { text-align: center; margin-bottom: 60px; }
.locations-header .divider span { background: rgba(255,255,255,.1); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,134,11,.25);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s ease;
  text-decoration: none; color: inherit; display: block;
  backdrop-filter: blur(4px);
}
.location-card:hover { background: rgba(184,134,11,.08); border-color: var(--gold-mid); transform: translateY(-4px); }
.location-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.location-num { font-family: var(--ff-serif); font-size: 3rem; font-weight: 700; color: rgba(184,134,11,.25); line-height: 1; }
.location-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(184,134,11,.2); color: var(--gold-lt);
  padding: 4px 10px; border-radius: 50px;
}
.location-name { font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.location-addr { font-size: 0.8rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.location-footer {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 0.75rem; color: var(--gold-mid); font-weight: 500;
}

/* ── REVIEWS ── */
.reviews-section { padding: 100px 0; background: var(--gold-pale); }
.reviews-header { text-align: center; margin-bottom: 60px; }
.reviews-header .divider { justify-content: center; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow .3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-quote { font-size: 4rem; line-height: .7; color: var(--gold-lt); font-family: Georgia, serif; margin-bottom: 16px; display: block; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; font-size: 0.9rem; color: var(--gold); }
.review-text { font-size: 0.92rem; color: var(--grey); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-name { font-family: var(--ff-serif); font-size: 1rem; font-weight: 600; color: var(--dark); }
.review-event { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── BLOG ── */
.blog-section { padding: 100px 0; background: var(--white); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { height: 220px; overflow: hidden; position: relative; }
.blog-card.featured .blog-img { height: 280px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.05em; margin-bottom: 10px; }
.blog-body h3 { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 600; color: var(--dark); line-height: 1.35; margin-bottom: 12px; flex: 1; }
.blog-card.featured .blog-body h3 { font-size: 1.6rem; }
.blog-body p { font-size: 0.82rem; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.blog-link { font-size: 0.78rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── CONTACT / CTA ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,134,11,.15), transparent 60%);
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-content .section-title { color: #fff; }
.cta-content .section-desc { color: rgba(255,255,255,.65); }
.cta-content .divider span { background: rgba(255,255,255,.1); }
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-row .form-group { margin-bottom: 16px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,134,11,.2); border-radius: 8px;
  padding: 12px 16px; color: #fff; font-family: var(--ff-sans); font-size: 0.9rem;
  outline: none; transition: border-color .2s;
  display: block; box-sizing: border-box; -webkit-appearance: none; appearance: none;
  position: relative; z-index: 1;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8860b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-mid); }
.form-group select option { background: var(--dark2); color: #fff; }
.form-group textarea { height: 100px; resize: none; }
.contact-info { margin-top: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; color: rgba(255,255,255,.7); }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(184,134,11,.15); border: 1px solid rgba(184,134,11,.25);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); flex-shrink: 0; font-size: 1rem;
}
.contact-info-text strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 2px; }
.contact-info-text span { font-size: 0.8rem; }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid rgba(184,134,11,.15); padding: 60px 0 30px; color: rgba(255,255,255,.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 12px; display: block; }
.footer-desc { font-size: 0.83rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; font-size: 0.85rem; transition: all .2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-heading { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5); text-decoration: none; font-size: 0.83rem; transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem;
}
.footer-bottom-logo { font-family: var(--ff-serif); color: var(--gold); font-size: 1rem; font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes puja-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   ROOMS SECTION
   ══════════════════════════════════════════════════════════════ */
.rooms-section {
  padding: 100px 0;
  background: var(--gold-bg);
  position: relative;
  overflow: hidden;
}
.rooms-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.4' opacity='0.12'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M40 22 L44 32 L40 40 L36 32 Z'/%3E%3Cpath d='M58 40 L48 44 L40 40 L48 36 Z'/%3E%3Cpath d='M40 58 L36 48 L40 40 L44 48 Z'/%3E%3Cpath d='M22 40 L32 36 L40 40 L32 44 Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.rooms-section > * { position: relative; z-index: 1; }
.rooms-header { text-align: center; margin-bottom: 64px; }
.rooms-header .divider { justify-content: center; }
.rooms-header .section-desc { margin: 0 auto; text-align: center; }

/* Room filter tabs */
.room-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.room-tab {
  padding: 9px 22px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--border); background: transparent; color: var(--grey);
  cursor: pointer; transition: all .25s ease; font-family: var(--ff-sans);
}
.room-tab:hover, .room-tab.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Rooms grid */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Room card */
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-mid); }

/* Room image */
.room-card-img {
  height: 220px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2e2210, #4a3518);
  display: flex; align-items: center; justify-content: center;
}
.room-card-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.room-card-img-placeholder .room-icon { font-size: 3rem; opacity: .7; }
.room-card-img-placeholder span {
  font-family: var(--ff-serif); font-size: 0.85rem;
  color: rgba(255,255,255,.4); letter-spacing: 0.1em; text-transform: uppercase;
}
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card-img img { transform: scale(1.07); }

/* Room badges */
.room-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.room-badge.badge-deluxe { background: #8b1a1a; }
.room-badge.badge-premium { background: var(--dark2); }
.room-meal-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(26,19,9,.7); backdrop-filter: blur(6px);
  border: 1px solid rgba(240,192,64,.35); color: var(--gold-lt);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
  display: flex; align-items: center; gap: 4px;
}

/* Room body */
.room-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.room-name { font-family: var(--ff-serif); font-size: 1.45rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.room-location {
  font-size: 0.72rem; color: var(--grey); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 4px;
}
.room-location svg { color: var(--gold); flex-shrink: 0; }

/* Room price */
.room-price-row {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px;
  padding: 12px 16px; background: var(--gold-pale);
  border-radius: 10px; border: 1px solid var(--border);
}
.room-price-from { font-size: 0.7rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }
.room-price-amount { font-family: var(--ff-serif); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.room-price-unit { font-size: 0.72rem; color: var(--grey); }

/* Room amenities */
.room-amenities { margin-bottom: 16px; }
.room-amenities-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.amenities-list { display: flex; flex-wrap: wrap; gap: 7px; }
.amenity-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.73rem; color: var(--grey);
  background: var(--light-grey); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px; transition: all .2s;
}
.room-card:hover .amenity-tag { border-color: rgba(184,134,11,.3); }
.amenity-tag span { font-size: 0.85rem; }

/* Room includes */
.room-includes { border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }
.room-includes-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.room-include-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--grey); margin-bottom: 6px;
}
.room-include-item::before { content: '✦'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; }

/* Room footer */
.room-card-footer { padding: 16px 22px; border-top: 1px solid var(--border); display: flex; gap: 10px; }
.room-card-footer a { flex: 1; text-align: center; font-size: 0.8rem; }

/* ── PUJA BANNER ── */
.puja-banner {
  margin: 60px 0 0;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: var(--radius);
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border: 1px solid rgba(184,134,11,.25);
  position: relative; overflow: hidden;
}
.puja-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(240,192,64,.12), transparent 70%);
  pointer-events: none;
}
.puja-banner-icons { display: flex; gap: 16px; flex-shrink: 0; }
.puja-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(184,134,11,.15); border: 1px solid rgba(184,134,11,.3);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  animation: puja-pulse 3s ease-in-out infinite;
}
.puja-icon-wrap:nth-child(2) { animation-delay: .5s; }
.puja-icon-wrap:nth-child(3) { animation-delay: 1s; }
.puja-banner-content .section-label { color: var(--gold-lt); }
.puja-banner-content h3 {
  font-family: var(--ff-serif); font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff; margin-bottom: 10px;
}
.puja-banner-content p { color: rgba(255,255,255,.65); font-size: 0.9rem; line-height: 1.7; max-width: 460px; }
.puja-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.puja-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(184,134,11,.15); border: 1px solid rgba(240,192,64,.25);
  color: var(--gold-lt); padding: 5px 14px; border-radius: 50px;
  font-size: 0.74rem; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   TOURS SECTION
   ══════════════════════════════════════════════════════════════ */
.tours-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.tours-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(184,134,11,.1), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(184,134,11,.08), transparent 50%);
}
.tours-section > * { position: relative; z-index: 1; }
.tours-header { text-align: center; margin-bottom: 64px; }
.tours-header .section-title { color: #fff; }
.tours-header .section-desc { color: rgba(255,255,255,.6); margin: 0 auto; text-align: center; }
.tours-header .divider span { background: rgba(255,255,255,.1); }

/* Tour grid */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }

/* Tour card */
.tour-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: var(--radius);
  overflow: hidden; backdrop-filter: blur(4px);
  transition: all .35s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; position: relative;
}
.tour-card:hover { transform: translateY(-6px); border-color: var(--gold-mid); background: rgba(255,255,255,.07); box-shadow: 0 20px 60px rgba(0,0,0,.4); }

/* Tour image */
.tour-card-img {
  height: 230px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1f1a, #1a3528);
}
.tour-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.tour-card-img-placeholder .tour-emoji { font-size: 4rem; opacity: .6; }
.tour-card-img-placeholder span {
  font-family: var(--ff-serif); font-size: 0.9rem;
  color: rgba(255,255,255,.3); letter-spacing: 0.12em; text-transform: uppercase;
}
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.08); }
.tour-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,6,.8) 0%, transparent 60%);
}
.tour-distance-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(26,19,9,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(240,192,64,.3); color: var(--gold-lt);
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.tour-nights-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--gold); color: #fff;
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* Tour body */
.tour-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-name { font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tour-tagline { font-size: 0.78rem; color: var(--gold-lt); font-style: italic; margin-bottom: 16px; font-family: var(--ff-serif); }
.tour-desc { font-size: 0.83rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }

/* Tour highlights */
.tour-highlights { margin-bottom: 18px; }
.tour-highlights-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 10px;
}
.tour-hl-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tour-hl-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(184,134,11,.12); border: 1px solid rgba(184,134,11,.2);
  color: rgba(255,255,255,.75); padding: 4px 10px; border-radius: 6px;
  font-size: 0.72rem; transition: all .2s;
}
.tour-card:hover .tour-hl-tag { border-color: rgba(184,134,11,.4); }

/* Tour footer */
.tour-footer {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.tour-price-label { font-size: 0.62rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 0.1em; }
.tour-price { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.tour-price small { font-size: 0.75rem; color: rgba(255,255,255,.4); font-family: var(--ff-sans); font-weight: 400; }
.tour-book-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fff; font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer; transition: all .3s; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(184,134,11,.25);
}
.tour-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,134,11,.4); }

/* Tour includes strip */
.tour-includes-strip {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.tour-inc { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; color: rgba(255,255,255,.5); }
.tour-inc span { font-size: 0.85rem; }

/* Featured tour — spans 2 columns */
.tour-card.featured { grid-column: span 2; flex-direction: row; }
.tour-card.featured .tour-card-img { width: 46%; min-width: 46%; height: auto; flex-shrink: 0; border-radius: 0; }
.tour-card.featured .tour-name { font-size: 2rem; }

/* Tours CTA bar */
.tours-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(184,134,11,.08); border: 1px solid rgba(184,134,11,.2);
  border-radius: var(--radius); padding: 28px 36px;
  gap: 24px; flex-wrap: wrap;
}
.tours-cta-bar-text h4 { font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tours-cta-bar-text p { font-size: 0.83rem; color: rgba(255,255,255,.55); }
.tours-cta-bar-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.7);
  font-family: var(--ff-sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 26px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.2); cursor: pointer; transition: all .3s; text-decoration: none;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Existing */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 380px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; }
  .g1 { grid-column: span 3; height: 250px; }
  .g2, .g3, .g4, .g5 { grid-column: span 1; height: 180px; }
  /* New */
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card.featured { grid-column: span 2; flex-direction: column; }
  .tour-card.featured .tour-card-img { width: 100%; height: 250px; }
  .puja-banner { padding: 32px; }
}
@media (max-width: 768px) {
  /* Existing */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { display: flex; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g1 { grid-column: span 2; height: 200px; }
  .g2 { grid-column: span 2; height: 160px; }
  .g3, .g4, .g5 { grid-column: span 1; height: 140px; }
  .about-features { grid-template-columns: 1fr; }
  /* New */
  .rooms-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .tour-card.featured { grid-column: span 1; }
  .puja-banner { flex-direction: column; text-align: center; }
  .puja-banner-icons { justify-content: center; }
  .puja-banner-content p { max-width: 100%; }
  .puja-items { justify-content: center; }
  .tours-cta-bar { flex-direction: column; text-align: center; }
  .tours-cta-bar-btns { justify-content: center; }
}
@media (max-width: 480px) {
  /* Existing */
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .g1,.g2,.g3,.g4,.g5 { grid-column: span 1; height: 180px; }
}


/* ══════════════════════════════════
   EXPERIENCES SECTION
══════════════════════════════════ */
.exp-section{
  padding:100px 0;
  background:var(--dark);
  position:relative;overflow:hidden;
}
.exp-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 15% 25%,rgba(184,134,11,.13),transparent 50%),
    radial-gradient(ellipse at 85% 75%,rgba(184,134,11,.09),transparent 50%);
  pointer-events:none;z-index:0;
}
.exp-section::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(240,192,64,.06) 1px,transparent 1px);
  background-size:44px 44px;
  pointer-events:none;z-index:0;
}
.exp-section>.container{position:relative;z-index:1}
.exp-header{text-align:center;margin-bottom:72px}
.exp-header .section-title{color:#fff}
.exp-header .section-desc{color:rgba(255,255,255,.55);margin:0 auto}
.exp-header .divider span{background:rgba(255,255,255,.1)}
 
/* zigzag list */
.exp-list{display:flex;flex-direction:column}
.exp-item{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:500px;
  position:relative;
}
.exp-item::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(184,134,11,.2),transparent);
}
.exp-item:nth-child(even) .exp-img{order:2}
.exp-item:nth-child(even) .exp-body{order:1}
 
/* image pane */
.exp-img{position:relative;overflow:hidden}
.exp-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .9s cubic-bezier(.22,1,.36,1);
}
.exp-item:hover .exp-img img{transform:scale(1.07)}
.exp-img-shade{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(10,8,4,.5) 0%,rgba(184,134,11,.15) 100%);
}
.exp-img-num{
  position:absolute;bottom:16px;left:22px;
  font-family:var(--ff-serif);font-size:7rem;font-weight:700;
  color:rgba(255,255,255,.06);line-height:1;pointer-events:none;
  user-select:none;
}
.exp-pill{
  position:absolute;top:18px;left:18px;
  background:rgba(26,19,9,.65);backdrop-filter:blur(10px);
  border:1px solid rgba(240,192,64,.3);color:var(--gold-lt);
  font-size:.6rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  padding:5px 14px;border-radius:50px;z-index:2;
}
 
/* text pane */
.exp-body{
  background:rgba(255,255,255,.025);
  border-left:1px solid rgba(184,134,11,.12);
  padding:60px 64px;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.exp-item:nth-child(even) .exp-body{
  border-left:none;
  border-right:1px solid rgba(184,134,11,.12);
}
.exp-body::before{
  content:'';position:absolute;top:-100px;right:-100px;
  width:320px;height:320px;
  background:radial-gradient(circle,rgba(240,192,64,.06),transparent 65%);
  pointer-events:none;
}
.exp-icon-wrap{
  width:56px;height:56px;
  background:rgba(184,134,11,.15);border:1px solid rgba(184,134,11,.25);
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  font-size:1.7rem;margin-bottom:22px;
}
.exp-body h3{
  font-family:var(--ff-serif);font-size:clamp(1.9rem,3vw,2.8rem);
  font-weight:700;color:#fff;line-height:1.1;margin-bottom:6px;
}
.exp-body .exp-bengali{
  font-family:var(--ff-serif);font-style:italic;font-size:1rem;
  color:var(--gold-lt);opacity:.8;margin-bottom:20px;
}
.exp-body p{
  font-size:.92rem;color:rgba(255,255,255,.58);
  line-height:1.82;margin-bottom:28px;
}
.exp-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px}
.exp-chip{
  display:inline-flex;align-items:center;gap:5px;
  background:rgba(184,134,11,.1);border:1px solid rgba(184,134,11,.2);
  color:rgba(255,255,255,.65);padding:5px 12px;border-radius:6px;
  font-size:.73rem;transition:all .25s ease;
}
.exp-item:hover .exp-chip{
  background:rgba(184,134,11,.18);border-color:rgba(184,134,11,.4);
}
 
/* ══════════════════════════════════
   WEDDING CEREMONIES SECTION
══════════════════════════════════ */
.wed-section{
  padding:100px 0;
  background:var(--gold-pale);
  position:relative;overflow:hidden;
}
.wed-section::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.4' opacity='0.13'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M40 22 L44 32 L40 40 L36 32 Z'/%3E%3Cpath d='M58 40 L48 44 L40 40 L48 36 Z'/%3E%3Cpath d='M40 58 L36 48 L40 40 L44 48 Z'/%3E%3Cpath d='M22 40 L32 36 L40 40 L32 44 Z'/%3E%3Ccircle cx='40' cy='22' r='2.5'/%3E%3Ccircle cx='58' cy='40' r='2.5'/%3E%3Ccircle cx='40' cy='58' r='2.5'/%3E%3Ccircle cx='22' cy='40' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none;z-index:0;
}
.wed-section>.container{position:relative;z-index:1}
.wed-header{text-align:center;margin-bottom:72px}
.wed-header .divider{justify-content:center}
 
/* zigzag list */
.wed-list{display:flex;flex-direction:column}
.wed-item{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:440px;
  position:relative;
}
.wed-item::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(184,134,11,.22),transparent);
}
.wed-item:nth-child(even) .wed-img{order:2}
.wed-item:nth-child(even) .wed-body{order:1}
 
/* image pane */
.wed-img{position:relative;overflow:hidden}
.wed-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .9s cubic-bezier(.22,1,.36,1);
}
.wed-item:hover .wed-img img{transform:scale(1.06)}
.wed-img-shade{
  position:absolute;inset:0;
  background:linear-gradient(to bottom right,rgba(26,19,9,.25),rgba(184,134,11,.08));
}
.wed-step-badge{
  position:absolute;top:18px;left:18px;
  width:48px;height:48px;
  background:var(--gold);color:#fff;
  font-family:var(--ff-serif);font-size:1.25rem;font-weight:700;
  border-radius:12px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 18px rgba(184,134,11,.45);z-index:2;
}
 
/* text pane */
.wed-body{
  background:var(--white);
  border-right:1px solid var(--border);
  padding:56px 60px;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.wed-item:nth-child(even) .wed-body{
  border-right:none;
  border-left:1px solid var(--border);
}
.wed-body::after{
  content:'';position:absolute;bottom:-80px;right:-80px;
  width:240px;height:240px;
  background:radial-gradient(circle,rgba(184,134,11,.05),transparent 65%);
  pointer-events:none;
}
.wed-icon-wrap{
  font-size:2.4rem;margin-bottom:18px;display:inline-block;
}
.wed-body h3{
  font-family:var(--ff-serif);font-size:clamp(1.8rem,3vw,2.6rem);
  font-weight:700;color:var(--dark);line-height:1.1;margin-bottom:6px;
}
.wed-body .wed-sub{
  font-family:var(--ff-serif);font-style:italic;font-size:.95rem;
  color:var(--gold);margin-bottom:18px;
}
.wed-body p{
  font-size:.91rem;color:var(--grey);line-height:1.82;margin-bottom:26px;
}
.wed-chips{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:28px}
.wed-chip{
  display:inline-flex;align-items:center;gap:5px;
  background:var(--gold-pale);border:1px solid var(--border);
  color:var(--grey);padding:4px 11px;border-radius:6px;
  font-size:.72rem;transition:all .25s ease;
}
.wed-item:hover .wed-chip{
  border-color:rgba(184,134,11,.35);color:var(--gold);
}
.wed-bottom-cta{
  text-align:center;margin-top:64px;padding-top:48px;
  border-top:1px solid var(--border);
}
.wed-bottom-cta p{
  font-family:var(--ff-serif);font-size:1.25rem;font-style:italic;
  color:var(--grey);margin-bottom:24px;
}
 
/* ── RESPONSIVE ── */
@media(max-width:900px){
  .exp-item,.wed-item{
    grid-template-columns:1fr;min-height:auto;
  }
  .exp-item:nth-child(even) .exp-img,
  .wed-item:nth-child(even) .wed-img{order:0}
  .exp-item:nth-child(even) .exp-body,
  .wed-item:nth-child(even) .wed-body{order:0}
  .exp-img,.wed-img{height:300px}
  .exp-body{padding:40px 32px;border-left:none!important;border-right:none!important;border-top:1px solid rgba(184,134,11,.12)}
  .wed-body{padding:40px 32px;border-left:none!important;border-right:none!important;border-top:1px solid var(--border)}
}
@media(max-width:600px){
  .exp-img,.wed-img{height:240px}
  .exp-body,.wed-body{padding:32px 20px}
  .exp-body h3,.wed-body h3{font-size:1.8rem}
  .exp-body::before{display:none}
}

/* ══════════════════════════════════════════════════════════════
   ADD THESE AT THE END OF YOUR style.css
   ══════════════════════════════════════════════════════════════ */
 
/* ── Bengali Font ── */
@import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla:ital@0;1&display=swap');
 
/* ══════════════════════════════════
   SCROLL ANIMATIONS (side-wise)
══════════════════════════════════ */
.anim-left  { opacity:0; transform:translateX(-60px); transition:opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.anim-right { opacity:0; transform:translateX(60px);  transition:opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.anim-up    { opacity:0; transform:translateY(48px);  transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.anim-left.in, .anim-right.in, .anim-up.in { opacity:1; transform:translate(0,0); }
 
/* ══════════════════════════════════
   EXPERIENCES SECTION  (light bg)
══════════════════════════════════ */
.exp2-section {
  background: var(--gold-bg);
  overflow: hidden;
  position: relative;
}
.exp2-section::before {
  content:'';
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.35' opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M40 22 L44 32 L40 40 L36 32 Z'/%3E%3Cpath d='M58 40 L48 44 L40 40 L48 36 Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none; z-index:0;
}
.exp2-section > * { position:relative; z-index:1; }
 
.exp2-head {
  padding: 90px 0 56px;
  text-align: center;
}
.exp2-head .section-title { color: var(--dark); }
.exp2-head .section-desc  { color: var(--grey); margin: 0 auto; }
.exp2-bangla-tag {
  font-family: 'Tiro Bangla', Georgia, serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--gold); display: block;
  margin: 4px 0 16px;
}
 
/* zigzag rows */
.exp2-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-top: 1px solid var(--border);
  position: relative;
}
.exp2-item:nth-child(even) .exp2-img  { order: 2; }
.exp2-item:nth-child(even) .exp2-body { order: 1; }
 
/* image pane */
.exp2-img { position: relative; overflow: hidden; }
.exp2-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.exp2-item:hover .exp2-img img { transform: scale(1.06); }
.exp2-img-shade {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,19,9,.18) 0%, rgba(184,134,11,.06) 100%);
}
.exp2-num {
  position: absolute; bottom: 8px; left: 16px;
  font-family: var(--ff-serif); font-size: 6rem; font-weight: 700;
  color: rgba(26,19,9,.06); line-height: 1;
  pointer-events: none; user-select: none;
}
.exp2-pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,253,245,.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(184,134,11,.3); color: var(--gold);
  font-family: 'Tiro Bangla', Georgia, serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 50px; z-index: 2;
}
 
/* text pane */
.exp2-body {
  background: var(--white);
  border-left: 1px solid var(--border);
  padding: 56px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.exp2-item:nth-child(even) .exp2-body {
  border-left: none;
  border-right: 1px solid var(--border);
}
.exp2-body::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,134,11,.05), transparent 65%);
  pointer-events: none;
}
.exp2-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.exp2-body h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 4px;
}
.exp2-sub {
  font-family: 'Tiro Bangla', Georgia, serif;
  font-style: italic; font-size: .95rem;
  color: var(--gold); margin-bottom: 16px;
}
.exp2-body p {
  font-size: .9rem; color: var(--grey);
  line-height: 1.85; margin-bottom: 22px;
}
.exp2-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.exp2-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold-pale); border: 1px solid var(--border);
  color: var(--grey); padding: 4px 11px; border-radius: 6px;
  font-size: .7rem; transition: all .25s;
}
.exp2-item:hover .exp2-chip { border-color: rgba(184,134,11,.35); color: var(--gold); }
 
/* ══════════════════════════════════
   PRICE SLAB SECTION
══════════════════════════════════ */
.pslab-section {
  padding: 90px 0;
  background: var(--light-grey);
  position: relative; overflow: hidden;
}
.pslab-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.35' opacity='0.08'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.pslab-section > * { position: relative; z-index: 1; }
 
.pslab-header { text-align: center; margin-bottom: 56px; }
.pslab-bangla {
  font-family: 'Tiro Bangla', Georgia, serif;
  font-size: .95rem; font-style: italic;
  color: var(--gold); display: block; margin: 4px 0 16px;
}
 
/* 3-col grid */
.pslab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
 
/* card */
.pslab-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .35s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.pslab-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-mid); }
.pslab-featured {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 2px rgba(212,160,23,.2), var(--shadow-md);
}
 
/* best value ribbon */
.pslab-best {
  position: absolute; top: 0; right: 22px;
  background: var(--gold); color: #fff;
  font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 8px 8px; z-index: 3;
}
 
/* image */
.pslab-img {
  height: 175px; position: relative; overflow: hidden;
}
.pslab-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pslab-card:hover .pslab-img img { transform: scale(1.07); }
.pslab-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.pslab-badge-deluxe  { background: #8b1a1a !important; }
.pslab-badge-premium { background: var(--dark2) !important; }
.pslab-meal {
  position: absolute; top: 12px; right: 12px;
  background: rgba(26,19,9,.65); backdrop-filter: blur(6px);
  border: 1px solid rgba(240,192,64,.3); color: var(--gold-lt);
  font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
 
/* body */
.pslab-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.pslab-name { font-family: var(--ff-serif); font-size: 1.45rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.pslab-loc {
  font-size: .68rem; color: var(--grey); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 4px;
}
 
/* price row */
.pslab-price-row {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 14px; background: var(--gold-pale);
  border-radius: 8px; border: 1px solid var(--border);
  margin-bottom: 14px;
}
.pslab-from { font-size: .62rem; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; }
.pslab-price { font-family: var(--ff-serif); font-size: 1.85rem; font-weight: 700; color: var(--gold); line-height: 1; }
.pslab-per { font-size: .68rem; color: var(--grey); }
 
/* tags */
.pslab-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pslab-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; color: var(--grey);
  background: var(--light-grey); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 5px; transition: border-color .2s;
}
.pslab-card:hover .pslab-tag { border-color: rgba(184,134,11,.3); }
 
/* includes */
.pslab-includes {
  list-style: none; border-top: 1px solid var(--border);
  padding-top: 12px; margin-bottom: 18px; flex: 1;
}
.pslab-includes li {
  font-size: .75rem; color: var(--grey);
  padding: 4px 0; display: flex; align-items: flex-start; gap: 7px;
}
.pslab-includes li::before { content: '✦'; color: var(--gold); font-size: .5rem; flex-shrink: 0; margin-top: 4px; }
 
/* footer */
.pslab-footer { display: flex; gap: 10px; padding: 0 22px 20px; }
.pslab-footer a { flex: 1; text-align: center; font-size: .78rem; }
 
/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .pslab-grid { grid-template-columns: repeat(2, 1fr); }
  .pslab-grid .pslab-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .exp2-item { grid-template-columns: 1fr; min-height: auto; }
  .exp2-item:nth-child(even) .exp2-img  { order: 0; }
  .exp2-item:nth-child(even) .exp2-body { order: 0; }
  .exp2-img { height: 280px; }
  .exp2-body {
    padding: 36px 28px;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--border);
  }
  .exp2-body::before { display: none; }
}
@media (max-width: 768px) {
  .pslab-grid { grid-template-columns: 1fr; }
  .pslab-grid .pslab-card:last-child { grid-column: span 1; max-width: 100%; }
  .exp2-head { padding: 60px 0 40px; }
}
@media (max-width: 600px) {
  .exp2-img { height: 230px; }
  .exp2-body { padding: 28px 18px; }
  .exp2-body h3 { font-size: 1.75rem; }
}

/* Constrain experience rows to container width */
.exp2-list-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
 
.exp2-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.exp2-item:hover { box-shadow: var(--shadow-md); }
.exp2-item::after { display: none; } /* remove old full-width border */
 
/* on mobile stack fully */
@media (max-width: 900px) {
  .exp2-list-wrap { padding: 0 16px; }
}
 

 /* ══════════════════════════════════════════════════
   PASTE AT THE VERY END of style.css
   Uses .exp2-flip class set by PHP — reliable zigzag
══════════════════════════════════════════════════ */

/* Section background */
.exp2-section {
  background: var(--gold-bg);
  position: relative;
  overflow: hidden;
}
.exp2-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.35' opacity='0.09'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.exp2-section > * { position: relative; z-index: 1; }

/* Header */
.exp2-head { padding: 80px 0 52px; text-align: center; }
.exp2-head .section-title { color: var(--dark); }
.exp2-head .section-desc  { color: var(--grey); margin: 0 auto; }
.exp2-bangla-tag {
  font-family: 'Tiro Bangla', Georgia, serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--gold); display: block; margin: 4px 0 14px;
}

/* Row wrapper — container padding reset */
.exp2-row-wrap { padding-top: 0 !important; padding-bottom: 0 !important; margin-bottom: 24px; }

/* The card */
.exp2-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(184,134,11,.07);
  transition: box-shadow .35s, transform .35s;
}
.exp2-item:hover {
  box-shadow: 0 12px 40px rgba(184,134,11,.14);
  transform: translateY(-3px);
}
/* kill old ::after line */
.exp2-item::after { display: none !important; }

/* ── DEFAULT (odd): image LEFT, text RIGHT ── */
.exp2-item .exp2-img  { order: 1; }
.exp2-item .exp2-body { order: 2; }

/* ── FLIPPED (even): text LEFT, image RIGHT ── */
.exp2-item.exp2-flip .exp2-img  { order: 2; }
.exp2-item.exp2-flip .exp2-body { order: 1; }

/* Image pane */
.exp2-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.exp2-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.exp2-item:hover .exp2-img img { transform: scale(1.05); }
.exp2-img-shade {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,19,9,.15), transparent 60%);
}
.exp2-pill {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,253,245,.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(184,134,11,.3); color: var(--gold);
  font-family: 'Tiro Bangla', Georgia, serif;
  font-size: .72rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
}
.exp2-num {
  position: absolute; bottom: 10px; left: 18px;
  font-family: var(--ff-serif); font-size: 6rem; font-weight: 700;
  color: rgba(26,19,9,.05); line-height: 1;
  pointer-events: none; user-select: none;
}

/* Text pane */
.exp2-body {
  background: var(--white);
  padding: 48px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.exp2-body::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(184,134,11,.04), transparent 65%);
  pointer-events: none;
}
.exp2-icon-wrap {
  width: 50px; height: 50px;
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.exp2-body h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 5px;
}
.exp2-sub {
  font-family: 'Tiro Bangla', Georgia, serif;
  font-style: italic; font-size: .92rem;
  color: var(--gold); margin-bottom: 14px;
}
.exp2-body p {
  font-size: .88rem; color: var(--grey);
  line-height: 1.82; margin-bottom: 20px;
}
.exp2-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.exp2-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold-pale); border: 1px solid var(--border);
  color: var(--grey); padding: 4px 11px; border-radius: 6px;
  font-size: .7rem; transition: border-color .2s, color .2s;
}
.exp2-item:hover .exp2-chip { border-color: rgba(184,134,11,.35); color: var(--gold); }

/* ══════════════════════════════════
   TABLET  ≤ 900px
══════════════════════════════════ */
@media (max-width: 900px) {
  .exp2-item,
  .exp2-item.exp2-flip {
    grid-template-columns: 1fr !important;
  }
  /* image always on top */
  .exp2-item     .exp2-img,
  .exp2-item.exp2-flip .exp2-img  { order: 1 !important; min-height: 260px; position: relative; }
  .exp2-item     .exp2-body,
  .exp2-item.exp2-flip .exp2-body { order: 2 !important; }
  .exp2-img img { position: absolute; inset: 0; }
  .exp2-body { padding: 32px 28px; }
}

/* ══════════════════════════════════
   MOBILE  ≤ 480px
══════════════════════════════════ */
@media (max-width: 480px) {
  .exp2-item     .exp2-img,
  .exp2-item.exp2-flip .exp2-img { min-height: 220px; }
  .exp2-body { padding: 26px 18px; }
  .exp2-body h3 { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   PASTE AT END OF style.css
   Clean rewrite: Destination Wedding + Services Price Slab
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   DESTINATION WEDDING
───────────────────────────────────── */

.dws {
  background: var(--gold-pale);
  position: relative;
}
.dws::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.4' opacity='0.07'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/svg%3E");
}

/* Dark header banner */
.dws-banner {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
}
.dws-banner::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 130%, rgba(184,134,11,.2), transparent 60%);
}
.dws-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.dws-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin: 10px 0 8px;
}
.dws-bangla {
  font-family: 'Tiro Bangla', Georgia, serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--gold-lt); display: block; margin-bottom: 18px;
}
.dws-sub {
  font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7;
}

/* ── Zigzag list ── */
.dws-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; z-index: 1;
}

/* Each row = 2-col grid */
.dws-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(184,134,11,.08);
  transition: box-shadow .3s, transform .3s;
}
.dws-row:hover {
  box-shadow: 0 12px 36px rgba(184,134,11,.15);
  transform: translateY(-3px);
}

/* Default: img LEFT col-1, text col-2 */
.dws-row .dws-img-wrap { grid-column: 1; grid-row: 1; }
.dws-row .dws-text     { grid-column: 2; grid-row: 1; }

/* Flipped: img RIGHT col-2, text col-1 */
.dws-row-flip .dws-img-wrap { grid-column: 2; grid-row: 1; }
.dws-row-flip .dws-text     { grid-column: 1; grid-row: 1; }

/* Image pane */
.dws-img-wrap {
  position: relative;
  overflow: hidden;
}
.dws-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.dws-row:hover .dws-img-wrap img { transform: scale(1.05); }
.dws-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: #fff;
  font-family: var(--ff-serif); font-size: 1rem; font-weight: 700;
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(184,134,11,.4);
}

/* Text pane */
.dws-text {
  background: var(--white);
  padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; position: relative;
}
.dws-text::after {
  content: '';
  position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184,134,11,.04), transparent 65%);
  pointer-events: none;
}
.dws-icon   { font-size: 2rem; line-height: 1; margin-bottom: 12px; display: block; }
.dws-name   { font-family: var(--ff-serif); font-size: clamp(1.6rem,2.4vw,2.2rem); font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dws-bn     { font-family: 'Tiro Bangla', Georgia, serif; font-style: italic; font-size: .88rem; color: var(--gold); display: block; margin-bottom: 12px; }
.dws-desc   { font-size: .85rem; color: var(--grey); line-height: 1.78; margin-bottom: 16px; }
.dws-tags   { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.dws-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gold-pale); border: 1px solid var(--border);
  color: var(--grey); padding: 3px 10px; border-radius: 5px; font-size: .68rem;
  transition: border-color .2s, color .2s;
}
.dws-row:hover .dws-tag { border-color: rgba(184,134,11,.4); color: var(--gold); }


/* ─────────────────────────────────────
   SERVICES PRICE SLAB
───────────────────────────────────── */

.sps {
  padding: 90px 0;
  /* warm light gradient — suits events */
  background: linear-gradient(160deg, #fffdf5 0%, #fdf3dc 40%, #fef8ea 75%, #fffdf5 100%);
  position: relative;
}
.sps::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23b8860b' stroke-width='0.4' opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cpath d='M40 22 L44 32 L40 40 L36 32 Z'/%3E%3Cpath d='M58 40 L48 44 L40 40 L48 36 Z'/%3E%3Cpath d='M40 58 L36 48 L40 40 L44 48 Z'/%3E%3C/g%3E%3C/svg%3E");
}
.sps > * { position: relative; z-index: 1; }

.sps-head { text-align: center; margin-bottom: 52px; }

/* 4-column grid */
.sps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

/* Card */
.sps-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.sps-card:hover {
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Icon + name + price */
.sps-top { display: flex; align-items: flex-start; gap: 12px; }
.sps-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: border-color .2s;
}
.sps-card:hover .sps-icon { border-color: rgba(184,134,11,.35); }
.sps-info { flex: 1; min-width: 0; }
.sps-name { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; line-height: 1.2; }
.sps-price-row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.sps-from  { font-size: .58rem; color: var(--grey); text-transform: uppercase; letter-spacing: .06em; }
.sps-price { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); line-height: 1; }
.sps-unit  { font-size: .6rem; color: var(--grey); }

/* Points */
.sps-pts {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border); padding-top: 10px; flex: 1;
}
.sps-pts li {
  font-size: .72rem; color: var(--grey);
  padding: 2px 0; display: flex; align-items: flex-start; gap: 6px;
}
.sps-pts li::before { content: '✦'; color: var(--gold); font-size: .45rem; flex-shrink: 0; margin-top: 4px; }

.sps-link {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: letter-spacing .2s;
}
.sps-card:hover .sps-link { letter-spacing: .16em; }

/* CTA bar */
.sps-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: 14px; padding: 26px 32px; gap: 20px; flex-wrap: wrap;
  border: 1px solid rgba(184,134,11,.25);
}
.sps-cta h4 { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sps-cta p  { font-size: .8rem; color: rgba(255,255,255,.55); }
.sps-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }


/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */

/* Destination wedding */
@media (max-width: 900px) {
  .dws-row,
  .dws-row-flip {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  /* Image always on top on mobile */
  .dws-row       .dws-img-wrap,
  .dws-row-flip  .dws-img-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: 260px;
    position: relative;
  }
  .dws-row       .dws-text,
  .dws-row-flip  .dws-text {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  .dws-img-wrap img { position: absolute; inset: 0; }
  .dws-text { padding: 28px 24px; }
  .dws-list { padding: 24px 16px 40px; gap: 16px; }
}
@media (max-width: 600px) {
  .dws-row .dws-img-wrap,
  .dws-row-flip .dws-img-wrap { height: 220px; }
  .dws-text { padding: 22px 16px; }
  .dws-name { font-size: 1.5rem; }
  .dws-banner { padding: 56px 16px 44px; }
}

/* Services slab */
@media (max-width: 1024px) {
  .sps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sps-card { padding: 16px 14px; }
  .sps-cta  { flex-direction: column; text-align: center; }
  .sps-cta-btns { justify-content: center; }
}
@media (max-width: 380px) {
  .sps-grid { grid-template-columns: 1fr; }
}