/* ============================================================
   GLORIOUS BEAUTY SPA — Luxury Stylesheet
   Palette: Deep Black, Royal Plum, Champagne Gold, Rose Gold
   ============================================================ */

:root {
  --bg: #07060a;
  --bg-soft: #0c0a12;
  --plum: #3b0a45;
  --plum-deep: #2a0832;
  --plum-light: #4a1455;
  --gold: #e6c068;
  --gold-light: #f5e6a8;
  --gold-deep: #b8923a;
  --rose-gold: #b76e79;
  --cream: #ece8df;
  --muted: #9a9286;
  --line: rgba(230, 192, 104, 0.18);
  --line-strong: rgba(230, 192, 104, 0.5);
  --shadow-card: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(230, 192, 104, 0.12);
  --gradient-gold: linear-gradient(135deg, #f5e6a8 0%, #e6c068 35%, #b8923a 70%, #e6c068 100%);
  --gradient-plum: linear-gradient(135deg, #2a0832 0%, #4a1455 100%);
  --gradient-bg: radial-gradient(ellipse at top, #160826 0%, #07060a 60%);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
  overflow-x: hidden;
}

/* Background ornament */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px circle at 10% 0%, rgba(59, 10, 69, 0.35), transparent 60%),
    radial-gradient(700px circle at 90% 100%, rgba(74, 20, 85, 0.25), transparent 60%),
    var(--bg);
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin-top: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gradient-gold);
}

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}

.text-center .eyebrow { padding-left: 0; padding-right: 0; }
.text-center .eyebrow::before { display: none; }

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0.75rem auto 2rem;
  color: var(--gold);
}
.flourish::before, .flourish::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-deep), transparent);
}
.flourish span { font-size: 0.9rem; opacity: 0.85; }

/* ===== BUTTONS ===== */

.btn-gold,
.btn-gold:focus {
  background: var(--gradient-gold);
  background-size: 200% 100%;
  color: #1a0a22;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(230, 192, 104, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.btn-gold:hover {
  background-position: 100% 0;
  color: #1a0a22;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(230, 192, 104, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline-gold,
.btn-outline-gold:focus {
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 13px 32px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: rgba(230, 192, 104, 0.08);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.4);
}

/* ===== NAVBAR ===== */

.nav-luxury {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  padding: 22px 0;
  background: transparent;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.nav-luxury.scrolled {
  background: rgba(7, 6, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.brand-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.brand-mark:hover { background: var(--gradient-gold); -webkit-background-clip: text; color: transparent; }
.brand-mark .small {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: var(--gold-deep);
  -webkit-text-fill-color: var(--gold-deep);
  margin-top: 3px;
  text-transform: uppercase;
  font-style: normal;
}

.nav-luxury .nav-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream) !important;
  padding: 8px 0 !important;
  margin: 0 18px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-luxury .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gradient-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-luxury .nav-link:hover::after,
.nav-luxury .nav-link.active::after { width: 100%; }
.nav-luxury .nav-link:hover,
.nav-luxury .nav-link.active { color: var(--gold) !important; }

.nav-luxury .nav-cta {
  background: var(--gradient-gold);
  color: #1a0a22 !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 14px;
  letter-spacing: 0.18em !important;
  font-size: 0.74rem !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(230, 192, 104, 0.2);
}
.nav-luxury .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(230, 192, 104, 0.32);
  color: #1a0a22 !important;
}
.nav-luxury .nav-cta::after { display: none; }

.navbar-toggler {
  border: 1px solid var(--gold);
  padding: 6px 10px;
  border-radius: 6px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(230, 192, 104, 0.2); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23e6c068' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  .nav-luxury { background: rgba(7, 6, 10, 0.95); backdrop-filter: blur(14px); padding: 14px 0; }
  .nav-luxury .navbar-collapse {
    background: rgba(12, 10, 18, 0.98);
    margin-top: 14px;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--line);
  }
  .nav-luxury .nav-link { margin: 8px 0; }
  .nav-luxury .nav-cta { display: inline-block; margin-top: 10px; margin-left: 0; }
}

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.55) 0%, rgba(7, 6, 10, 0.85) 100%), url('https://srv1872-files.hstgr.io/a49c48fa769e111e/api/preview/big/public_html/hero.png?inline=true&key=1778169079230') center/cover no-repeat;
  padding: 120px 20px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(7, 6, 10, 0.6) 75%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  margin: 1rem 0 0.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--cream);
  letter-spacing: 0.2em;
  margin: 1.5rem 0 2.5rem;
  opacity: 0.9;
}
.hero-tagline span { margin: 0 12px; color: var(--gold); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 2;
  animation: floatDown 2.4s ease-in-out infinite;
}
.scroll-down i { display: block; margin-top: 8px; font-size: 1rem; }

@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===== SECTIONS ===== */

.section { padding: 110px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(42, 8, 50, 0.35) 50%, transparent 100%);
}

.section-header { margin-bottom: 4rem; }

/* ===== ABOUT PREVIEW ===== */

.about-preview-img {
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  pointer-events: none;
  margin: 14px;
  border-radius: 2px;
}
.about-preview-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-preview-img:hover img { transform: scale(1.05); }

/* ===== SERVICE CARDS ===== */

.service-card {
  background: linear-gradient(180deg, rgba(20, 12, 28, 0.6) 0%, rgba(12, 10, 18, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 6, 10, 0.7) 100%);
}
.service-card-body { padding: 28px 24px 32px; }
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  color: var(--cream);
  font-weight: 500;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  min-height: 70px;
}
.service-card .duration {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.service-card .read-more {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-card .read-more:hover { gap: 14px; color: var(--gold-light); }

/* ===== GALLERY ===== */

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: zoom-in;
  margin-bottom: 30px;
  background: var(--bg-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all 0.4s ease;
  margin: 10px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { border-color: var(--line-strong); margin: 14px; }

.gallery-item.tall img { height: 480px; }
.gallery-item.wide img { height: 320px; }
.gallery-item.normal img { height: 320px; }

@media (max-width: 768px) {
  .gallery-item.tall img,
  .gallery-item.wide img,
  .gallery-item.normal img { height: 260px; }
}

/* ===== BOOKING / FORMS ===== */

.booking-section {
  background:
    linear-gradient(135deg, rgba(42, 8, 50, 0.85), rgba(74, 20, 85, 0.7)),
    url('/images/about.png') center/cover fixed;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-card {
  background: rgba(7, 6, 10, 0.72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 56px 48px;
  box-shadow: var(--shadow-card);
}

.form-control,
.form-select {
  background: rgba(7, 6, 10, 0.6) !important;
  border: 1px solid var(--line) !important;
  color: var(--cream) !important;
  padding: 14px 18px;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(230, 192, 104, 0.12) !important;
  background: rgba(7, 6, 10, 0.8) !important;
  color: var(--cream) !important;
}
.form-control::placeholder { color: rgba(154, 146, 134, 0.6); }
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-select option { background: #0c0a12; color: var(--cream); }

/* ===== TESTIMONIALS ===== */

.testimonials {
  background: linear-gradient(180deg, transparent, rgba(42, 8, 50, 0.25), transparent);
}
.testimonial-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 6px;
  margin-bottom: 1.5rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--gold);
  vertical-align: middle;
  margin: 0 6px;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.testimonial-meta { font-size: 0.75rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.18em; }

.carousel-control-prev, .carousel-control-next {
  width: 50px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; }
.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.carousel-indicators .active { opacity: 1; }

/* ===== WHY CHOOSE US ===== */

.feature-card {
  text-align: center;
  padding: 44px 28px;
  background: linear-gradient(180deg, rgba(20, 12, 28, 0.5), rgba(12, 10, 18, 0.85));
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.5s ease;
}
.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.feature-card:hover::before { width: 60%; }
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 192, 104, 0.15), rgba(184, 146, 58, 0.05));
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.5rem;
  transition: all 0.4s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(230, 192, 104, 0.25), rgba(184, 146, 58, 0.1));
}
.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.feature-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== PAGE HEADER (interior pages) ===== */

.page-header {
  padding: 200px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.7) 0%, rgba(42, 8, 50, 0.45) 100%), var(--bg);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.page-header .breadcrumb-line {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-header .breadcrumb-line a { color: var(--muted); }
.page-header .breadcrumb-line .sep { color: var(--gold); margin: 0 12px; }

/* ===== CONTACT INFO CARD ===== */

.contact-info-card {
  background: linear-gradient(180deg, rgba(20, 12, 28, 0.6), rgba(12, 10, 18, 0.9));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 36px;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 192, 104, 0.18), rgba(184, 146, 58, 0.06));
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-info-item h5 {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: var(--sans);
  font-weight: 600;
}
.contact-info-item p { color: var(--cream); margin: 0; font-size: 0.95rem; line-height: 1.6; }
.contact-info-item a { color: var(--cream); }
.contact-info-item a:hover { color: var(--gold); }

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.95) 0%, #050409 100%);
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer p, .footer li { color: var(--muted); font-size: 0.92rem; line-height: 1.85; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul a { color: var(--muted); transition: color 0.3s ease, padding-left 0.3s ease; display: inline-block; }
.footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer .brand-mark { font-size: 1.6rem; }
.footer .footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  margin: 0.5rem 0 1.2rem;
}
.footer-bottom {
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.footer-bottom .flourish { margin-top: -50px; margin-bottom: 30px; }
.footer .contact-line { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer .contact-line i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* ===== FLOATING BUTTONS ===== */

.floating-btn {
  position: fixed;
  bottom: 28px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-call {
  left: 24px;
  background: var(--gradient-gold);
  color: #1a0a22;
  animation: pulseGold 2.4s ease-in-out infinite;
}
.floating-whatsapp {
  right: 24px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  color: #fff;
  animation: pulseGreen 2.4s ease-in-out infinite;
}
.floating-call:hover { color: #1a0a22; }
.floating-whatsapp:hover { color: #fff; }

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 192, 104, 0.5), 0 12px 30px rgba(0, 0, 0, 0.45); }
  50% { box-shadow: 0 0 0 16px rgba(230, 192, 104, 0), 0 12px 30px rgba(0, 0, 0, 0.45); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 30px rgba(0, 0, 0, 0.45); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 12px 30px rgba(0, 0, 0, 0.45); }
}

@media (max-width: 480px) {
  .floating-btn { width: 50px; height: 50px; font-size: 1.2rem; bottom: 20px; }
  .floating-call { left: 16px; }
  .floating-whatsapp { right: 16px; }
}

/* ===== TOAST ===== */

.luxury-toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 1060;
  background: linear-gradient(180deg, rgba(20, 12, 28, 0.98), rgba(12, 10, 18, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 18px 24px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: var(--shadow-card);
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.luxury-toast.show { transform: translateX(0); }
.luxury-toast .toast-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1a0a22;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.luxury-toast .toast-body strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2px;
}
.luxury-toast .toast-body small { color: var(--muted); font-size: 0.8rem; }

@media (max-width: 480px) {
  .luxury-toast { right: 12px; left: 12px; min-width: 0; top: 88px; }
}

/* ===== LIGHTBOX (gallery modal) ===== */

.modal-lightbox .modal-content {
  background: transparent;
  border: none;
}
.modal-lightbox .modal-body {
  padding: 0;
  text-align: center;
}
.modal-lightbox img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.modal-lightbox .btn-close {
  position: absolute;
  top: -50px; right: 0;
  background: var(--gradient-gold);
  border-radius: 50%;
  opacity: 1;
  width: 40px; height: 40px;
  background-image: none;
  color: #1a0a22;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-lightbox .btn-close::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

/* ===== FINAL CTA STRIP ===== */

.cta-strip {
  background:
    linear-gradient(135deg, rgba(42, 8, 50, 0.85), rgba(74, 20, 85, 0.7)),
    var(--gradient-bg);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: italic;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-strip p { color: var(--cream); max-width: 620px; margin: 0 auto 2rem; }

/* ===== AOS REPLACEMENTS (custom reveal classes) ===== */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].is-visible { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal="zoom"].is-visible { transform: scale(1); }
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }

/* ===== UTILITY ===== */

.text-gold { color: var(--gold) !important; }
.text-cream { color: var(--cream) !important; }
.text-muted-luxe { color: var(--muted) !important; }

.section-title-with-eyebrow { text-align: center; }

/* Fix Bootstrap container max width on large screens for premium feel */
@media (min-width: 1400px) { .container { max-width: 1240px; } }

/* Smooth fade-in on page load */
body { animation: pageFadeIn 0.8s ease both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }