/* ==========================================================================
   Classic Beauty Parlor Ganganagar - Traditional Indian Bridal & Beauty Salon
   Theme Colors:
   Primary: Maroon (#7A1F3D)
   Secondary: Gold (#D4AF37)
   Accent: Mehndi Green (#5A6B2D)
   Background: Cream (#FFF8F0)
   Highlight: Soft Pink (#F8D9D8)
   ========================================================================== */

:root {
  --maroon: #7A1F3D;
  --maroon-dark: #581228;
  --maroon-light: #9B2D52;
  --gold: #D4AF37;
  --gold-light: #FBF0B9;
  --gold-dark: #AA771C;
  --mehndi: #5A6B2D;
  --mehndi-light: #7E963E;
  --cream: #FFF8F0;
  --cream-dark: #F7EFE5;
  --soft-pink: #F8D9D8;
  --pink-light: #FDF5F5;
  --dark-text: #2C1810;
  --muted-text: #6D5D55;
  
  --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Noto Sans Devanagari', sans-serif;

  --card-radius: 18px;
  --card-border: 1px solid rgba(212, 175, 55, 0.4);
  --box-shadow-soft: 0 10px 30px rgba(122, 31, 61, 0.08);
  --box-shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.25);
  --box-shadow-hover: 0 15px 35px rgba(122, 31, 61, 0.15);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: url('../images/pattern-bg.svg');
  background-repeat: repeat;
  background-size: 80px 80px;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.font-accent {
  font-family: var(--font-accent);
}

/* Section Header Typography & Indian Motifs */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--mehndi);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  color: var(--maroon);
  margin-bottom: 12px;
}

.mandala-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px auto 0;
}

.mandala-divider .line {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mandala-divider .lotus-icon {
  width: 32px;
  height: 26px;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

/* Topbar */
.topbar {
  background-color: var(--maroon-dark);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.topbar a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.topbar a:hover {
  color: #fff;
}

/* Navbar */
.navbar-parlor {
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(122, 31, 61, 0.08);
  transition: var(--transition-smooth);
  padding: 8px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  box-shadow: var(--box-shadow-gold);
}

.brand-text h1 {
  font-size: 1.18rem;
  margin: 0;
  line-height: 1.15;
  color: var(--maroon);
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mehndi);
  font-weight: 600;
  display: block;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-text) !important;
  padding: 6px 10px !important;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon) !important;
  background: rgba(248, 217, 216, 0.45);
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-link {
    font-size: 0.83rem;
    padding: 6px 7px !important;
  }
  .brand-text h1 {
    font-size: 1.08rem;
  }
}

/* Desktop Dropdown on Hover */
@media (min-width: 1200px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInNav 0.22s ease forwards;
  }
}

@keyframes fadeInNav {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar-parlor .dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 25px rgba(122, 31, 61, 0.12);
  padding: 8px;
  background: #fff;
  min-width: 200px;
}

.navbar-parlor .dropdown-item {
  font-size: 0.86rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--dark-text);
  transition: var(--transition-smooth);
}

.navbar-parlor .dropdown-item:hover {
  background: rgba(248, 217, 216, 0.45);
  color: var(--maroon);
  transform: translateX(4px);
}

/* Shimmer Gold Buttons */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%);
  color: #fff;
  border: 1px solid #FFE49E;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(30deg);
  transition: all 0.75s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E2C04B 0%, #BA8524 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover::after {
  left: 140%;
}

.btn-maroon {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--cream);
  border: 1px solid var(--gold);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(122, 31, 61, 0.3);
}

.btn-maroon:hover {
  background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122, 31, 61, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--gold);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-gold);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* Hero Section Slideshow */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--maroon-dark);
  overflow: hidden;
}

.hero-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
  transform: scale(1.05);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(122, 31, 61, 0.6) 0%, rgba(30, 7, 15, 0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 60px 20px;
}

.hero-mandala-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 248, 240, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulseGold 3s infinite;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-size: 1.4rem;
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--gold-light);
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 25px;
}

.hero-slider-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 10px;
}

/* Traditional Cards & Frames */
.parlor-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  overflow: hidden;
  position: relative;
}

.parlor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--gold);
}

.gold-frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, rgba(212,175,55,0.4), rgba(122,31,61,0.2), rgba(212,175,55,0.4));
  border-radius: var(--card-radius);
}

.gold-frame-inner {
  border-radius: calc(var(--card-radius) - 4px);
  overflow: hidden;
  position: relative;
}

/* About Us Section */
.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: var(--card-radius);
  border: 3px solid var(--gold);
  box-shadow: var(--box-shadow-hover);
  height: 480px;
  object-fit: cover;
}

.about-badge-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--maroon);
  color: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  border: 2px solid var(--gold);
  box-shadow: var(--box-shadow-gold);
  text-align: center;
}

.about-badge-card .num {
  font-size: 2.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--pink-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.25rem;
}

/* Service Cards & Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--dark-text);
  padding: 8px 22px;
  border-radius: 25px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  box-shadow: 0 4px 15px rgba(122, 31, 61, 0.25);
}

.service-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--box-shadow-hover);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(122, 31, 61, 0.88);
  backdrop-filter: blur(5px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--gold);
}

.service-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.28rem;
  margin-bottom: 8px;
  color: var(--maroon);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted-text);
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px dashed rgba(212, 175, 55, 0.4);
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--maroon);
  font-family: var(--font-heading);
}

/* Bridal Packages */
.package-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--box-shadow-soft);
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
  transform: scale(1.03);
}

.package-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 36px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.package-header {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  padding: 30px 24px 25px;
  text-align: center;
  position: relative;
}

.package-name {
  color: var(--gold-light);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.package-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.package-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
}

.package-original-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.package-body {
  padding: 26px;
  flex-grow: 1;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.package-features li {
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features li i {
  color: var(--mehndi);
  margin-top: 4px;
}

/* Galleries */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--box-shadow-soft);
  cursor: pointer;
  background-color: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(122, 31, 61, 0.92) 0%, rgba(122, 31, 61, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.gallery-category {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* Why Choose Us */
.why-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--box-shadow-soft);
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--box-shadow-hover);
}

.why-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-pink), #fff);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--maroon);
  box-shadow: var(--box-shadow-gold);
}

/* Before & After Interactive Slider */
.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid var(--gold);
  box-shadow: var(--box-shadow-hover);
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--gold);
}

.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 16px;
  background: rgba(122, 31, 61, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid var(--gold);
  z-index: 3;
}

.ba-label.label-before {
  left: 20px;
}

.ba-label.label-after {
  right: 20px;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: ew-resize;
  z-index: 4;
}

/* Festival & Bridal Offers */
.offer-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  border: 2px dashed var(--gold);
  padding: 28px;
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-style: solid;
}

.offer-badge {
  display: inline-block;
  background: var(--maroon);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.offer-discount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--maroon);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 10px;
}

.offer-code-box {
  background: var(--cream);
  border: 1px dashed var(--gold-dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: monospace;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--maroon);
  display: inline-block;
  margin-top: 15px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--box-shadow-soft);
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--soft-pink);
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* Appointment Booking Section */
.booking-section {
  background: linear-gradient(135deg, rgba(122, 31, 61, 0.96), rgba(88, 18, 40, 0.98)), url('../images/hero-bride.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 90px 0;
  position: relative;
}

.booking-card {
  background: rgba(255, 248, 240, 0.98);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--gold);
  color: var(--dark-text);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--maroon);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 11px 16px;
  background-color: #fff;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

/* Instagram Reels Carousel */
.insta-scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px 25px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.insta-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.insta-scroll-container::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.insta-card {
  min-width: 240px;
  width: 240px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1px solid var(--gold);
  box-shadow: var(--box-shadow-soft);
  cursor: pointer;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: #fff;
}

/* Contact Details & Map */
.contact-info-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: var(--card-border);
  padding: 35px;
  box-shadow: var(--box-shadow-soft);
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.25rem;
}

.map-frame {
  border-radius: var(--card-radius);
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  height: 100%;
  min-height: 380px;
}

/* Traditional Footer */
.parlor-footer {
  background-color: var(--maroon-dark);
  color: #fff;
  position: relative;
  padding-top: 60px;
  border-top: 4px solid var(--gold);
}

.footer-floral-divider {
  width: 100%;
  height: 30px;
  background-image: url('../images/floral-border.svg');
  background-repeat: repeat-x;
  background-size: contain;
  margin-bottom: 40px;
}

.footer-title {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--maroon);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 22px 0;
  margin-top: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: pulseGreen 2.2s infinite;
}

.whatsapp-float:hover {
  background: #20BA5A;
  color: #fff;
  transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--maroon);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--maroon-light);
  transform: translateY(-4px);
}

/* Animations */
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES — Mobile Optimization
   ============================================================ */

/* --- Tablet / Medium (≤991px) --- */
@media (max-width: 991.98px) {

  /* Hero */
  .hero-section { min-height: 85vh; }
  .hero-title { font-size: 2.6rem; }
  .hero-tagline { font-size: 1.15rem; }
  .hero-content { padding: 50px 16px; }

  /* Section headers */
  .section-title { font-size: 2rem; }
  .section-header { margin-bottom: 36px; }

  /* About */
  .about-main-img { height: 380px; }
  .about-badge-card {
    right: 10px;
    bottom: 10px;
    padding: 14px 20px;
    position: relative;
    display: inline-block;
    margin-top: -40px;
    float: right;
    clear: right;
  }
  .about-badge-card .num { font-size: 1.9rem; }
  .about-image-wrapper { padding-bottom: 10px; }

  /* B&A Slider */
  .ba-slider-container { height: 380px; }

  /* Booking */
  .booking-card { padding: 32px 28px; }

  /* Gallery grid — 2 columns on tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-item { height: 260px; }

  /* Package cards */
  .package-card.featured { transform: scale(1); }

  /* Contact map */
  .map-frame { min-height: 320px; }

  /* Footer */
  .parlor-footer { padding-top: 45px; }
  .footer-floral-divider { margin-bottom: 30px; }
}

/* --- Large Phone / Small Tablet (≤767px) --- */
@media (max-width: 767.98px) {

  /* Hero */
  .hero-section { min-height: 100svh; }
  .hero-title { font-size: 2.1rem; }
  .hero-tagline { font-size: 1.05rem; }
  .hero-mandala-badge { font-size: 0.78rem; padding: 6px 16px; letter-spacing: 1px; }
  .hero-content { padding: 40px 12px; }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Section */
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.82rem; letter-spacing: 2px; }

  /* About */
  .about-main-img { height: 280px; }
  .about-badge-card {
    position: static;
    float: none;
    display: block;
    margin: 12px auto 0;
    text-align: center;
    max-width: 180px;
    padding: 14px 20px;
  }

  /* Gallery — 1 column on phones */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-item { height: 240px; }

  /* B&A Slider */
  .ba-slider-container { height: 280px; }

  /* Package cards — full width on phones */
  .package-name { font-size: 1.35rem; }
  .package-price { font-size: 1.8rem; }
  .package-body { padding: 20px 18px; }

  /* Booking — disable parallax on mobile (iOS Safari fix) */
  .booking-section {
    background-attachment: scroll !important;
    padding: 60px 0;
  }
  .booking-card { padding: 28px 18px; }

  /* Instagram cards — slightly smaller on phones */
  .insta-card { min-width: 200px; width: 200px; height: 320px; }

  /* Contact */
  .contact-info-card { padding: 24px 18px; }
  .map-frame { min-height: 280px; margin-top: 20px; }

  /* Footer */
  .footer-title { font-size: 1.15rem; }
  .parlor-footer { padding-top: 36px; }
  .footer-bottom { font-size: 0.8rem; text-align: center; }
  .footer-bottom .text-end { text-align: center !important; margin-top: 6px; }

  /* Floating buttons — prevent overlap */
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; font-size: 28px; }
  .back-to-top { bottom: 18px; left: 18px; width: 42px; height: 42px; font-size: 1rem; }
}

/* --- Small Phone (≤575px) --- */
@media (max-width: 575.98px) {

  /* Global */
  html { scroll-padding-top: 70px; }
  body { background-size: 50px 50px; }

  /* Hero */
  .hero-title { font-size: 1.75rem; line-height: 1.2; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-content { padding: 32px 10px; }
  .hero-slider-indicators { gap: 7px; }
  .slider-dot { width: 10px; height: 10px; }
  .slider-dot.active { width: 24px; }

  /* Section */
  .section-title { font-size: 1.55rem; }
  .section-header { margin-bottom: 28px; }
  .mandala-divider .line { width: 40px; }
  .mandala-divider .lotus-icon { width: 24px; height: 20px; }

  /* About */
  .about-main-img { height: 230px; }
  .about-feature-item { gap: 12px; }
  .about-feature-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }

  /* Service cards */
  .service-img-wrap { height: 180px; }
  .service-body { padding: 16px; }
  .service-title { font-size: 1.1rem; }
  .service-price { font-size: 1.15rem; }

  /* Filter tabs */
  .filter-tabs { gap: 7px; }
  .filter-btn { padding: 6px 14px; font-size: 0.82rem; }

  /* Packages */
  .package-header { padding: 24px 18px 20px; }
  .package-name { font-size: 1.25rem; }
  .package-price { font-size: 1.6rem; }
  .package-ribbon { right: -28px; font-size: 0.68rem; padding: 4px 30px; }

  /* Gallery */
  .gallery-item { height: 210px; }
  .gallery-grid { gap: 12px; }

  /* Why Us cards */
  .why-card { padding: 24px 16px; }
  .why-icon-wrap { width: 60px; height: 60px; font-size: 1.5rem; }

  /* B&A Slider */
  .ba-slider-container { height: 240px; border-width: 2px; }
  .ba-label { font-size: 0.72rem; padding: 4px 12px; }

  /* Offers */
  .offer-card { padding: 20px 16px; }
  .offer-discount { font-size: 1.8rem; }

  /* Testimonials */
  .testimonial-card { padding: 22px 18px; }
  .testimonial-avatar { width: 44px; height: 44px; }

  /* Booking */
  .booking-section { padding: 45px 0; }
  .booking-card { padding: 22px 14px; border-radius: 16px; }

  /* Instagram */
  .insta-card { min-width: 175px; width: 175px; height: 285px; }

  /* Contact */
  .contact-item { gap: 12px; }
  .contact-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }
  .contact-info-card { padding: 20px 14px; }
  .map-frame { min-height: 240px; }

  /* Footer */
  .footer-social-links { gap: 9px; }
  .social-btn { width: 36px; height: 36px; }
  .parlor-footer { padding-top: 30px; }

  /* Floating buttons */
  .whatsapp-float { bottom: 16px; right: 14px; width: 50px; height: 50px; font-size: 26px; }
  .back-to-top { bottom: 16px; left: 14px; width: 40px; height: 40px; font-size: 0.95rem; }
}

/* --- Extra Small / Tiny Phone (≤400px) --- */
@media (max-width: 400px) {
  .hero-title { font-size: 1.5rem; }
  .hero-tagline { font-size: 0.88rem; }
  .hero-mandala-badge { font-size: 0.72rem; letter-spacing: 0.5px; padding: 5px 12px; }
  .hero-buttons .btn { font-size: 0.9rem; padding: 11px 16px; }
  .section-title { font-size: 1.4rem; }
  .gallery-item { height: 185px; }
  .insta-card { min-width: 155px; width: 155px; height: 255px; }
  .ba-slider-container { height: 200px; }
  .booking-card { padding: 18px 10px; }
  .about-main-img { height: 200px; }
}
