/* ============================================================
   ANKIT MEHANDI ART — Custom Stylesheet
   Aesthetic: Luxury Editorial · Burgundy × Gold × Ivory
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Cinzel:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --burgundy:      #6B1A2A;
  --burgundy-dark: #4A1020;
  --burgundy-light:#8B2A3A;
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-pale:     #F5E6C0;
  --ivory:         #FAF6EE;
  --ivory-dark:    #F0E8D8;
  --charcoal:      #2A2020;
  --text-muted:    #7A6560;
  --white:         #FFFFFF;
  --shadow-gold:   0 4px 30px rgba(201,168,76,0.25);
  --shadow-dark:   0 8px 40px rgba(42,32,32,0.35);
  --radius:        4px;
  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Utility Classes ---------- */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--burgundy-dark);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 16px 0 32px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.gold-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.gold-divider .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.text-gold { color: var(--gold) !important; }
.text-burgundy { color: var(--burgundy) !important; }
.bg-ivory { background-color: var(--ivory) !important; }
.bg-burgundy { background-color: var(--burgundy) !important; }

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--burgundy-dark);
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-position 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
  box-shadow: 0 2px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  transform: translateY(-2px);
  color: var(--burgundy-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--gold-pale);
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-burgundy:hover {
  background: var(--burgundy-dark);
  box-shadow: var(--shadow-dark);
  transform: translateY(-2px);
  color: var(--gold-pale);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0;
  transition: var(--transition);
  z-index: 1050;
}
#mainNavbar.scrolled {
  background: rgba(250, 246, 238, 0.98);
  box-shadow: 0 2px 30px rgba(107, 26, 42, 0.12);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.navbar-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}
.navbar-brand-text {
  line-height: 1.1;
}
.navbar-brand-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  display: block;
}
.navbar-brand-text .brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.08em;
  display: block;
}

.navbar-nav .nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--burgundy) !important; }

.navbar-toggler {
  border: 1.5px solid var(--gold);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236B1A2A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-menu {
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 10px 40px rgba(107,26,42,0.15);
  background: var(--ivory);
  padding: 8px 0;
  min-width: 220px;
}
.dropdown-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--burgundy);
}
.dropdown-item i { color: var(--gold); width: 18px; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#heroCarousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item { height: 100%; }

.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,16,32,0.75) 0%,
    rgba(107,26,42,0.55) 50%,
    rgba(42,32,32,0.45) 100%
  );
  z-index: 1;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.12) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.carousel-control-prev, .carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.25);
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 0.8;
  transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: rgba(201,168,76,0.5);
  opacity: 1;
}
.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 2px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  border-radius: 2px;
  margin: 0 4px;
  transition: var(--transition);
}
.carousel-indicators [data-bs-target].active {
  background-color: var(--gold);
  width: 50px;
}

.hero-scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll-down .scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'MEHNDI';
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14vw;
  font-weight: 900;
  color: rgba(201,168,76,0.05);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.about-img-wrap {
  position: relative;
  z-index: 1;
}
.about-img-frame {
  position: relative;
  display: inline-block;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background: var(--burgundy);
  border-radius: var(--radius);
  z-index: -2;
}
.about-img-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--burgundy-dark);
  font-family: 'Playfair Display', serif;
  text-align: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 5;
}
.about-badge .num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.about-text-col { position: relative; z-index: 1; }

.about-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.about-lead {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.stat-box {
  text-align: center;
  padding: 20px 12px;
  background: var(--ivory-dark);
  border-radius: var(--radius);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}
.stat-box:hover {
  background: var(--gold-pale);
  transform: translateY(-4px);
}
.stat-box .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--burgundy);
  display: block;
}
.stat-box .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.read-more-text { overflow: hidden; transition: max-height 0.6s ease; max-height: 0; }
.read-more-text.expanded { max-height: 500px; }
.btn-read-more {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-read-more:hover { color: var(--burgundy); }
.btn-read-more i { transition: transform 0.3s ease; }
.btn-read-more.open i { transform: rotate(180deg); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--burgundy-dark);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(201,168,76,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201,168,76,0.06) 0%, transparent 40%);
  pointer-events: none;
}

#services .section-title { color: var(--gold-pale) !important; }
#services .section-subtitle { color: rgba(240,232,216,0.7) !important; }
#services .gold-divider::before { background: linear-gradient(to right, transparent, rgba(201,168,76,0.6)); }
#services .gold-divider::after { background: linear-gradient(to left, transparent, rgba(201,168,76,0.6)); }
#services .gold-divider .diamond { background: rgba(201,168,76,0.8); }

.service-card {
  background: rgba(250,246,238,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.3);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(74,16,32,0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-overlay .overlay-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-overlay .overlay-cta::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-light);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-category {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: rgba(240,232,216,0.65);
  line-height: 1.7;
  flex: 1;
}
.service-card-price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.service-card-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(240,232,216,0.5);
  font-weight: 300;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery { background: var(--ivory-dark); }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 22px;
  border: 1.5px solid rgba(107,26,42,0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--gold-pale);
}

/* Masonry columns */
.masonry-grid {
  columns: 4 280px;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(74,16,32,0.75) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay i {
  font-size: 2rem;
  color: var(--gold-light);
  transform: scale(0.5);
  transition: transform 0.3s ease;
}
.masonry-item:hover .masonry-item-overlay i { transform: scale(1); }
.masonry-item .item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(74,16,32,0.85);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  opacity: 0;
  transition: var(--transition);
}
.masonry-item:hover .item-badge { opacity: 1; }

/* Lightbox */
#lightboxModal .modal-content {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
}
#lightboxModal .modal-header {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 16px 20px;
}
#lightboxModal .modal-title {
  font-family: 'Playfair Display', serif;
  color: var(--gold-pale);
  font-size: 1rem;
}
#lightboxModal .btn-close {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}
#lightboxModal .modal-body { padding: 0; }
#lightboxModal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--burgundy); position: relative; overflow: hidden; }
#testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 4%;
  font-family: 'Playfair Display', serif;
  font-size: 30vw;
  font-weight: 900;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonial-slide {
  text-align: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}
.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
  display: block;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(240,232,216,0.9);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 32px;
}
.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
  margin: 0 auto 14px;
  display: block;
}
.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.testimonial-event {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: rgba(240,232,216,0.55);
  font-style: italic;
}
.star-rating { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }

#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(240,232,216,0.3);
  border: none;
}
#testimonialCarousel .carousel-indicators [data-bs-target].active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 50px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,16,32,0.88) 0%, rgba(107,26,42,0.80) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-title .italic { font-style: italic; color: var(--gold-light); }
.cta-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--ivory); }

.contact-info-card {
  background: var(--burgundy);
  border-radius: var(--radius);
  padding: 48px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 8px;
}
.contact-info-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(240,232,216,0.6);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}
.contact-detail-text .label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.contact-detail-text .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(240,232,216,0.85);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 10px 50px rgba(107,26,42,0.08);
  border: 1px solid rgba(201,168,76,0.15);
}

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid rgba(107,26,42,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,26,42,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: 24px;
}
.map-wrap iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #1A1010;
  color: rgba(240,232,216,0.75);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-brand { margin-bottom: 24px; }
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.4);
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-pale);
  display: block;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(240,232,216,0.45);
}
.footer-about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(240,232,216,0.55);
  margin: 16px 0 24px;
}

.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-heading::before {
  content: '';
  width: 4px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(240,232,216,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-contact-item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(240,232,216,0.55);
  line-height: 1.5;
}

.newsletter-form { position: relative; }
.newsletter-form input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  color: rgba(240,232,216,0.8);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: rgba(201,168,76,0.5); }
.newsletter-form input::placeholder { color: rgba(240,232,216,0.3); }
.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 2px;
  color: var(--burgundy-dark);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}
.newsletter-form button:hover { opacity: 0.9; }

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: rgba(240,232,216,0.35);
}
.footer-copyright a { color: var(--gold); }

.back-to-top {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 50%;
  color: var(--burgundy-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 40px rgba(37,211,102,0.6);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.7); }
}

/* ============================================================
   ALERT STYLES
   ============================================================ */
.alert-success-custom {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}
.alert-error-custom {
  background: rgba(107,26,42,0.08);
  border: 1px solid rgba(107,26,42,0.3);
  color: var(--burgundy);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .about-img-frame::before { display: none; }
  .about-img-frame::after { display: none; }
  .masonry-grid { columns: 2 200px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .testimonial-slide { padding: 40px 20px; }
  .contact-form-wrap { padding: 32px 20px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  #cta-banner { background-attachment: scroll; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(1, 1fr); }
  .masonry-grid { columns: 1; }
  .gallery-filters { gap: 6px; }
  .hero-btn-group { flex-direction: column; align-items: center; }
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--burgundy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  animation: preloader-pulse 1.5s ease-in-out infinite;
}
.preloader-text {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  animation: preloader-pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201,168,76,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloader-fill 1.5s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}
@keyframes preloader-fill {
  0% { width: 0; } 100% { width: 100%; }
}

/* Focus visible for keyboard nav */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}