/* ============================================
   GlowSpa - Premium Beauty Salon
   Style Sheet
   ============================================ */

/* --- CSS Variables (Brand Colors & Tokens) --- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --cream: #FDF6EC;
  --deep: #1A0A2E;
  --plum: #3D1454;
  --plum-mid: #5A2070;
  --rose: #E8A0B4;
  --rose-light: #F5D0DC;
  --white: #FFFFFF;
  --text-dark: #1A0A2E;
  --text-muted: #7B6B8A;
  --border: rgba(201,168,76,0.25);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;

  --shadow-gold: 0 4px 30px rgba(201,168,76,0.25);
  --shadow-soft: 0 8px 40px rgba(26,10,46,0.12);
  --radius: 12px;
  --radius-lg: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); }

a { text-decoration: none; color: inherit; }

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

section { position: relative; overflow: hidden; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  letter-spacing: 4px;
  animation: shimmer 1.5s infinite alternate;
}
.preloader-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 16px;
  animation: pulse-line 1.2s infinite;
}
@keyframes shimmer {
  from { opacity: 0.5; text-shadow: 0 0 8px rgba(201,168,76,0); }
  to { opacity: 1; text-shadow: 0 0 30px rgba(201,168,76,0.8); }
}
@keyframes pulse-line {
  0%, 100% { transform: scaleX(0.4); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(26,10,46,0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold) !important;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 10px;
}
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-link {
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: all 0.3s ease;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { left: 16px; right: 16px; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--deep) !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4) !important;
  color: var(--deep) !important;
}
.nav-cta::after { display: none; }
.navbar-toggler {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.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='rgba(201,168,76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(26,10,46,0.88) 0%, rgba(61,20,84,0.75) 50%, rgba(26,10,46,0.9) 100%),
    url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  flex: 1; max-width: 50px;
  height: 1px; background: var(--gold);
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  animation: fadeUp 0.9s ease both;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-style: italic;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--deep);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
  color: var(--deep);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
  color: var(--gold);
}
.hero-badges {
  display: flex; gap: 32px; margin-top: 56px;
  animation: fadeUp 0.9s 0.6s ease both;
}
.hero-badge {
  text-align: center;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
}
.hero-badge-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-image-card {
  position: relative;
  animation: fadeRight 1s 0.3s ease both;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: rgba(26,10,46,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: white;
  font-family: var(--font-ui);
}
.hero-float-card.card-rating {
  bottom: -20px; left: -30px;
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card.card-promo {
  top: 30px; right: -20px;
  text-align: center;
}
.rating-stars { color: var(--gold); font-size: 0.9rem; }
.rating-text { font-size: 0.78rem; opacity: 0.7; }
.promo-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.promo-text { font-size: 0.82rem; opacity: 0.8; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-down 2s infinite;
}
@keyframes scroll-down {
  0% { top: 6px; opacity: 1; }
  100% { top: 26px; opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}
.section-divider.left { margin-left: 0; }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-section {
  background: linear-gradient(90deg, var(--plum), var(--deep), var(--plum));
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  display: flex; align-items: center; gap: 20px;
}
.marquee-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: 100px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(232,160,180,0.12));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: rotate(-5deg) scale(1.08);
}
.service-name {
  font-size: 1.4rem;
  color: var(--deep);
  margin-bottom: 10px;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-duration {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
#pricing {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--deep) 0%, var(--plum) 50%, var(--deep) 100%);
  position: relative;
}
#pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
#pricing .section-title { color: var(--white); }
#pricing .section-sub { color: rgba(255,255,255,0.6); }
.pricing-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.pricing-tab {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.pricing-tab.active, .pricing-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep);
  border-color: transparent;
  font-weight: 600;
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeUp 0.5s ease both; }
.pricing-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.2s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(201,168,76,0.05); }
.pricing-row.header {
  background: rgba(201,168,76,0.1);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  flex: 1;
}
.price-duration {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  flex: 1; text-align: center;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  text-align: right;
  flex: 0.5;
}
.price-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 10px;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
#booking {
  padding: 100px 0;
  background: var(--cream);
}
.booking-wrapper {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
.booking-info {
  background: linear-gradient(160deg, var(--deep), var(--plum));
  padding: 60px 44px;
  color: white;
  display: flex; flex-direction: column; justify-content: space-between;
}
.booking-info h3 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}
.booking-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}
.booking-feature {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.booking-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.booking-feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}
.booking-feature-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-ui);
}
.booking-form-area { padding: 60px 48px; }
.booking-form-area h4 {
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 8px;
}
.booking-form-area p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.form-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: rgba(122,107,138,0.55); }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--deep);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; animation: fadeUp 0.5s ease; }
.success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}
.form-success h4 { color: var(--deep); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #FDF0E6 0%, var(--cream) 100%);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(201,168,76,0.2);
  position: absolute;
  top: 28px; right: 28px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex; gap: 3px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.author-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--deep);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--deep);
  display: block;
}
.author-tag {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   WHATSAPP CTA BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 999;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  animation: pop-in 0.5s 2s ease both;
}
.whatsapp-bubble {
  background: var(--white);
  border-radius: 40px;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  flex-shrink: 0;
  animation: pulse-wa 2.5s 3s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--deep);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
  position: relative;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
}
.footer-social {
  display: flex; gap: 12px;
}
.social-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a:hover::before { opacity: 1; }
.hours-table { width: 100%; }
.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  vertical-align: top;
}
.hours-table td:first-child { color: rgba(255,255,255,0.45); width: 55%; }
.hours-open { color: #4CAF50 !important; }
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.contact-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
}
.contact-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.contact-text a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.contact-text a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}
.footer-bottom-text span { color: var(--gold); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 1050;
}
.custom-toast {
  background: var(--deep);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: white;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  box-shadow: var(--shadow-gold);
  animation: slideToast 0.4s ease;
  display: flex; align-items: center; gap: 12px;
}
@keyframes slideToast {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
  .booking-info {
    padding: 48px 36px;
  }
  .hero-image-card { display: none; }
  .hero-badges { gap: 24px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .booking-form-area { padding: 36px 28px; }
  .pricing-row { padding: 16px 20px; }
  .price-duration { display: none; }
  .whatsapp-bubble { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .hero-badges { flex-wrap: wrap; gap: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline-gold { justify-content: center; }
}