/* ============================================================
   THE BELLA SPOT – Premium Women Salon CSS
   Color Palette: Cream | Rose Gold | Soft Pink | Black
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --rosegold: #b76e79;
  --rosegold-light: #d4a0a8;
  --rosegold-dark: #8c4a55;
  --rosegold-gradient: linear-gradient(135deg, #b76e79 0%, #c9939a 50%, #d4a0a8 100%);
  --cream: #fdf8f5;
  --cream-dark: #f5ede6;
  --soft-pink: #f9eef0;
  --blush: #f2d7db;
  --black: #1a1a1a;
  --dark: #2c2c2c;
  --text-body: #4a4a4a;
  --text-muted: #888;
  --white: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --shadow-soft: 0 8px 32px rgba(183, 110, 121, 0.12);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ---------- Typography Helpers ---------- */
.section-padding { padding: 90px 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--rosegold);
}

.divider-rosegold {
  width: 60px;
  height: 2px;
  background: var(--rosegold-gradient);
  border-radius: 2px;
  margin-bottom: 16px;
}

.bg-cream { background-color: var(--cream); }

.script-text {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--rosegold);
}

/* ---------- Buttons ---------- */
.btn-rosegold {
  background: var(--rosegold-gradient);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.35);
}

.btn-rosegold:hover, .btn-rosegold:focus {
  background: linear-gradient(135deg, #8c4a55, #b76e79);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(183, 110, 121, 0.45);
}

.btn-outline-rosegold {
  background: transparent;
  color: var(--rosegold);
  border: 1.5px solid var(--rosegold);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-rosegold:hover, .btn-outline-rosegold:focus {
  background: var(--rosegold-gradient);
  color: var(--white);
  border-color: var(--rosegold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ---------- Placeholder Blocks ---------- */
.bg-placeholder {
  background: linear-gradient(135deg, var(--blush) 0%, var(--soft-pink) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  text-align: center;
  color: var(--rosegold);
}

.placeholder-icon { font-size: 3rem; display: block; margin-bottom: 8px; }
.placeholder-content p { font-size: 0.85rem; color: var(--rosegold-dark); font-weight: 500; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.1);
  padding: 14px 0;
  transition: var(--transition);
}

#mainNavbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar-brand { padding: 0; }

.brand-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rosegold-dark);
  line-height: 1;
  display: block;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-top: 2px;
}

.navbar-toggler {
  border: 1.5px solid rgba(183, 110, 121, 0.4);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b76e79' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--dark) !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--rosegold) !important;
  background: rgba(183, 110, 121, 0.06);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: 
    linear-gradient(160deg, rgba(183, 110, 121, 0.72) 0%, rgba(44, 10, 18, 0.82) 100%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(183, 110, 121, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rosegold-light);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--rosegold-light);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.hero-services {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosegold-light);
  margin-bottom: 36px;
  opacity: 0.9;
}

.hero-cta { margin-bottom: 20px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--rosegold-light);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ---------- Animations ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--soft-pink);
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
}

.intro-strip-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   FEATURED SERVICES
   ============================================================ */
.feat-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rosegold-light);
}

.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.feat-card h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}

.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -10px;
  right: 0;
  background: var(--white);
  border: 2px solid var(--blush);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: var(--shadow-soft);
}

.about-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 14px;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
}

.promise-item i {
  color: var(--rosegold);
  font-size: 1rem;
}

.about-tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: normal;
  color: var(--rosegold-dark);
  font-weight: 600;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rosegold-light);
}

.service-card-featured {
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--cream) 100%);
  border-color: var(--rosegold-light);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--blush);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
  content: '✦';
  color: var(--rosegold);
  font-size: 0.65rem;
}

.rituals-card { padding: 28px 32px; }
.rituals-icon { font-size: 3.5rem; }

/* ============================================================
   BRIDAL SECTION
   ============================================================ */
.bridal-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(160deg, rgba(44, 10, 18, 0.86) 0%, rgba(183, 110, 121, 0.78) 100%),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

.bridal-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(183,110,121,0.2) 0%, transparent 70%);
}

.bridal-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.bridal-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.bridal-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.bridal-tag:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--rosegold-light);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rosegold-light);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--soft-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--rosegold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--rosegold-gradient);
  color: var(--white);
}

.why-card h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ARTIST SECTION
   ============================================================ */
.artist-section { background: var(--cream); }

.artist-img-wrap {
  width: 300px;
  max-width: 100%;
}

.artist-img {
  width: 300px;
  height: 380px;
  border-radius: 50% 50% 60% 60% / 40% 40% 60% 60%;
  max-width: 100%;
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rosegold-dark);
  margin-bottom: 4px;
}

.artist-title {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 20px;
  font-weight: 500;
}

.artist-desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.filter-btn {
  background: var(--white);
  color: var(--text-body);
  border: 1.5px solid var(--blush);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rosegold-gradient);
  color: var(--white);
  border-color: var(--rosegold);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--blush);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-pink), var(--cream-dark));
  transition: var(--transition);
}

.gallery-placeholder span { font-size: 3rem; margin-bottom: 10px; }
.gallery-placeholder p { font-size: 0.8rem; color: var(--rosegold-dark); font-weight: 500; margin: 0; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(183,110,121,0.82), rgba(44,10,18,0.88));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay p {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-card:hover .gallery-placeholder { transform: scale(1.04); }

.gallery-item { transition: var(--transition); }
.gallery-item.hidden { display: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--soft-pink); }

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--blush);
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.testi-stars {
  color: #f0b429;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--rosegold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong { font-size: 0.9rem; color: var(--dark); }
.testi-author small { font-size: 0.78rem; }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(135deg, rgba(44, 10, 18, 0.88) 0%, rgba(140, 74, 85, 0.85) 100%),
    url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1600&q=80') center/cover no-repeat;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183,110,121,0.15) 0%, transparent 70%);
}

.booking-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 8px;
}

.booking-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rosegold-light);
  margin: 16px 0 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rosegold-dark);
  margin-bottom: 4px;
}

.contact-subtitle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail i {
  color: var(--rosegold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.contact-detail p,
.contact-detail div {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.contact-detail a {
  color: var(--rosegold-dark);
  font-weight: 500;
}

.contact-detail a:hover { color: var(--rosegold); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--blush);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section { background: #1a0a0e; color: rgba(255,255,255,0.75); }

.footer-top { padding: 70px 0 50px; }

.footer-brand-name {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--rosegold-light);
  margin-bottom: 4px;
  line-height: 1;
}

.footer-brand-tag {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}

.footer-brand-sub {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 12px;
}

.footer-brand-services {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.footer-contact-link:hover { color: var(--rosegold-light); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--rosegold);
  font-size: 1rem;
}

.footer-links a:hover { color: var(--rosegold-light); padding-left: 4px; }

.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  background: rgba(0,0,0,0.25);
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-credit { font-size: 0.82rem; }
.text-rosegold { color: var(--rosegold) !important; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--rosegold-gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(183, 110, 121, 0.5);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .about-img-main { height: 380px; }
  .navbar-collapse { background: var(--white); border-radius: var(--radius); margin-top: 12px; padding: 16px; box-shadow: var(--shadow-card); }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 56px 0; }
  .hero-section { min-height: 100dvh; }
  .about-img-main { height: 280px; }
  .promise-grid { grid-template-columns: 1fr; }
  .booking-phone { font-size: 1.5rem; }
  .artist-img-wrap { width: 220px; }
  .artist-img { width: 220px; height: 280px; }
  .contact-info-card { padding: 28px 22px; }
  .footer-top { padding: 50px 0 36px; }
}

@media (max-width: 575.98px) {
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .feat-card { padding: 20px 14px; }
  .service-card { padding: 24px 20px; }
  .rituals-card { padding: 22px 20px; }
  .why-card { padding: 28px 20px; }
}
