/* ==========================================================================
   INSTYLE BRIDAL SALON - LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  --color-primary: #4A0E17; /* Deep Royal Burgundy / Wine */
  --color-primary-dark: #2A060C;
  --color-primary-light: #6E1A27;
  --color-gold: #D4AF37; /* Metallic Gold */
  --color-gold-light: #F4E0A5;
  --color-gold-dark: #A48018;
  --color-rose-gold: #E0A96D;
  --color-accent-cream: #FAF6F0; /* Soft Silk Ivory */
  --color-accent-blush: #FDF4F2;
  --color-dark-bg: #14070A;
  --color-card-bg: #FFFFFF;
  --color-text-main: #2D2424;
  --color-text-muted: #6B5E5E;
  --color-text-light: #FAF6F0;
  
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-subtle: 0 4px 20px rgba(74, 14, 23, 0.06);
  --shadow-medium: 0 10px 30px rgba(74, 14, 23, 0.12);
  --shadow-luxury: 0 20px 45px rgba(42, 6, 12, 0.22);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-accent-cream);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}

/* Ensure all 3-column Ceremony & Service Cards have exact same uniform image height */
.elementor-column .elementor-widget-image img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  display: block !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #2A060C 0%, #4A0E17 50%, #2A060C 100%);
  color: var(--color-gold-light);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.announcement-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announcement-bar a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px dashed var(--color-gold);
}
.announcement-bar .contact-quick {
  display: flex;
  gap: 1.25rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.98);
}
.site-header .container {
  max-width: 1400px;
  width: 100%;
  padding: 0 1.5rem;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}

.logo-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-text-wrap .brand-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.logo-text-wrap .brand-subtitle {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--color-gold-dark);
  display: block;
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav > li {
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-main);
  padding: 0.4rem 0.2rem;
  position: relative;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}
.main-nav a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.icon-btn {
  background: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(74, 14, 23, 0.12);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.icon-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--color-gold-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-luxury {
  background: linear-gradient(135deg, #D4AF37 0%, #AA8010 100%) !important;
  color: #2A060C !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 0 1.35rem !important;
  height: 42px !important;
  border-radius: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35) !important;
  flex-shrink: 0 !important;
  transition: var(--transition) !important;
}
.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
}

.btn-outline-royal {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-royal:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.6rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 7, 10, 0.85) 0%, rgba(74, 14, 23, 0.72) 100%), url('../images/hero-bridal.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 5rem 0;
}
.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  animation: pulseGold 3s infinite;
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: 3.5rem;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-title .highlight {
  color: var(--color-gold);
  font-style: italic;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.2rem;
  line-height: 1.8;
  max-width: 620px;
}
.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 1.8rem;
}
.stat-item h3 {
  color: var(--color-gold);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.stat-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}
.section-tag {
  color: var(--color-gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Specialized Ceremony Showcase (Haldi & Mehendi Focus) */
.ceremonies-section {
  padding: 6rem 0;
  background: var(--color-accent-cream);
}
.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ceremony-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.ceremony-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-gold);
}
.ceremony-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.ceremony-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ceremony-card:hover .ceremony-thumb img {
  transform: scale(1.08);
}
.ceremony-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gold);
}
.ceremony-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ceremony-title {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}
.ceremony-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.ceremony-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ceremony-features li {
  font-size: 0.88rem;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ceremony-features li i {
  color: var(--color-gold-dark);
}
.ceremony-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.2rem;
}
.ceremony-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
}
.ceremony-price span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: normal;
}

/* Services Tabs Section */
.services-section {
  padding: 6rem 0;
  background: #FFF;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: var(--color-accent-blush);
  color: var(--color-text-main);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  border: 1px solid rgba(74, 14, 23, 0.08);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(74, 14, 23, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-item {
  background: var(--color-accent-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-gold);
}
.service-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-item:hover .service-img-wrap img {
  transform: scale(1.06);
}
.service-content {
  padding: 1.5rem;
}
.service-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.service-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-cost {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.15rem;
}

/* Packages / Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-accent-cream) 0%, var(--color-accent-blush) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(212, 175, 55, 0.25);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  background: var(--color-primary-dark);
  color: #fff;
  border: 2px solid var(--color-gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-luxury);
}
.pricing-card.featured h3, .pricing-card.featured .price-amount {
  color: var(--color-gold);
}
.pricing-card.featured p, .pricing-card.featured li {
  color: rgba(255, 255, 255, 0.85);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #D4AF37, #F4E0A5, #D4AF37);
  color: #2A060C;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.price-tag {
  margin: 1.5rem 0;
}
.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
.price-period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.pricing-features li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li i {
  color: var(--color-gold);
  font-size: 1rem;
}

/* Salon Studio Experience & Amenities */
.salon-experience {
  padding: 6rem 0;
  background: #fff;
}
.experience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.experience-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 4px solid var(--color-accent-cream);
}
.experience-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.experience-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.experience-content p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.amenity-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.amenity-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-blush);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}
.amenity-text h5 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.amenity-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background: var(--color-dark-bg);
  color: #fff;
}
.testimonials-section .section-title {
  color: #fff;
}
.testimonials-section .section-desc {
  color: rgba(255,255,255,0.7);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}
.testi-stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testi-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}
.author-info h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}
.author-info span {
  font-size: 0.78rem;
  color: var(--color-gold-light);
}

/* Appointment Booking Section */
.booking-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #FAF7F2 0%, #F5ECE3 100%);
}
.booking-container {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.booking-sidebar {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking-sidebar h3 {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.booking-sidebar p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
}
.booking-perks li i {
  color: var(--color-gold);
}
.sidebar-phone {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.sidebar-phone a {
  color: var(--color-gold-light);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form-wrap {
  padding: 3.5rem 3rem;
}
.booking-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
}
.form-input, .form-select, .form-textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(74, 14, 23, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-accent-cream);
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 14, 23, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #fff;
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid rgba(74, 14, 23, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-subtle);
}
.faq-question {
  padding: 1.2rem 1.5rem;
  background: var(--color-accent-cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #fff;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.faq-item.active .faq-answer {
  padding: 1.2rem 1.5rem;
  max-height: 300px;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: #fff;
  padding-top: 5rem;
  border-top: 3px solid var(--color-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter-input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  font-size: 0.9rem;
}
.newsletter-btn {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  padding: 0 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover {
  background: var(--color-gold-light);
}

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.back-to-top {
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
}

/* Modals & Overlays */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 7, 10, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  font-size: 1.3rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-gold);
  background: #fff;
  color: var(--color-text-main);
}
.search-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Notification Toast */
.toast-notice {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  border-left: 4px solid var(--color-gold);
  z-index: 1500;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.toast-notice.show {
  transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .ceremony-grid, .services-grid, .pricing-grid, .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-luxury);
  }
  .main-nav.open {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ceremony-grid, .services-grid, .pricing-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .experience-wrap, .booking-container {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .announcement-bar .inner {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* Book Appointment Pop-Up Modal */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 6, 12, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.booking-modal-box {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transform: translateY(30px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.booking-modal-overlay.active .booking-modal-box {
  transform: translateY(0) scale(1);
}
.booking-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: #F3F4F6;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: #4A0E17;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.booking-modal-close:hover {
  background: #D4AF37;
  color: #2A060C;
  transform: rotate(90deg);
}
.booking-modal-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #B8860B;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.booking-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #4A0E17;
  margin-bottom: 0.3rem;
}
.booking-modal-header p {
  color: #6B5E5E;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.b-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.b-form-group.full {
  grid-column: span 2;
}
.b-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A0E17;
  margin-bottom: 0.35rem;
}
.b-form-group input,
.b-form-group select,
.b-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #333333;
  background: #FAFAFA;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.b-form-group input:focus,
.b-form-group select:focus,
.b-form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.btn-booking-submit {
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #AA8010 100%);
  color: #2A060C;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}
.btn-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}
.booking-wa-alt {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #6B5E5E;
}
.btn-wa-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-wa-direct:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
@media (max-width: 600px) {
  .b-form-grid {
    grid-template-columns: 1fr;
  }
  .b-form-group.full {
    grid-column: span 1;
  }
  .booking-modal-box {
    padding: 1.8rem 1.2rem;
  }
}


