/* ============================================================
   DOWNSTREET HALL — Premium Evergreen Theme
   Palette: Deep Forest + Champagne Gold + Ivory
   ============================================================ */
:root {
  --forest-950: #08160f;
  --forest-900: #0d2419;
  --forest-800: #123424;
  --forest-700: #1a4a34;
  --forest-600: #22684a;
  --forest-500: #2d8a63;
  --forest-400: #57b98f;
  --sage:       #b7cdbf;

  --gold:       #c8a860;
  --gold-soft:  #e2c98a;
  --gold-deep:  #8f773f;
  --champagne:  #f5ecd7;

  --ivory:      #faf8f2;
  --cream:      #f3efe6;
  --surface:    #fffdf9;
  --text:       #23312a;
  --text-muted: #61716b;
  --link:       #22684a;
  --ink:        #0a1a12;
  --charcoal:   #1e2a24;
  --line:       #e6e1d3;

  --shadow-sm: 0 2px 10px rgba(8,22,15,.06);
  --shadow:    0 14px 40px rgba(8,22,15,.10);
  --shadow-lg: 0 30px 60px rgba(8,22,15,.18);

  --grad-forest: linear-gradient(135deg, #0d2419 0%, #123424 45%, #1a4a34 100%);
  --grad-gold:   linear-gradient(135deg, #e2c98a 0%, #c8a860 50%, #9c7f3d 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
html { scroll-behavior: smooth; }
html, body {
  background: radial-gradient(circle at top, rgba(255,255,255,.98), transparent 40%), var(--ivory);
  color: var(--text);
  margin: 0;
}
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 82px;
}
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink); font-weight: 600; letter-spacing: -.015em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.7rem); }
p  { color: var(--text); }
a  { color: var(--link); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-deep); }

.container-xl { max-width: 1260px; }
.text-muted { color: var(--text-muted) !important; }

/* ---------- BUTTONS ---------- */
.btn-gold, .btn-outline-gold, .btn-forest {
  border-radius: 999px; font-weight: 600; letter-spacing: .04em;
  padding: .9rem 1.8rem; border: 0; position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.9,.3,1), box-shadow .3s, background .3s, color .3s;
  isolation: isolate;
}
.btn-gold {
  background: var(--grad-gold); color: var(--ink);
  box-shadow: 0 10px 24px rgba(200,168,96,.35);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  opacity: 0; transition: opacity .35s ease;
}
.btn-gold:hover { color: var(--champagne); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13,36,25,.35); }
.btn-gold:hover::after { opacity: 1; }
.btn-outline-gold {
  background: transparent; color: var(--gold-soft);
  border: 1.5px solid var(--gold); padding: calc(.9rem - 1.5px) calc(1.8rem - 1.5px);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-forest {
  background: var(--grad-forest); color: var(--champagne);
  box-shadow: 0 10px 24px rgba(13,36,25,.3);
}
.btn-forest:hover { color: var(--gold-soft); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }

.language-toggle {
  padding: 0.65rem; min-width: 2.5rem; min-height: 2.5rem; width: auto;
  border-radius: 50% !important; font-size: 0.95rem;
}
.language-toggle .fa-language {
  font-size: 1rem;
}
.dropdown-menu .active {
  font-weight: 700;
}

/* ---------- NAVBAR (sticky, scroll-aware) ---------- */
.dh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  background: rgba(8, 22, 15, .35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(200,168,96,.15);
  padding: .85rem 0;
  transition: background .4s ease, padding .3s ease, box-shadow .4s ease, border-color .4s;
}
.dh-nav.scrolled {
  background: rgba(250,248,242,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 28px rgba(8,22,15,.08);
  padding: .55rem 0;
}

.dh-nav .navbar-brand {
  font-family: 'Playfair Display', serif; font-weight: 700;
  letter-spacing: .22em; font-size: 1.15rem;
  color: var(--champagne); transition: color .3s;
}
.dh-nav.scrolled .navbar-brand { color: var(--ink); }
.dh-nav .navbar-brand span {
  color: var(--gold); margin: 0 .35rem; display: inline-block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.dh-nav .nav-link {
  color: rgba(245,236,215,.85) !important; font-weight: 500;
  padding: .55rem 1rem !important; font-size: .92rem;
  letter-spacing: .04em; position: relative;
  transition: color .25s;
}
.dh-nav.scrolled .nav-link { color: var(--charcoal) !important; }
.dh-nav .nav-link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .35rem;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
.dh-nav .nav-link:hover::after,
.dh-nav .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.dh-nav .nav-link.active,
.dh-nav .nav-link:hover { color: var(--gold-soft) !important; }
.dh-nav.scrolled .nav-link.active,
.dh-nav.scrolled .nav-link:hover { color: var(--forest-700) !important; }

.navbar-toggler { border-color: rgba(200,168,96,.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='%23c8a860' stroke-width='2' stroke-linecap='round' d='M4 8h22M4 15h22M4 22h22'/></svg>");
}
@media (max-width: 991px) {
  .dh-nav .navbar-collapse {
    position: absolute; top: 100%; left: 0; right: 0;
    z-index: 1090;
    background: rgba(8,22,15,.98); margin-top: .85rem;
    padding: 1rem 1.25rem; border-radius: 16px;
    border: 1px solid rgba(200,168,96,.2);
  }
  .dh-nav .navbar-collapse .navbar-nav { gap: .35rem; }
  .dh-nav .navbar-collapse .nav-item { width: 100%; }
  .dh-nav .navbar-collapse .nav-link {
    display: block; width: 100%; padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .dh-nav .navbar-collapse .btn-gold { width: 100%; margin-top: .75rem; }
  .dh-nav.scrolled .navbar-collapse {
    background: var(--ivory); border-color: var(--line);
  }
}

/* ---------- HERO (animated forest background) ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--champagne); overflow: hidden;
  margin-top: -82px; padding: calc(8rem + 82px) 0 6rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(87,185,143,.38), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(200,168,96,.22), transparent 55%),
    linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 40%, var(--forest-800) 100%);
  background-size: 200% 200%;
  animation: hero-shift 18s ease-in-out infinite;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 85%, rgba(200,168,96,.16) 0, transparent 12%),
    radial-gradient(circle at 85% 15%, rgba(87,185,143,.20) 0, transparent 14%),
    radial-gradient(circle at 60% 60%, rgba(226,201,138,.12) 0, transparent 18%);
  animation: orb-drift 20s ease-in-out infinite alternate;
}
@keyframes hero-shift {
  0%, 100% { background-position: 0% 0%, 100% 100%, 0 0; }
  50%      { background-position: 30% 20%, 70% 80%, 0 0; }
}
@keyframes orb-drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-30px, 20px, 0) scale(1.1); }
}
.hero > * { position: relative; z-index: 2; }
.hero h1, .hero p { color: var(--champagne); }
.hero h1 { text-shadow: 0 6px 40px rgba(0,0,0,.5); }
.hero .eyebrow {
  display: inline-block; color: var(--gold-soft); letter-spacing: .4em;
  text-transform: uppercase; font-size: .75rem; font-weight: 700;
  border: 1px solid rgba(200,168,96,.5); padding: .55rem 1.3rem;
  border-radius: 999px; margin-bottom: 1.75rem;
  background: rgba(8,22,15,.35); backdrop-filter: blur(6px);
  animation: fade-up .8s ease .1s both;
}
.hero h1  { animation: fade-up .9s ease .25s both; }
.hero .lead { animation: fade-up .9s ease .4s both; color: rgba(245,236,215,.85); }
.hero .cta-row { animation: fade-up .9s ease .55s both; }

.hero.hero-carousel {
  background: transparent;
  min-height: 92vh;
  margin-top: -82px;
  padding: 0;
}
.hero.hero-carousel .hero-carousel-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero.hero-carousel .carousel-item {
  min-height: 92vh;
}
.hero.hero-carousel.mini .carousel-item {
  min-height: 62vh;
}
.hero.hero-carousel .hero-carousel-img {
  object-fit: cover;
  width: 100%;
  height: 92vh;
  filter: brightness(0.62);
}
.hero.hero-carousel.mini .hero-carousel-img {
  height: 62vh;
}
.hero.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6,10,9,.55) 0%, rgba(6,10,9,.15) 35%, rgba(6,10,9,.70) 100%);
}
.hero.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,168,96,.14), transparent 18%),
    radial-gradient(circle at 80% 15%, rgba(87,185,143,.12), transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.05), transparent 22%);
}
.hero.hero-carousel .hero-copy {
  position: relative;
  z-index: 3;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 5rem;
}
.hero.hero-carousel.mini { min-height: 62vh; }
.hero.hero-carousel.mini .hero-copy {
  min-height: auto;
  padding: 4rem 0 3rem;
}
.hero.hero-carousel .hero-copy .eyebrow {
  background: rgba(8,22,15,.7);
  border-color: rgba(200,168,96,.55);
}
.hero.hero-carousel h1,
.hero.hero-carousel .lead {
  color: #fff;
  text-shadow: 0 16px 40px rgba(0,0,0,.48);
}
.hero.hero-carousel .scroll-cue {
  bottom: 2.5rem;
  z-index: 3;
}
.hero.hero-carousel .carousel-control-prev,
.hero.hero-carousel .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
}
.hero.hero-carousel .carousel-control-prev-icon,
.hero.hero-carousel .carousel-control-next-icon {
  filter: invert(1);
}
.hero.hero-carousel .carousel-indicators {
  bottom: 1.6rem;
  gap: .5rem;
}
.hero.hero-carousel .hero-carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.hero.hero-carousel .hero-carousel-indicators .active {
  background: var(--gold);
}

@keyframes fade-up { from { opacity:0; transform: translateY(24px);} to {opacity:1; transform:none;} }

/* animated scroll indicator */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold-soft); font-size: .7rem;
  letter-spacing: .35em; text-transform: uppercase;
}
.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent); margin: .6rem auto 0;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* mini hero (subpages) */
.hero.mini { min-height: 62vh; margin-top: -82px; padding: calc(9rem + 82px) 0 4rem; }
.hero.mini h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }

/* ---------- SECTIONS ---------- */
section { padding: 6.5rem 0; position: relative; }
.section-eyebrow {
  color: var(--forest-700); letter-spacing: .35em; text-transform: uppercase;
  font-size: .75rem; font-weight: 700; margin-bottom: .9rem; display: block;
}
.divider {
  width: 68px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin: 1.3rem auto 2.2rem; position: relative;
}
.divider::before, .divider::after {
  content: ""; position: absolute; top: 50%; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); transform: translateY(-50%);
}
.divider::before { left: -14px; } .divider::after { right: -14px; }

.bg-soft   { background: var(--cream); }
.bg-forest { background: var(--grad-forest); color: var(--champagne); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--champagne); }

/* animated section backdrop (subtle grain) */
.bg-forest::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(200,168,96,.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(87,185,143,.12), transparent 40%);
  animation: orb-drift 24s ease-in-out infinite alternate;
}
.bg-forest > * { position: relative; z-index: 1; }

/* ---------- CARDS ---------- */
.dh-card {
  background: var(--surface); border: 1px solid rgba(30,42,33,.14); border-radius: 20px;
  padding: 2.1rem; box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.2,.9,.3,1), box-shadow .4s, border-color .3s;
  height: 100%; position: relative; overflow: hidden;
}
.dh-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.dh-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,168,96,.35); }
.dh-card:hover::before { transform: scaleX(1); }
.dh-card .icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(200,168,96,.18), rgba(45,138,99,.14));
  color: var(--forest-700); font-size: 1.5rem; margin-bottom: 1.1rem;
  transition: transform .5s ease, color .3s;
}
.dh-card:hover .icon { transform: rotate(-6deg) scale(1.05); color: var(--gold-deep); }
.dh-card h4, .dh-card h5 { color: var(--ink); }

/* ---------- PACKAGES ---------- */
.package {
  border-radius: 24px; background: #fff; border: 1px solid var(--line);
  padding: 2.8rem 2.2rem; height: 100%; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .4s, box-shadow .4s;
}
.package:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package.featured {
  border: 0; background: var(--grad-forest); color: var(--champagne);
  transform: scale(1.04); box-shadow: 0 30px 60px rgba(13,36,25,.35);
}
.package.featured h3, .package.featured .price { color: var(--champagne); }
.package.featured .text-muted { color: rgba(245,236,215,.75) !important; }
.package.featured ul li { border-color: rgba(200,168,96,.2); color: rgba(245,236,215,.9); }
.package.featured::before {
  content: "Most Popular"; position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%); background: var(--grad-gold); color: var(--ink);
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  padding: .45rem 1.2rem; border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(200,168,96,.4);
}
.package h3 { color: var(--ink); }
.package .price { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--ink); font-weight: 700; }
.package .price small { font-size: .9rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.package ul { list-style: none; padding-left: 0; margin: 1.75rem 0; }
.package ul li { padding: .65rem 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.package ul li i { color: var(--gold); margin-right: .6rem; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 16px;
  aspect-ratio: 4/3; background: var(--forest-900); cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.3,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,22,15,.85));
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.25rem;
  color: var(--champagne); font-size: .9rem; z-index: 2;
  transform: translateY(12px); opacity: 0; transition: all .35s;
}
.gallery-item:hover .cap { transform: none; opacity: 1; }

.filter-chip {
  display: inline-block; padding: .55rem 1.2rem; border: 1px solid var(--line);
  border-radius: 999px; margin: 0 .3rem .6rem 0; color: var(--charcoal);
  font-size: .85rem; font-weight: 500; transition: all .25s; background: #fff;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-chip.active {
  background: var(--grad-forest); color: var(--gold-soft); border-color: transparent;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 2.2rem; height: 100%;
  position: relative; box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: -18px; left: 22px;
  font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold);
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial .stars { color: var(--gold); margin-bottom: .6rem; letter-spacing: .1em; }
.testimonial p { font-style: italic; color: var(--charcoal); }
.testimonial .who { font-weight: 600; color: var(--ink); margin-top: 1rem; font-style: normal; }

.testimonial-carousel-section {
  padding: 2rem 0;
}
.testimonial-carousel-section .carousel-inner {
  padding: 1rem 0;
}
.testimonial-carousel-section .carousel-item {
  display: flex;
  justify-content: center;
}
.testimonial-carousel-section .carousel-indicators {
  justify-content: center;
  margin-top: 1.5rem;
}
.testimonial-carousel-section .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.testimonial-carousel-section .carousel-indicators .active {
  background: var(--gold);
}

/* ---------- STATS ---------- */
.stat { text-align: center; padding: 1.8rem 1rem; }
.stat .num {
  font-family: 'Playfair Display', serif; font-size: 3.4rem;
  color: var(--gold); font-weight: 700; display: block; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span:last-child { color: rgba(245,236,215,.75); letter-spacing: .12em; font-size: .82rem; text-transform: uppercase; }

/* ---------- FOOTER ---------- */
.dh-footer {
  background: linear-gradient(180deg, rgba(12,20,18,0.98), rgba(6,10,12,0.99));
  color: rgba(255,255,255,.92);
  padding: 5rem 0 1.75rem; position: relative; overflow: hidden;
}
.dh-footer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,209,146,.14), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(87,185,143,.10), transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
.dh-footer > * { position: relative; }
.dh-footer h5 { color: #f7e8c2; margin-bottom: 1.2rem; font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; }
.dh-footer p,
.dh-footer .small,
.dh-footer a {
  color: rgba(255,255,255,.88);
}
.dh-footer a:hover { color: var(--gold); }
.dh-footer .brand {
  font-family: 'Playfair Display', serif; color: #fff1d8;
  letter-spacing: .22em; font-size: 1.5rem; font-weight: 700;
}
.dh-footer .brand span { color: var(--gold); }
.dh-footer hr { border-color: rgba(255,255,255,.15); }
.dh-footer .small { color: rgba(255,255,255,.76); }
.social-ico {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid rgba(200,168,96,.3); border-radius: 50%; margin-right: .5rem;
  transition: all .3s; color: var(--gold-soft);
}
.social-ico:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

.back-to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  background: rgba(8,22,15,.82); color: var(--gold); display: grid; place-items: center;
  box-shadow: 0 18px 36px rgba(8,22,15,.24); opacity: 0; visibility: hidden;
  transform: translateY(18px); transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  z-index: 1100;
}
.back-to-top.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(8,22,15,.96); box-shadow: 0 24px 46px rgba(8,22,15,.28);
}

/* ---------- FORMS ---------- */
.form-control, .form-select {
  border-radius: 12px; padding: .85rem 1.1rem; border: 1px solid var(--line);
  background: #fff; transition: all .25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 .22rem rgba(200,168,96,.18);
  outline: none;
}
.form-label { font-weight: 600; color: var(--ink); font-size: .88rem; letter-spacing: .04em; }

/* ---------- ALERTS ---------- */
.alert-soft-success {
  background: rgba(45,138,99,.08); color: var(--forest-700);
  border: 1px solid rgba(45,138,99,.25); border-radius: 12px;
  border-left: 4px solid var(--forest-500);
}
.alert-soft-error {
  background: #fdeaea; color: #842029; border: 1px solid #f5c2c7;
  border-radius: 12px; border-left: 4px solid #dc3545;
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1040;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 1.7rem; box-shadow: 0 15px 30px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 15px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50%     { box-shadow: 0 15px 30px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
}
.wa-float:hover { color: #fff; transform: scale(1.08) rotate(6deg); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(8,22,15,.95); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; animation: fade-up .3s ease; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .close-btn {
  position: absolute; top: 1.2rem; right: 1.6rem; color: var(--champagne);
  font-size: 2.2rem; background: none; border: 0; cursor: pointer;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: .85rem; overflow: hidden; transition: box-shadow .3s, border-color .3s;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(200,168,96,.4); }
.faq-item summary {
  padding: 1.15rem 1.4rem; cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif; font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--gold-deep); font-size: 1.6rem; font-weight: 300;
  transition: transform .35s;
}
.faq-item[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq-item .body { padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; left: .5rem; top: .5rem; bottom: .5rem;
  width: 2px; background: linear-gradient(var(--gold), transparent);
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -2rem; top: .35rem; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,168,96,.2);
}
.timeline-item h5 { color: var(--ink); margin-bottom: .3rem; }
.timeline-item .year { color: var(--gold-deep); font-weight: 700; letter-spacing: .15em; font-size: .75rem; text-transform: uppercase; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- IMG FALLBACK ---------- */
.img-fallback {
  background: var(--grad-forest); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; letter-spacing: .18em;
  width: 100%; height: 100%; font-size: 1rem;
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .package.featured { transform: none; }
  .hero { min-height: 90vh; padding: 7rem 0 5rem; }
  .hero.mini { min-height: 50vh; padding: 7rem 0 3rem; }
}
