/* ============================================================
   DYNAMIC EVENT — style.css
   Design tokens: sunset-confetti gradient over warm ivory & deep plum ink
   Type: Fraunces (display) + Plus Jakarta Sans (body / UI)
   ============================================================ */

:root {
  /* Colors */
  --de-ink: #211327;
  --de-ink-soft: #2f1c39;
  --de-cream: #FFF8F0;
  --de-cream-deep: #FBF0E4;
  --de-coral: #FF6B5B;
  --de-magenta: #C93B8E;
  --de-violet: #6C3CE9;
  --de-gold: #FFB648;
  --de-text: #2B1E33;
  --de-text-muted: #6C6076;
  --de-line: rgba(43, 30, 51, 0.1);

  --de-gradient: linear-gradient(135deg, var(--de-coral) 0%, var(--de-magenta) 55%, var(--de-violet) 100%);
  --de-gradient-soft: linear-gradient(135deg, rgba(255,107,91,0.12) 0%, rgba(201,59,142,0.12) 55%, rgba(108,60,233,0.12) 100%);

  /* Blush section wash + dark gradient (topbar / footer) */
  --de-blush: #FDECF3;
  --de-lavender-mist: #F2ECFB;
  --de-plum-deep: #3A1E49;
  --de-dark-gradient: linear-gradient(120deg, var(--de-ink) 0%, #33193f 45%, var(--de-plum-deep) 100%);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Radii & shadow */
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 40px -18px rgba(43, 20, 60, 0.28);
  --shadow-soft: 0 10px 30px -14px rgba(43, 20, 60, 0.2);
}

/* ============ BASE ============ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--de-text);
  background: var(--de-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--de-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: inherit; transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease; }

img { max-width: 100%; display: block; }

::selection { background: var(--de-violet); color: #fff; }

:focus-visible {
  outline: 3px solid var(--de-gold);
  outline-offset: 3px;
}

.section { padding: 5.5rem 0; }
@media (max-width: 767.98px) { .section { padding: 3.5rem 0;        overflow-x: hidden; } }

.section-head { max-width: 680px; margin: 0 auto 3rem; }
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--de-magenta);
  font-size: .95rem;
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-lead {
  color: var(--de-text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* ============ BUTTONS ============ */
.btn { border-radius: 999px; font-weight: 600; padding: .7rem 1.6rem; transition: all .25s ease; border: none; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }

.btn-gradient {
  background: var(--de-gradient);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(201, 59, 142, 0.55);
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 18px 34px -10px rgba(201, 59, 142, 0.65);
}

.btn-dark {
  background: var(--de-ink);
  color: #fff;
}
.btn-dark:hover { background: var(--de-violet); color: #fff; transform: translateY(-2px); }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--de-ink); transform: translateY(-2px); }

.btn-outline-dark {
  border: 2px solid var(--de-ink);
  color: var(--de-ink);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--de-ink); color: #fff; }

.btn-light { background: #fff; color: var(--de-magenta); }
.btn-light:hover { color: var(--de-violet); transform: translateY(-2px); }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--de-dark-gradient);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: .55rem 0;
  position: relative;
}
.topbar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--de-gradient);
  opacity: .8;
}
.topbar a { color: rgba(255,255,255,.85); margin-right: 1.4rem; }
.topbar a:hover { color: var(--de-gold); }
.topbar-info i { color: var(--de-gold); margin-right: .35rem; }
.topbar-social a { margin-right: 0; margin-left: .85rem; font-size: 1rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--de-line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.navbar { padding: .85rem 0; }
.navbar-brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--de-gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--de-ink);
}
.brand-text em { font-style: normal; color: var(--de-magenta); }

.nav-link {
  color: var(--de-text);
  font-weight: 600;
  padding: .5rem 1rem !important;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .15rem;
  height: 2px;
  background: var(--de-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--de-magenta); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; }
.carousel-inner, .carousel-item { height: 92vh; min-height: 560px; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
   linear-gradient(100deg, rgb(33 19 39 / 40%) 0%, rgba(33, 19, 39, .72) 38%, rgba(108, 60, 233, .35) 75%, rgba(201, 59, 142, .15) 100%)
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* max-width: 720px; */
  color: #fff;
  padding-top: 2rem;
  text-align: center;
}
.hero-eyebrow {
  font-weight: 700;
  color: var(--de-gold);
  text-transform: none;
  margin-bottom: .8rem;
  font-size: 1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero-sub { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 54ch; margin-bottom: 2rem;  margin: 0 auto;}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap;    margin: 0 auto; justify-content: center;
    margin-top: 15px;}

.hero .carousel-control-prev, .hero .carousel-control-next { width: 6%; opacity: 1; }
.hero-nav-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .25s ease;
}
.hero-nav-icon:hover { background: rgba(255,255,255,.28); }

.hero-indicators { bottom: 3.2rem; margin-bottom: 0; }
.hero-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  opacity: 1;
  margin: 0 5px;
}
.hero-indicators button.active { background: var(--de-gold); width: 26px; border-radius: 6px; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -2px; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 60px; }
.hero-wave path { fill: var(--de-cream); }

/* ============ BOOKING STRIP ============ */
.booking-strip { background: var(--de-gradient); padding: 2.6rem 0; position: relative; }
.booking-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  color: #fff;
}
.booking-strip-text { display: flex; align-items: flex-start; gap: 1.1rem; max-width: 640px; }
.booking-strip-icon { font-size: 2.4rem; color: var(--de-gold); flex-shrink: 0; }
.booking-strip-text h2 { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.booking-strip-text p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.booking-strip-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.booking-strip .btn-outline-light { border-color: rgba(255,255,255,.6); }

/* ============ ABOUT ============ */
.about-media { position: relative; padding-bottom: 1.5rem; padding-right: 1.5rem; }
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  border-radius: var(--radius-md);
  border: 6px solid var(--de-cream);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  left: -1rem; top: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  max-width: 150px;
}
.about-badge strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--de-magenta); line-height: 1; }
.about-badge span { font-size: .8rem; color: var(--de-text-muted); margin-top: .3rem; }

.about-points { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-points li { display: flex; gap: .7rem; margin-bottom: .7rem; color: var(--de-text); }
.about-points i { color: var(--de-magenta); margin-top: .2rem; flex-shrink: 0; }

/* ============ SERVICES ============ */
.services-section {
  background: linear-gradient(180deg, var(--de-blush) 0%, var(--de-lavender-mist) 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.services-section::before {
  width: 360px; height: 360px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(255,107,91,.28) 0%, rgba(255,107,91,0) 70%);
}
.services-section::after {
  width: 420px; height: 420px;
  bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(108,60,233,.22) 0%, rgba(108,60,233,0) 70%);
}
.services-section > .container { position: relative; z-index: 1; }
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-img { overflow: hidden; aspect-ratio: 4/3; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-body h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.service-body p { color: var(--de-text-muted); font-size: .93rem; flex-grow: 1; }
.service-call {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--de-magenta);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  width: fit-content;
}
.service-call i { transition: transform .25s ease; }
.service-call:hover { color: var(--de-violet); }
.service-call:hover i { transform: translate(3px, -3px); }

/* ============ WHY CHOOSE ============ */
.why-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); margin-top: 2rem; }
.why-card {
  background: #fff;
  border: 1px solid var(--de-line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  height: 100%;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.why-card i { font-size: 1.7rem; color: var(--de-magenta); margin-bottom: .8rem; display: block; }
.why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-card p { color: var(--de-text-muted); font-size: .92rem; }

/* ============ COUNTER ============ */
.counter-section { background: var(--de-ink); padding: 4rem 0; position: relative; overflow: hidden; }
.counter-section::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--de-gradient-soft);
  opacity: .5;
}
.counter-item { position: relative; color: #fff; }
.counter-item i { font-size: 1.9rem; color: var(--de-gold); margin-bottom: .6rem; display: block; }
.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}
.counter-plus { font-family: var(--font-display); font-size: 1.8rem; color: var(--de-gold); }
.counter-item p { color: rgba(255,255,255,.75); margin-top: .3rem; font-size: .95rem; }

/* ============ HOW IT WORKS ============ */
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid transparent;
  border-image: var(--de-gradient) 1;
  transition: transform .25s ease;
}
.step-card:hover { transform: translateY(-6px); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--de-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: .5rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.step-card p { color: var(--de-text-muted); font-size: .93rem; }

/* ============ GALLERY ============ */
.gallery-filters { margin-bottom: 2rem; }
.filter-btn {
  background: #fff;
  border: 1px solid var(--de-line);
  color: var(--de-text);
  padding: .55rem 1.3rem;
  border-radius: 999px;
  margin: .25rem;
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--de-magenta); color: var(--de-magenta); }
.filter-btn.active { background: var(--de-gradient); color: #fff; border-color: transparent; }

.gallery-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-tile-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(33,19,39,0);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: all .3s ease;
}
.gallery-tile:hover img { transform: scale(1.1); }
.gallery-tile:hover .gallery-tile-icon { opacity: 1; background: rgba(33,19,39,.45); }
.gallery-item { transition: opacity .3s ease, transform .3s ease; }
.gallery-item.hide { display: none; }

.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 10, 25, .92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease;
  padding: 2rem;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 1.1rem;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ============ TESTIMONIALS ============ */
.testimonial-section {
  background: linear-gradient(180deg, var(--de-lavender-mist) 0%, var(--de-blush) 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle, rgba(201,59,142,.18) 0%, rgba(201,59,142,0) 70%);
  z-index: 0;
}
.testimonial-section > .container { position: relative; z-index: 1; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  max-width: 700px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.testimonial-quote { font-size: 2.2rem; color: var(--de-gold); margin-bottom: .5rem; display: inline-block; }
.testimonial-card p { font-size: 1.1rem; color: var(--de-text); font-family: var(--font-display); font-weight: 500; line-height: 1.5; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.testimonial-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-person div { text-align: left; }
.testimonial-person strong { display: block; font-size: .95rem; }
.testimonial-person span { font-size: .8rem; color: var(--de-text-muted); }
.testimonial-stars { color: var(--de-gold); font-size: .8rem; margin-left: .5rem; }

#testimonialCarousel .carousel-control-prev, #testimonialCarousel .carousel-control-next { width: 5%; }
.testi-nav-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--de-magenta);
}

/* ============ FAQ ============ */
.accordion-item { border: none; margin-bottom: 1rem; border-radius: var(--radius-sm) !important; overflow: hidden; box-shadow: var(--shadow-soft); }
.accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--de-ink);
  background: #fff;
  padding: 1.1rem 1.4rem;
}
.accordion-button:not(.collapsed) { color: var(--de-magenta); background: #fff; box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(201,59,142,.2); }
.accordion-button::after { filter: hue-rotate(280deg) saturate(3); }
.accordion-body { color: var(--de-text-muted); padding: 0 1.4rem 1.3rem; }

/* ============ CONTACT ============ */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease;
}
.contact-info-card:hover { transform: translateY(-6px); }
.contact-info-card i { font-size: 1.7rem; color: var(--de-magenta); margin-bottom: .7rem; display: block; }
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.contact-info-card a { color: var(--de-violet); font-weight: 700; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.contact-form-card h3 { margin-bottom: .3rem; }
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--de-line);
  padding: .7rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--de-magenta);
  box-shadow: 0 0 0 3px rgba(201,59,142,.15);
}
.form-success {
  background: rgba(108,60,233,.08);
  border: 1px solid rgba(108,60,233,.25);
  color: var(--de-violet);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  font-size: .92rem;
}

.contact-map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); height: 300px; }
.contact-booking-note {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--de-gradient-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
}
.contact-booking-note i { color: var(--de-magenta); font-size: 1.2rem; margin-top: .1rem; }
.contact-booking-note p { font-size: .9rem; color: var(--de-text); margin: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--de-dark-gradient);
  color: rgba(255,255,255,.75);
  padding-top: 4.5rem;
  position: relative;
  overflow: hidden;
}
.footer-wave { margin-top: -1px; line-height: 0; position: relative; z-index: 1; }
.footer-wave svg { width: 100%; height: 40px; }
.footer-wave path { fill: var(--de-ink); }

/* decorative glow blobs */
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.site-footer::before {
  width: 420px; height: 420px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(201,59,142,.35) 0%, rgba(201,59,142,0) 70%);
}
.site-footer::after {
  width: 480px; height: 480px;
  bottom: -220px; left: -140px;
  background: radial-gradient(circle, rgba(108,60,233,.35) 0%, rgba(108,60,233,0) 70%);
}
.site-footer > .container { position: relative; z-index: 1; }

.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-brand .brand-mark { box-shadow: 0 0 0 4px rgba(255,255,255,.08), 0 10px 26px -10px rgba(201,59,142,.7); }
.footer-brand .brand-text { color: #fff; }
.site-footer p { color: rgba(255,255,255,.62); }

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: .7rem;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 3px;
  background: var(--de-gradient);
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .8rem; }
.site-footer ul a { color: rgba(255,255,255,.68); transition: color .25s ease, padding-left .25s ease; }
.site-footer ul a:hover { color: var(--de-gold); padding-left: .3rem; }

.footer-contact li { display: flex; align-items: center; gap: .8rem; }
.footer-contact i {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  color: var(--de-gold);
  font-size: .9rem;
}

.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all .3s ease;
}
.footer-social a:hover {
  background: var(--de-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -8px rgba(201,59,142,.6);
}

.site-footer hr {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 50%, rgba(255,255,255,0) 100%);
  margin: 2.4rem 0 1.4rem;
  opacity: 1;
}
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-bottom: 1.8rem; font-size: .85rem; }
.footer-bottom p:last-child { color: rgba(255,255,255,.45); }

/* ============ FLOATING ICONS ============ */
.floating-call, .floating-whatsapp {
  position: fixed;
  bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1040;
  box-shadow: var(--shadow-card);
}
.floating-call { right: 24px; background: var(--de-gradient); }
.floating-whatsapp { left: 24px; background: #25D366; }
.floating-ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .6;
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

.back-to-top {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--de-ink);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 1040;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { animation: none; }
  .floating-ping { animation: none; }
  * { transition: none !important; }
}
.cu-lg-wdth{
	width:220px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .carousel-inner, .carousel-item { height: 78vh; min-height: 480px; }
  .navbar-collapse { background: var(--de-cream); border-radius: var(--radius-md); padding: 1.2rem; margin-top: 1rem; box-shadow: var(--shadow-soft); }
  .nav-item.ms-lg-3 { margin-top: .6rem; }
  .about-media { margin-bottom: 2rem; }
  .booking-strip-inner { justify-content: center; text-align: center; flex-direction: column; }
  .booking-strip-text { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .carousel-inner, .carousel-item { height: 88vh; min-height: 520px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .about-img-secondary { width: 52%; }
  .floating-call, .floating-whatsapp { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; }
  .floating-call { right: 16px; }
  .floating-whatsapp { left: 16px; }
  .back-to-top { right: 16px; bottom: 82px; }
}

.carousel-inner, .carousel-item .cu-hgt-aut{
	height:auto!important;
	min-height:auto!important
}
.cu-hgt-aut{
	height:auto!important;
	min-height:auto!important
}