/* ═══════════════════════════════════════════════════════
   Dreamz Wedding Planner — Complete Stylesheet v3
   Bootstrap 5.3 + Pink Theme #f37e81
═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --pink1:       #f37e81;  /* primary */
  --pink2:       #f95d62;  /* darker hover */
  --pink-pale:   #fff0f1;  /* pale bg */
  --cream:       #fff8f8;
  --ivory:       #fef1f2;
  --rose-dark:   #9b2335;
  --dark:        #1a0d10;
  --muted:       #7a5860;
  --white:       #FFFFFF;
  --accent:      #e0424a;
  --shadow-pink: 0 8px 32px rgba(243,126,129,.28);
  --shadow:      0 4px 24px rgba(0,0,0,.09);
  --r:           14px;
  --r-lg:        22px;
  --fd:          "Montserrat", sans-serif, 'Cormorant Garamond', Georgia, serif;
  --fb:          'Lato', sans-serif;
  --tr:          all .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--dark); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--fd); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.bg-cream  { background: var(--cream); }
.bg-ivory  { background: var(--ivory); }
.bg-white  { background: var(--white); }
.section-pad { padding: 5rem 0; }

/* ── Shared Typography ────────────────────────────── */
.stag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink1);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.sh  { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: .9rem; }
.sh em,
.sh-serif-center em,
.words-gratitude-title em { font-style: italic; color: var(--pink1); }
.sh-serif-center {
  font-family: var(--fd);
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 700;
  color: var(--dark);
}
.sc { color: var(--muted); font-size: 1rem; max-width: 560px; margin: .5rem auto 0; line-height: 1.7; }
.sb { color: var(--muted); font-size: .97rem; line-height: 1.8; margin-bottom: .75rem; }

/* ── Buttons ──────────────────────────────────────── */
.btn-pink {
  background: linear-gradient(135deg, #f37e81, #f95d62);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .8rem 2rem;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .3px;
  box-shadow: 0 4px 18px rgba(243,126,129,.35);
  transition: var(--tr);
  text-decoration: none;
  /*display: inline-flex;*/
  align-items: center;
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(243,126,129,.45); color: var(--white); }

.btn-outline-hero {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 50px;
  padding: .75rem 1.8rem;
  font-weight: 700;
  font-size: .93rem;
  transition: var(--tr);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-outline-hero:hover { background: rgba(255,255,255,.12); border-color: white; color: white; }

.btn-nav-pink {
  background: var(--pink1);
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  transition: var(--tr) !important;
}
.btn-nav-pink:hover { background: var(--pink2) !important; }

.btn-insta {
  background: linear-gradient(135deg,#833ab4,#f37e81,#f95d62);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: -100px;
}
.btn-insta:hover { transform: translateY(-2px); opacity: .9; color: white; }

.req { color: var(--pink1); }
.form-label { font-size: .83rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.ci {
  border: 1.5px solid #f0d0d2;
  border-radius: 10px;
  padding: .72rem 1rem;
  font-family: var(--fb);
  font-size: .91rem;
  background: var(--cream);
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.ci:focus { border-color: var(--pink1); box-shadow: 0 0 0 3px rgba(243,126,129,.13); outline: none; background: white; }

/* ── Fade-in ──────────────────────────────────────── */
.fi-up { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s ease; }
.fi-up.visible { opacity: 1; transform: translateY(0); }

/* ── Navbar ──────────────────────────────────────── */
#mainNav { background: transparent; padding: 1.2rem 0; transition: var(--tr); }
#mainNav.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(18px); padding: .65rem 0; box-shadow: 0 2px 24px rgba(243,126,129,.18); }

/* Logo normal state (on transparent dark hero) */
.nav-logo {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* white on dark hero */
  transition: filter .3s ease, height .3s ease;
}
/* Once scrolled — white bg, show real logo colors */
#mainNav.scrolled .nav-logo {
  filter: none;
  height: 38px;
}

.navbar-brand { padding: 0; }
.brand-lotus { color: var(--pink2); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-size: .9rem;
  padding: .5rem .7rem !important;
  transition: color .2s;
  font-weight: 400;
}
#mainNav.scrolled .navbar-nav .nav-link { color: var(--dark) !important; }
.navbar-nav .nav-link:hover { color: var(--pink1) !important; }
#mainNav.scrolled .navbar-nav .nav-link:hover { color: var(--pink2) !important; }

.btn-nav-pink {
  background: var(--pink1) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  transition: var(--tr) !important;
  border: none !important;
}
.btn-nav-pink:hover { background: var(--pink2) !important; color: white !important; }

/* ════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════ */

/* ── Wrapper ────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0e0600;
}

/* ── Individual slide ───────────────────────── */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* wait for JS, keep first slide visible via class */
  transition: opacity 1.1s cubic-bezier(.45,0,.25,1);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hs-slide.hs-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Ken Burns background ───────────────────── */
.hs-bg {
  position: absolute;
  inset: -8%;           /* extra room for zoom */
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1);
  transition: transform 7.5s linear;
}
.hs-slide.hs-active .hs-bg {
  transform: scale(1.1);
}

/* ── Overlays ───────────────────────────────── */
.hs-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,4,0,.80) 0%,
    rgba(10,4,0,.52) 45%,
    rgba(10,4,0,.22) 100%
  );
}
/* slight top & bottom vignette */
.hs-overlay-grain {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, transparent 18%, transparent 72%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

/* ── Mandala ring deco ──────────────────────── */
.hs-mandala {
  position: absolute; z-index: 2;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  width: min(480px, 42vw); height: min(480px, 42vw);
  background-image:
    radial-gradient(circle, transparent 38%, rgba(243,126,129,.06) 39%, rgba(243,126,129,.06) 40%, transparent 41%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='150' cy='150' r='140' fill='none' stroke='rgba(243,126,129,0.18)' stroke-width='1' stroke-dasharray='8 5'/%3E%3Ccircle cx='150' cy='150' r='110' fill='none' stroke='rgba(243,126,129,0.13)' stroke-width='1' stroke-dasharray='4 7'/%3E%3Ccircle cx='150' cy='150' r='80' fill='none' stroke='rgba(243,126,129,0.10)' stroke-width='1.5'/%3E%3Ccircle cx='150' cy='150' r='50' fill='none' stroke='rgba(243,126,129,0.08)' stroke-width='1' stroke-dasharray='2 4'/%3E%3Cpath d='M150,10 L160,140 L150,290 L140,140 Z' fill='rgba(243,126,129,0.04)'/%3E%3Cpath d='M10,150 L140,160 L290,150 L140,140 Z' fill='rgba(243,126,129,0.04)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease .4s;
}
.hs-slide.hs-active .hs-mandala { opacity: 1; }

/* ── Content box ────────────────────────────── */
.hs-content {
  position: relative;
  z-index: 5;
}

/* ── Per-element entry animations ──────────── */
.hs-tag,
.hs-title,
.hs-sub,
.hs-btns {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.hs-slide.hs-active .hs-tag  { opacity:1; transform:none; transition-delay: .35s; }
.hs-slide.hs-active .hs-title{ opacity:1; transform:none; transition-delay: .55s; }
.hs-slide.hs-active .hs-sub  { opacity:1; transform:none; transition-delay: .75s; }
.hs-slide.hs-active .hs-btns { opacity:1; transform:none; transition-delay: .92s; }

/* Exiting slide — fade out text upward */
.hs-slide.hs-leaving .hs-tag,
.hs-slide.hs-leaving .hs-title,
.hs-slide.hs-leaving .hs-sub,
.hs-slide.hs-leaving .hs-btns {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity .5s ease, transform .5s ease;
}

/* ── Text styles ────────────────────────────── */
.hs-tag {
  display: inline-block;
  color: var(--pink2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  border-left: 3px solid var(--pink2);
  padding-left: .75rem;
  margin-bottom: 1rem;
}
.hs-title {
  font-family: var(--fd);
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.14;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  margin-bottom: 1.1rem;
}
.hs-title em { font-style: italic; color: var(--pink2); }
.hs-sub {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── CTA buttons row ────────────────────────── */
.hs-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── Arrows ─────────────────────────────────── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 50%;
  width: 52px; height: 52px;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(6px);
}
.hs-arrow:hover {
  background: rgba(243,126,129,.35);
  border-color: var(--pink1);
  transform: translateY(-50%) scale(1.08);
}
.hs-arrow svg { width: 44px; height: 44px; }
.hs-prev { left: 1.8rem; }
.hs-next { right: 1.8rem; }

/* ── Dot indicators ─────────────────────────── */
.hs-dots {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .7rem;
  align-items: center;
}
.hs-dot {
  position: relative;
  width: 36px; height: 4px;
  background: rgba(255,255,255,.3);
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: width .3s ease, background .3s ease;
}
.hs-dot.hs-dot-active {
  width: 56px;
  background: rgba(255,255,255,.35);
}
/* progress fill */
.hs-dot-progress {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--pink1);
  border-radius: 2px;
  transition: width linear;  /* duration set by JS */
}
.hs-dot.hs-dot-active .hs-dot-progress {
  width: 100%;
}

/* ── Slide counter ──────────────────────────── */
.hs-counter {
  position: absolute;
  bottom: 4.2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: .2rem;
  font-family: var(--fd);
}
.hs-counter-cur { font-size: 1.6rem; font-weight: 700; color: white; line-height: 1; }
.hs-counter-sep { font-size: .9rem; color: rgba(255,255,255,.4); margin: 0 .15rem; }
.hs-counter-tot { font-size: .9rem; color: rgba(255,255,255,.4); }

/* ── Scroll hint ────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.42);
  border-radius: 20px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  left: 50%; top: 5px;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--pink1);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%,100%{top:5px;opacity:1} 55%{top:20px;opacity:.35} }

/* ── Mobile adjustments ─────────────────────── */
@media (max-width: 767px) {
  .hs-arrow { width: 40px; height: 40px; }
  .hs-arrow svg { width: 34px; height: 34px; }
  .hs-prev { left: .8rem; }
  .hs-next { right: .8rem; }
  .hs-counter { display: none; }
  .hs-mandala { display: none; }
  .hs-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

/* ── About ───────────────────────────────────────── */
.about-wrap { position: relative; padding: 1.5rem 2rem 1.5rem 0; }
.about-main-img { /*width: 78%; height: 360px;*/ border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-accent-img { position: absolute; bottom: 0; right: 0; /*width: 54%; height: 210px;*/ border-radius: var(--r); overflow: hidden; border: 4px solid white; box-shadow: var(--shadow); }
.about-badge-float {
  position: absolute; top: .5rem; left: -1.5rem;
  background: linear-gradient(135deg, #f37e81, #f95d62);
  color: white; border-radius: var(--r); padding: 1rem 1.2rem;
  text-align: center; box-shadow: var(--shadow-pink);
}
.ab-num { display: block; font-size: 2rem; font-family: var(--fd); font-weight: 700; line-height: 1; }
.ab-txt  { font-size: .72rem; font-weight: 600; letter-spacing: .4px; }
.stat-pill { display: flex; align-items: center; gap: .6rem; background: white; border-radius: 50px; padding: .6rem 1rem; box-shadow: var(--shadow); font-size: .86rem; font-weight: 600; }
.stat-pill i { color: var(--pink1); font-size: 1.05rem; }

/* ── Services (Image 1 style) ────────────────────── */
.services-section { position: relative; overflow: hidden; }
/* decorative corners */
.floral-tr, .floral-bl {
  position: absolute; width: 180px; height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,10 C130,10 150,30 150,60 C150,90 130,110 100,110 C70,110 50,90 50,60 C50,30 70,10 100,10Z' fill='rgba(243,126,129,0.08)'/%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(243,126,129,0.1)' stroke-width='1' stroke-dasharray='4 6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none; z-index: 0;
}
.floral-tr { top: 0; right: 0; transform: rotate(0deg); }
.floral-bl { bottom: 0; left: 0; transform: rotate(180deg); }

/* Service card — portrait-style, always-visible bottom text (Image 1) */
.svc-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}
.svc-card.svc-tall { height: 460px; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pink); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover img { transform: scale(1.04); }
/* Bottom gradient + text — always visible */
.svc-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,10,0,.88) 0%, rgba(30,10,0,.55) 60%, transparent 100%);
  padding: 2rem 1.4rem 1.4rem;
  z-index: 2;
}
.svc-text h3 { color: white; font-family: var(--fd); font-size: 1.35rem; font-weight: 600; margin-bottom: .3rem; font-style: italic; }
.svc-text p  { color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.5; margin: 0; }
/* Mini service cards */
.svc-mini { background: white; border-radius: var(--r); padding: 1.5rem; text-align: center; border: 1px solid #f5e0e1; transition: var(--tr); }
.svc-mini:hover { background: var(--pink-pale); box-shadow: var(--shadow-pink); transform: translateY(-4px); }
.svc-mini i { font-size: 2rem; color: var(--pink1); display: block; margin-bottom: .6rem; }
.svc-mini h6 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.svc-mini p  { font-size: .82rem; color: var(--muted); margin: 0; }

/* ── Gallery ─────────────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 10px;
}
.gal-item { position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.gal-overlay i { color: white; font-size: 1.8rem; opacity: 0; transform: scale(.7); transition: var(--tr); }
.gal-item:hover .gal-overlay { background: rgba(0,0,0,.35); }
.gal-item:hover .gal-overlay i { opacity: 1; transform: scale(1); }
@media (max-width: 767px) { .gal-grid { grid-template-columns: repeat(2,1fr); } .gal-item.wide { grid-column: span 1; } }

/* ── CTA Strip ───────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--pink-pale), #ffc5c7); border-top: 1px solid #f0b8ba; border-bottom: 1px solid #f0b8ba; }
.cta-strip h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); color: var(--dark); margin-bottom: .5rem; }
.cta-strip h2 em { color: var(--pink1); font-style: italic; }
.cta-strip p { color: var(--muted); font-size: .97rem; }

/* ── DESTINATIONS (Creative map section) ─────────── */
.dmap-section {
  background: #fff8f8;
}


/* ── Section ───────────────────────────────────── */
.proc-section { background: #fff8f8; }
 
/* ── Connector track (visible on desktop) ───────── */
.proc-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 2%;
}
.proc-track-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #f37e81;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(243,126,129,.1);
}
.proc-track-line {
  flex: 1;
  height: 2px;
  background: rgba(243,126,129,.2);
  position: relative;
  margin: 0 4px;
}
/* Animated fill on load */
.proc-track-line span {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: #f37e81;
  border-radius: 2px;
  animation: procLine 1.2s ease forwards;
}
.proc-track-line:nth-child(2) span { animation-delay: .3s; }
.proc-track-line:nth-child(4) span { animation-delay: .6s; }
.proc-track-line:nth-child(6) span { animation-delay: .9s; }
@keyframes procLine { to { width: 100%; } }
 
/* ── Cards ─────────────────────────────────────── */
.proc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.5rem 2rem;
  border: 1px solid rgba(243,126,129,.15);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
/* Pink top bar */
.proc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f37e81, #f95d62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.proc-card:hover::before   { transform: scaleX(1); }
.proc-card:hover {
  border-color: rgba(243,126,129,.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(243,126,129,.15);
}
 
/* Step badge (top right) */
.proc-step-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f37e81;
  background: #fff0f1;
  border-radius: 50px;
  padding: .22rem .65rem;
}
 
/* Ghost large number */
.proc-card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(243,126,129,.1);
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -1px;
  transition: color .3s;
}
.proc-card:hover .proc-card-num { color: rgba(243,126,129,.22); }
 
/* Icon box */
.proc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .3s;
}
.proc-card:hover .proc-card-icon { background: rgba(243,126,129,.2); }
 
/* Title */
.proc-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a0d10;
  margin: 0 0 .5rem;
  line-height: 1.35;
}
 
/* Description */
.proc-card-desc {
  font-size: .82rem;
  color: #7a5860;
  line-height: 1.65;
  margin-bottom: .9rem;
}
 
/* Bullet list */
.proc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .38rem;
}
.proc-card-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: #5a3040;
  line-height: 1.55;
}
.proc-card-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f37e81;
  flex-shrink: 0;
  margin-top: .44rem;
}
 
/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .proc-track { display: none; }
}
 

/* ── Section heading ───────────────────────────── */
.dmap-stag {
  display: inline-block;
  background: #fff0f1;
  color: #f37e81;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: .32rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.dmap-main-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #1a0d10;
  line-height: 1.25;
  margin: 0 0 .75rem;
}
.dmap-main-title em {
  font-style: italic;
  color: #f37e81;
}
.dmap-subtitle {
  color: #7a5860;
  font-size: .97rem;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   LEFT — DESTINATION LIST
   ══════════════════════════════════════════════════ */
/* List heading */
.dlist-heading {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a0d10;
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1.5px solid rgba(243,126,129,.22);
}

/* ── 4-column grid matching the screenshot style ── */
.dlist-flat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem .4rem;
}

/* Each destination item */
.dlist-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: #2a0d14;
  font-weight: bold;
  cursor: default;
  transition: color .18s ease;
  line-height: 1.3;
}
.dlist-item:hover {
  color: #f37e81;
}

/* Pin icon */
.dlist-pin {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1);
}
.dlist-item:hover .dlist-pin {
  transform: translateY(-3px);
}

/* CTA button */
.dlist-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.6rem;
  background: linear-gradient(135deg, #f37e81, #f95d62);
  color: white;
  border: none;
  border-radius: 50px;
  padding: .78rem 1.8rem;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(243,126,129,.38);
  transition: transform .25s ease, box-shadow .25s ease;
}
.dlist-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243,126,129,.48);
  color: white;
}

/* ══════════════════════════════════════════════════
   RIGHT — MAP CARD
   ══════════════════════════════════════════════════ */
.dmap-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(243,126,129,.2);
  box-shadow:
    0 16px 56px rgba(243,126,129,.18),
    0 4px 20px rgba(0,0,0,.10);
  line-height: 0;
}

/* Map image — sharp, no filter at all */
.dmap-card-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Floating stat badges */
.dmap-badge {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: .65rem 1rem;
  text-align: center;
  border: 1.5px solid rgba(243,126,129,.2);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  min-width: 76px;
  line-height: 1.2;
}
.dmap-badge-tl { top: 14px;    left: 14px;    }
.dmap-badge-br { bottom: 14px; right: 14px;   }

.dmap-badge-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f37e81;
  line-height: 1;
}
.dmap-badge-lbl {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a5860;
  margin-top: .15rem;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .dlist-flat { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  .dlist-flat { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  /* map stacks on top on mobile */
  .col-lg-5 { order: -1; }
  .dlist-flat { grid-template-columns: repeat(2, 1fr); gap: .6rem .4rem; }
  .dlist-item { font-size: .84rem; }
}
@media (max-width: 400px) {
  .dlist-flat { grid-template-columns: 1fr 1fr; }
}

/* ── Why Choose ──────────────────────────────────── */
.why-wrap { position: relative; padding-bottom: 2.5rem; }
.why-main { height: 480px; border-radius: var(--r-lg); object-fit: cover; box-shadow: var(--shadow-pink); }
.why-badge {
  position: absolute; bottom: 0; right: -1.5rem;
  background: var(--dark); color: white;
  border-radius: var(--r); padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .86rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.why-badge i { font-size: 1.5rem; color: var(--pink2); }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-item { display: flex; align-items: flex-start; gap: .9rem; }
.why-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--pink-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.why-icon i { color: var(--pink1); font-size: 1.05rem; }
.why-item h6 { font-size: .95rem; font-weight: 700; margin: 0 0 .2rem; }
.why-item p  { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── Words of Gratitude (Image 3) ────────────────── */
.words-gratitude-title {
  font-family: 'Cormorant Garamond', var(--fd);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
}
.words-gratitude-title em { color: var(--pink1); font-style: italic; }

/* Video cards */
.vid-card { cursor: pointer; }
.vid-thumb-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  /* Portrait 9:16 ish */
  padding-bottom: 145%;
  background: #111;
  box-shadow: var(--shadow);
  transition: transform .4s ease, box-shadow .4s ease;
}
.vid-card:hover .vid-thumb-wrap { transform: translateY(-5px); box-shadow: var(--shadow-pink); }
.vid-thumb-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vid-card:hover .vid-thumb-wrap img { transform: scale(1.04); }
/* Gradient overlay */
.vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.45) 100%);
  display: flex; align-items: center; justify-content: center;
}
.vid-play {
  width: 72px; height: 72px;
  transition: transform .3s ease;
}
.vid-play svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 10px rgba(0,0,0,.4)); }
.vid-card:hover .vid-play { transform: scale(1.12); }
.vid-couple-name { text-align: center; font-size: .84rem; color: var(--muted); margin-top: .6rem; font-family: var(--fd); font-style: italic; }

/* ── Plan Form ───────────────────────────────────── */
.plan-card-wrap { background: white; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 16px 60px rgba(0,0,0,.12); }
.plan-img-col { position: relative; min-height: 500px; overflow: hidden; }
.plan-img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right;}
.plan-img-col::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(155,35,53,.3), rgba(243,126,129,.15)); }
.plan-img-badge {
  position: absolute; bottom: 2rem; left: 2rem; z-index: 2;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-radius: var(--r); padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--shadow);
}
.plan-img-badge i { color: var(--pink1); font-size: 1.4rem; }
.plan-img-badge span { font-size: .82rem; font-weight: 700; color: var(--dark); line-height: 1.3; }

/* ── Instagram Feed (Image 4) ────────────────────── */
.insta-top {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.insta-logo-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg,#833ab4,#f37e81,#f95d62);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insta-logo-wrap i { color: white; font-size: 1.7rem; }
.insta-handle { color: var(--muted); font-size: .88rem; display: block; margin-top: .2rem; text-decoration: none; }
.insta-handle:hover { color: var(--pink1); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.insta-cell { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; aspect-ratio: 1; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insta-cell:hover img { transform: scale(1.07); }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.insta-stats { display: flex; gap: 1.5rem; opacity: 0; transition: opacity .3s; }
.insta-stats span { color: white; font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: .3rem; }
.insta-cell:hover .insta-hover { background: rgba(0,0,0,.42); }
.insta-cell:hover .insta-stats { opacity: 1; }
@media (max-width: 575px) { .insta-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Footer ──────────────────────────────────────── */
.footer-wrap { background: linear-gradient(160deg, #1a0810 0%, #2e1018 100%); color: rgba(255,255,255,.72); }
.footer-brand { margin-bottom: .9rem; }
.footer-logo { height: 46px; width: auto; object-fit: contain; filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(290deg) brightness(1.3); }
.footer-desc  { font-size: .88rem; line-height: 1.7; }
.social-row   { display: flex; gap: .55rem; margin-top: 1.2rem; }
.social-row a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: 1rem; transition: var(--tr); text-decoration: none; }
.social-row a:hover { background: var(--pink1); border-color: var(--pink1); color: white; transform: translateY(-2px); }
.footer-h  { color: var(--pink2); font-family: var(--fd); font-size: .88rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-ul { list-style: none; padding: 0; margin: 0; }
.footer-ul li { margin-bottom: .5rem; }
.footer-ul a { color: rgba(255,255,255,.58); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-ul a:hover { color: var(--pink2); }
.footer-cinfo { display: flex; flex-direction: column; gap: .7rem; }
.fci { display: flex; align-items: flex-start; gap: .7rem; font-size: .86rem; }
.fci i { color: var(--pink1); margin-top: 2px; flex-shrink: 0; }
.fci a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.fci a:hover { color: var(--pink2); }
.fci span { color: rgba(255,255,255,.55); }
.footer-hr   { border-color: rgba(255,255,255,.1); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.38); margin: 0; }

/* ── Bottom strip ────────────────────────────────── */
.bottom-strip { background: linear-gradient(135deg, #fff0f2, #ffd0d2); border-top: 3px solid var(--pink1); overflow: hidden; }
.bottom-strip-img {
  height: 100%;
  min-height: 200px;
  background: url('../img/bottom-cta.jpg') center/cover no-repeat;
}
.bottom-strip h3 { font-family: var(--fd); font-size: clamp(1.3rem,3vw,1.8rem); color: var(--dark); margin-bottom: .25rem; }
.bottom-strip em { color: var(--pink1); font-style: italic; }
.bottom-strip p  { color: var(--muted); font-size: .95rem; }

/* ── Back to top ─────────────────────────────────── */
.back-top {
  position: fixed; bottom: 1.8rem; right: 1.8rem;
  width: 44px; height: 44px;
  background: var(--pink1); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none;
  box-shadow: var(--shadow-pink);
  opacity: 0; transform: translateY(10px); transition: var(--tr); z-index: 999;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover   { background: var(--pink2); color: white; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
  /*.about-main-img { width: 88%; }*/
  .about-badge-float { left: .5rem; }
  .why-badge { right: 0; }
  .plan-img-col { min-height: 220px; }

}
@media (max-width: 767px) {
  .section-pad { padding: 3.5rem 0; }
  .svc-card, .svc-card.svc-tall { height: 340px; }
  .dest-pills-wrap { padding: 1.4rem 1.2rem; }
}
