/* ============================================================
   WitchArts.in — UI COMPONENTS
   components.css | All UI Elements, Buttons, Cards, Modals, Nav
   ============================================================ */

/* ============================================================
   1. BUTTONS & INTERACTIVE
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: var(--text-xs);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Primary Button (Gold Filled) */
.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-dark);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  font-weight: var(--fw-bold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
  color: var(--color-dark);
}

/* Secondary Button (Outlined Gold) */
.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Dark Button */
.btn-dark {
  background: var(--color-dark);
  color: var(--color-gold);
  border-color: var(--color-border-gold);
}
.btn-dark:hover {
  background: var(--color-dark-3);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

/* Ghost Button (White) */
.btn-ghost-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Ripple Circle */
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* ============================================================
   2. NAVIGATION BAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding-block: var(--space-4);
  transition: all var(--transition-base);
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-logo-img {
  height: 50px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(201, 168, 76, 0.5));
  transition: transform 0.3s ease, height 0.3s ease;
}

@media (min-width: 1024px) {
  .brand-logo-img {
    height: 105px;
    max-height: 120px;
  }
}

@media (max-width: 1023px) {
  .navbar {
    padding-block: 8px 6px !important;
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7) !important;
  }
  .navbar.scrolled {
    padding-block: 6px 4px !important;
    background: rgba(8, 8, 12, 0.98) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.85) !important;
  }
  .brand-logo-img {
    height: 78px !important;
    max-height: 88px !important;
    filter: drop-shadow(0 4px 18px rgba(201, 168, 76, 0.6)) brightness(1.12) !important;
  }
  body {
    padding-top: 90px !important;
  }
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 70px !important;
    max-height: 78px !important;
  }
  .navbar-inner {
    padding-inline: 4px !important;
  }
  .navbar-actions {
    gap: 8px !important;
  }
}

/* Hide all old floating FABS (floating-whatsapp, floating-call, chatbot-bubble) as requested */
.floating-whatsapp,
.floating-call,
.chatbot-bubble,
#chatbot-bubble {
  display: none !important;
}

/* ============================================================
   BRIDAL SHOWCASE SECTION (HIGH CONTRAST DARK LUXURY STYLES)
   ============================================================ */
.bridal-showcase {
  position: relative !important;
  background-color: #0a0a0f !important;
  color: #ffffff !important;
  padding: 80px 0 !important;
  overflow: hidden !important;
}

.bridal-showcase .bridal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bridal-showcase .bridal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.96) 100%) !important;
  z-index: 1;
}

.bridal-showcase .bridal-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
}

.bridal-showcase h2,
.bridal-showcase h3,
.bridal-showcase .section-heading {
  color: #ffffff !important;
}

.bridal-showcase p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.bridal-showcase .bridal-features li {
  color: #ffffff !important;
  font-size: var(--text-base);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bridal-showcase .feature-check {
  color: #c9a84c !important;
  font-weight: bold;
}

.bridal-showcase .bridal-price-card {
  background: #14141c !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  border-radius: 20px !important;
  padding: 24px !important;
}

.bridal-showcase .price-option {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  margin-bottom: 12px !important;
}

.bridal-showcase .price-option strong {
  color: #ffffff !important;
  display: block;
}

.bridal-showcase .price-option small {
  color: #bbbbbb !important;
}

.bridal-showcase .price-value {
  color: #c9a84c !important;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Mobile Search Bar inside Header (HIDDEN BY DEFAULT, SHOWS ONLY WHEN SEARCH BUTTON IS PRESSED) */
/* ============================================================
   WHY CHOOSE US & STATS SECTION (HIGH CONTRAST DARK LUXURY STYLES)
   ============================================================ */
#why-us,
.why-us-section,
.bg-alt {
  background-color: #0a0a0f !important;
  color: #ffffff !important;
}

.why-us-feature-card {
  background: #14141c !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.why-us-feature-card h3 {
  color: #c9a84c !important;
  font-family: var(--font-heading);
  font-size: 1.3rem !important;
  margin-bottom: 8px !important;
}

.why-us-feature-card p,
.why-us-feature-card .text-muted {
  color: #dddddd !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.stats-grid {
  background: #14141c !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 24px !important;
  padding: 36px 28px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
}

.stat-card .stat-number,
.stat-card .stat-suffix {
  color: #ffd700 !important;
  font-size: 2.8rem !important;
  font-weight: 700 !important;
}

.stat-card .stat-label,
.stat-card .text-muted {
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.mobile-search-wrapper,
.mobile-search-bar {
  display: none !important;
  width: 100%;
  padding: 6px 14px 8px 14px;
  background: rgba(10, 10, 14, 0.98);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 1000;
  box-sizing: border-box;
}

/* Unhide ONLY when 🔍 Search button is pressed in mobile version */
.mobile-search-wrapper.open,
.mobile-search-bar.open {
  display: block !important;
}

.mobile-search-container {
  position: relative;
  width: 100%;
}

.mobile-search-input {
  width: 100%;
  padding: 6px 12px 6px 32px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  border-radius: var(--radius-full);
  color: #ffffff !important;
  font-size: 0.82rem;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.mobile-search-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.95) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.35);
}

.mobile-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  letter-spacing: var(--ls-wide);
  line-height: 1;
}

.brand-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  padding-block: var(--space-2);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  display: inline-block;
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
  margin-left: 3px;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(90deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  opacity: 0;
  visibility: hidden;
  min-width: 240px;
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(25px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.6rem 0.8rem;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
  transform: translateX(4px);
}

.dropdown-icon {
  font-size: 1.1rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Dark Mode Toggle */
.dark-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}
.dark-toggle:hover {
  background: rgba(201,168,76,0.2);
  transform: rotate(15deg);
}

.dark-toggle .sun-icon {
  display: none;
  align-items: center;
  justify-content: center;
}

.dark-toggle .moon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .dark-toggle .sun-icon {
  display: flex;
}

[data-theme="dark"] .dark-toggle .moon-icon {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  padding: 6px;
  cursor: pointer;
  z-index: 10000;
}
@media (max-width: 1023px) {
  .hamburger {
    display: flex !important;
  }
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 14, 0.98);
  backdrop-filter: blur(25px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open, .mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-inner {
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.mobile-close {
  font-size: 1.8rem;
  color: var(--color-gold);
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);

}
.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--color-gold);
}

/* ============================================================
   3. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.2rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--fw-light);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  color: var(--color-gold-light);
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-4);
}

.hero-desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}
.hero-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
}
.scroll-arrow-line {
  width: 1px;
  height: 24px;
  background: var(--gradient-gold);
  animation: pulse 1.5s infinite;
}

/* Page Inner Hero */
.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--color-dark);
  position: relative;
  text-align: center;
}
.page-hero-title {
  font-size: var(--text-5xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

/* ============================================================
   4. CARDS
   ============================================================ */
/* ============================================================
   4. SERVICES BENTO GRID & CARDS (LUXURY STYLING)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card-featured {
    grid-column: span 2;
    flex-direction: row !important;
  }
  .service-card-featured .service-card-image {
    width: 50%;
    height: auto !important;
    min-height: 320px;
  }
  .service-card-featured .service-card-body {
    width: 50%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 20px 45px rgba(201, 168, 76, 0.22);
  transform: translateY(-8px);
}

.service-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-gold);
  color: var(--color-dark);
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 2;
}

.service-card-body {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  border: 2px solid var(--color-white);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-2);
  color: var(--color-text);
  line-height: 1.2;
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-6);
}

.service-card-highlight-tag {
  font-size: 0.72rem;
  padding: 2px 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-gold-dark);
  font-weight: 500;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  gap: var(--space-3);
  flex-wrap: wrap;
}

.service-card-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Team Card */
.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
}
.team-card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-body {
  padding: var(--space-6);
}
.team-name {
  font-size: var(--text-2xl);
  margin-bottom: 2px;
}
.team-role {
  color: var(--color-gold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.team-exp {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.team-specialties {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tag-pill {
  padding: 2px 10px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* Offer & Package Card */
.offer-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.offer-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-gold);
  color: var(--color-dark);
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: bold;
  transform: rotate(45deg);
}
.offer-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}
.offer-title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-block: var(--space-4);
}
.price-original {
  text-decoration: line-through;
  color: var(--color-gray-500);
  font-size: var(--text-lg);
}
.price-current {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: bold;
  color: var(--color-gold);
}
.offer-countdown {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.countdown-unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.65rem;
  text-transform: uppercase;
}
.countdown-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-gold);
}

/* Testimonial / Review Card */
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
}
.review-text {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-6);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

/* ============================================================
   5. BEFORE & AFTER COMPARISON SLIDER
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}
.before-after-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-md);
}
.before-after-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  --split-position: 50%;
}
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before-wrapper {
  position: absolute;
  inset: 0;
  width: var(--split-position, 50%);
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--color-gold);
  z-index: 2;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}
.ba-before {
  height: 100%;
  object-fit: cover;
  max-width: none !important;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--split-position);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.ba-handle::before {
  content: '↔';
  color: var(--color-dark);
  font-weight: bold;
}
.ba-label {
  position: absolute;
  top: 15px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 4;
}
.ba-label--before { left: 15px; }
.ba-label--after { right: 15px; }
.ba-caption {
  text-align: center;
  padding: var(--space-4);
  background: var(--color-surface);
  font-weight: var(--fw-semibold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* ============================================================
   STYLISH WHY CHOOSE US CARDS
   ============================================================ */
.why-us-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.why-us-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(201, 168, 76, 0.25);
}
.why-us-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: var(--gradient-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  box-shadow: 0 6px 15px rgba(201, 168, 76, 0.3);
}

/* ============================================================
   9. BOOKING MODAL & WIZARD
   ============================================================ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(15px);
}
.booking-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-2xl);
  overflow-y: auto;
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
}
.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-4);
}
.booking-modal-title {
  font-size: var(--text-3xl);
}
.booking-modal-subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.booking-close {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}
.booking-close:hover { color: var(--color-gold); }

/* Steps indicator */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  position: relative;
}
.wizard-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
  z-index: 1;
}
.step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}
.step-item.active .step-number {
  background: var(--gradient-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}
.step-item.completed .step-number {
  background: var(--color-dark);
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.step-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 4px;
  max-width: 85px;
  line-height: 1.2;
}

/* ============================================================
   7. CHATBOT WINDOW
   ============================================================ */
.chatbot-bubble {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: var(--z-overlay);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
}
.chatbot-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.6);
}
.chatbot-unread {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: var(--z-overlay);
  width: 380px;
  height: 520px;
  max-width: calc(100vw - 40px);
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  overflow: hidden;
}
.chatbot-header {
  padding: var(--space-4) var(--space-6);
  background: var(--color-dark-3);
  border-bottom: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.chatbot-status {
  font-size: 0.7rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
}
.chatbot-close-btn {
  margin-left: auto;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
}
.chatbot-messages {
  flex: 1;
  padding: var(--space-4);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.chatbot-msg {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.88rem;
  line-height: 1.4;
}
.chatbot-msg.bot {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.chatbot-msg.user {
  background: var(--gradient-gold);
  color: var(--color-dark);
  font-weight: var(--fw-semibold);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chatbot-suggestions {
  padding: 8px var(--space-4);
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.chip-btn {
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  white-space: nowrap;
  cursor: pointer;
}
.chip-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
.chatbot-input-area {
  padding: var(--space-3);
  display: flex;
  gap: 8px;
  background: var(--color-dark-3);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.chatbot-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.85rem;
}
.chatbot-input:focus {
  outline: none;
  border-color: var(--color-gold);
}
.chatbot-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   8. FLOATING FABS & STICKY BARS
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-overlay);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
}
.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-call {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: var(--z-overlay);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  transition: all var(--transition-base);
}
.floating-call:hover { transform: scale(1.08); }

/* FAB Hover Tooltip to the left */
.fab-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(10, 10, 14, 0.95);
  backdrop-filter: blur(15px);
  color: var(--color-white);
  border: 1px solid var(--color-border-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.floating-whatsapp:hover .fab-tooltip,
.floating-call:hover .fab-tooltip,
.chatbot-bubble:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 160px;
  right: 30px;
  z-index: var(--z-overlay);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-border-gold);
  gap: var(--space-3);
}

@media (max-width: 767px) {
  .sticky-cta-bar { display: flex; }
  .floating-whatsapp { bottom: 80px; right: 20px; }
  .floating-call { bottom: 146px; right: 20px; }
  .back-to-top { bottom: 202px; right: 20px; }
  .chatbot-bubble { bottom: 80px; left: 20px; }
  .chatbot-window { bottom: 140px; left: 20px; width: calc(100vw - 40px); }
  .hamburger { display: flex; }
  .navbar-nav { display: none; }
}

/* ============================================================
   9. FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid var(--color-border-gold);
}
.footer-top {
  padding-block: var(--section-py);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: #fff;
  display: inline-block;
  margin-bottom: var(--space-4);
}
.footer-logo em { color: var(--color-gold); font-style: italic; }
.footer-desc {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}
.footer-nav-heading {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-nav-list a {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.footer-nav-list a:hover {
  color: var(--color-gold-light);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-size: var(--text-sm);
}
.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.social-btn:hover {
  background: var(--gradient-gold);
  color: var(--color-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-6);
  font-size: var(--text-xs);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-legal-links {
  display: flex;
  gap: var(--space-6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  width: 90%;
  max-width: 600px;
  background: rgba(18,18,18,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #fff;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  padding: 12px 20px;
  background: var(--color-dark-3);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  border-radius: var(--radius-lg);
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   HEADER EXTENSIONS: SEARCH, CART, LOGIN & SIGNUP
   ============================================================ */
.header-search-box {
  display: none !important;
}
.header-search-input {
  width: 100%;
  padding: 0.45rem 2.2rem 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.82rem;
  transition: all var(--transition-fast);
}
.header-search-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.9);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}
.header-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  font-size: 0.85rem;
}
.search-results-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: var(--z-dropdown);
  max-height: 300px;
  overflow-y: auto;
}
.search-result-item {
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.85rem;
}
.search-result-item:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
}

.header-icon-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.header-icon-btn:hover {
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.05);
}
.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-dark);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(25px);
  border-left: 1px solid var(--color-border-gold);
  z-index: var(--z-modal);
  box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.cart-drawer-body {
  flex: 1;
  padding: var(--space-4) var(--space-6);
  overflow-y: auto;
}
.cart-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  color: #fff;
}
.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--color-border-gold);
}
.cart-drawer-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border-gold);
  background: var(--color-dark-3);
  color: #fff;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.auth-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(15px);
}
.auth-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  background: rgba(18, 18, 22, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(201, 168, 76, 0.2);
  text-align: center;
}

.auth-modal-content form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.auth-modal-content .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}

.auth-modal-content .form-label {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-modal-content .form-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.auth-modal-content .form-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.9);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.auth-logo-header {
  margin-bottom: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.auth-logo-img {
  display: block;
  margin-inline: auto;
  max-width: 230px;
  height: auto;
  object-fit: contain;
  margin-bottom: var(--space-2);
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.45));
}

.auth-nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: var(--space-6);
}

.auth-tab-btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab-btn.active {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.auth-social-btns {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.btn-social {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-social:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.accordion-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.accordion-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.accordion-header:hover {
  color: var(--color-gold-dark);
}
.accordion-item.active .accordion-header {
  color: var(--color-gold-dark);
}
[data-theme="dark"] .accordion-item.active .accordion-header,
[data-theme="dark"] .accordion-header:hover {
  color: var(--color-gold);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform var(--transition-spring);
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-spring);
}
.accordion-body p {
  padding: 0 var(--space-6) var(--space-5) var(--space-6);
  margin: 0;
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   LOCATION & FIND US SECTION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-gold);
  position: relative;
  overflow: hidden;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px dashed rgba(201, 168, 76, 0.3);
}
.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold-dark);
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: var(--lh-relaxed);
}

[data-theme="dark"] .contact-item p {
  color: #ccc;
}

[data-theme="dark"] .contact-item strong {
  color: var(--color-gold);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.contact-item a:hover {
  color: var(--color-gold);
}

.location-map .map-wrapper {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--color-border-gold);
}

/* ============================================================
   NATIVE MOBILE APP EXPERIENCE & BOTTOM APP DOCK
   ============================================================ */

button, input, select, textarea, a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-app-dock {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta-bar { display: none !important; }

  .mobile-app-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(14, 14, 18, 0.96);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    z-index: 9998;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.7);
  }

  .app-dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    gap: 3px;
    flex: 1;
    transition: all 0.2s ease;
  }

  .app-dock-icon {
    font-size: 1.25rem;
    line-height: 1;
  }

  .app-dock-item.active, .app-dock-item:hover {
    color: var(--color-gold);
  }

  .app-dock-center-btn {
    position: relative;
    top: -14px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
    border: 3px solid #0e0e12;
    cursor: pointer;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 74px !important;
  }

  .floating-whatsapp, .floating-call {
    bottom: 80px !important;
  }

  .chatbot-bubble {
    bottom: 80px !important;
  }

  .booking-modal-content, .auth-modal-content {
    border-radius: 24px 24px 0 0 !important;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ============================================================
   HERO FRONT ANIMATED IMAGE SHOWCASE
   ============================================================ */
.hero-grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
  .hero-image-showcase {
    margin-top: 20px;
  }
}

.hero-image-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(255,255,255,0.05));
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201, 168, 76, 0.15);
}

.hero-card-glow-halo {
  position: absolute;
  inset: -15px;
  border-radius: 38px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
  z-index: 0;
  animation: goldHaloPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes goldHaloPulse {
  0% { opacity: 0.4; transform: scale(0.96); }
  100% { opacity: 0.9; transform: scale(1.04); }
}

.hero-card-image-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.hero-animated-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease;
}

.hero-animated-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-img-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,18,0.85) 0%, rgba(14,14,18,0.1) 60%, transparent 100%);
}

.hero-floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(14, 14, 18, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.badge-top-right {
  top: -15px;
  right: -20px;
}

.badge-bottom-left {
  bottom: 25px;
  left: -20px;
}

@media (max-width: 576px) {
  .badge-top-right { right: -5px; }
  .badge-bottom-left { left: -5px; }
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-title {
  display: block;
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--color-gold);
  line-height: 1.2;
}

.float-anim {
  animation: floatLevitate 3.5s ease-in-out infinite alternate;
}

.float-anim-reverse {
  animation: floatLevitateReverse 4s ease-in-out infinite alternate;
}

@keyframes floatLevitate {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatLevitateReverse {
  0% { transform: translateY(0px); }
  100% { transform: translateY(10px); }
}

/* ============================================================
   GLOBAL DARK MODE HIGH CONTRAST & VISIBILITY OVERRIDES
   ============================================================ */
[data-theme="dark"] body {
  background-color: var(--color-bg) !important;
  color: var(--color-text) !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #ffffff !important;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] li,
[data-theme="dark"] td,
[data-theme="dark"] th,
[data-theme="dark"] label {
  color: var(--color-text);
}

/* Service Cards, Product Cards & Generic Cards in Dark Mode */
[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .package-card,
[data-theme="dark"] .offer-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .bg-cream,
[data-theme="dark"] .bg-white {
  background-color: var(--color-surface) !important;
  border-color: var(--color-border-gold) !important;
  color: var(--color-text) !important;
}

[data-theme="dark"] .service-card-title,
[data-theme="dark"] .card-title,
[data-theme="dark"] .team-card-name,
[data-theme="dark"] .package-card-title,
[data-theme="dark"] .blog-card-title {
  color: #ffffff !important;
}

[data-theme="dark"] .service-card-desc,
[data-theme="dark"] .card-desc,
[data-theme="dark"] .team-card-role,
[data-theme="dark"] .package-card-desc,
[data-theme="dark"] .text-muted,
[data-theme="dark"] .text-gray {
  color: #cccccc !important;
}

/* Modals (Booking Modal & Auth Modal) in Dark Mode */
[data-theme="dark"] .booking-modal-content,
[data-theme="dark"] .auth-modal-content {
  background: #14141a !important;
  border-color: var(--color-border-gold) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .booking-modal-content h2,
[data-theme="dark"] .booking-modal-content h3,
[data-theme="dark"] .booking-modal-content strong,
[data-theme="dark"] .booking-modal-content span,
[data-theme="dark"] .booking-modal-content label,
[data-theme="dark"] .booking-modal-content p,
[data-theme="dark"] .booking-modal-title {
  color: #ffffff !important;
}

[data-theme="dark"] .booking-close,
[data-theme="dark"] .mobile-close {
  color: #ffffff !important;
}

/* Forms & Inputs in Dark Mode */
[data-theme="dark"] .form-input,
[data-theme="dark"] select.form-input,
[data-theme="dark"] textarea.form-input,
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] input[type="password"],
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background-color: #1c1c24 !important;
  border-color: var(--color-border-gold) !important;
  color: #ffffff !important;
}

[data-theme="dark"] select option {
  background-color: #1c1c24 !important;
  color: #ffffff !important;
}

[data-theme="dark"] .form-label {
  color: var(--color-gold-light) !important;
}

/* Accordions / FAQs in Dark Mode */
[data-theme="dark"] .accordion-item {
  background: var(--color-surface) !important;
  border-color: var(--color-border-gold) !important;
}

[data-theme="dark"] .accordion-header {
  color: #ffffff !important;
}

[data-theme="dark"] .accordion-body {
  color: #cccccc !important;
}

/* Tables in Dark Mode */
[data-theme="dark"] table {
  background: var(--color-surface) !important;
  color: #ffffff !important;
}

[data-theme="dark"] th {
  background: #1a1a22 !important;
  color: var(--color-gold) !important;
}

[data-theme="dark"] td {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Section Intros & Labels in Dark Mode */
[data-theme="dark"] .section-label {
  color: var(--color-gold) !important;
}

[data-theme="dark"] .section-heading {
  color: #ffffff !important;
}

[data-theme="dark"] .section-subheading {
  color: #cccccc !important;
}

/* Footer in Dark Mode */
[data-theme="dark"] .footer {
  background-color: #08080b !important;
  color: #dddddd !important;
}

[data-theme="dark"] .footer-nav-list a {
  color: #aaaaaa !important;
}

[data-theme="dark"] .footer-nav-list a:hover {
  color: var(--color-gold) !important;
}

/* Navigation & Header Dropdowns in Dark Mode */
[data-theme="dark"] .nav-dropdown,
[data-theme="dark"] .mobile-menu,
[data-theme="dark"] .search-results-dropdown {
  background: #14141a !important;
  border-color: var(--color-border-gold) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .dropdown-item,
[data-theme="dark"] .mobile-nav-link {
  color: #dddddd !important;
}

[data-theme="dark"] .dropdown-item:hover,
[data-theme="dark"] .mobile-nav-link:hover {
  color: var(--color-gold) !important;
  background: rgba(201, 168, 76, 0.15) !important;
}
