/* =============================================
   BRIGHT CATERERS & ARRANGERS — WEDDING THEME
   Palette: Ivory · Blush · Gold · Deep Rose
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Lato:wght@300;400;700&family=Great+Vibes&display=swap');

/* ── CSS Variables ─────────────────────────── */
:root {
  --ivory:      #FDFAF4;
  --ivory-mid:  #F5EFE0;
  --blush:      #F2C4CE;
  --blush-deep: #D4899A;
  --gold:       #C9A96E;
  --gold-light: #E2C98A;
  --gold-dark:  #A0804A;
  --rose:       #7D3B55;
  --rose-light: #A25070;
  --charcoal:   #1E1E1E;
  --warm-gray:  #6B6460;
  --white:      #FFFFFF;
  --shadow-soft: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-card: 0 4px 24px rgba(125,59,85,0.10);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

.script-text {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Dividers ──────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--blush));
  margin: 1rem auto 1.5rem;
  border: none;
}

.gold-divider.left {
  margin-left: 0;
}

/* ── Buttons ───────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(160,128,74,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(160,128,74,0.45);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 2rem;
  background: transparent;
  color: var(--gold-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-rose {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(125,59,85,0.35);
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(125,59,85,0.45);
}

/* ── Page Loader ───────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 52px;
  height: 52px;
  border: 3px solid var(--blush);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navigation ────────────────────────────── */
.navbar-wedding {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar-wedding.scrolled {
  background: rgba(253, 250, 244, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.9rem 4%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.07);
}

.navbar-wedding.dark {
  background: transparent;
}

.navbar-wedding.dark.scrolled {
  background: rgba(253, 250, 244, 0.97);
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}

.navbar-wedding.scrolled .nav-menu a {
  color: var(--charcoal);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

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

.navbar-wedding.scrolled .nav-menu a:hover,
.navbar-wedding.scrolled .nav-menu a.active {
  color: var(--gold-dark);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-wedding.scrolled .nav-hamburger span {
  background: var(--charcoal);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}

.nav-mobile a:hover { color: var(--gold-dark); }

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ── Hero Section ──────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 10, 18, 0.72) 0%,
    rgba(30, 10, 18, 0.35) 60%,
    rgba(30, 10, 18, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 700px;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3rem);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.4s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.7s forwards;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.3s forwards;
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Stats Bar ─────────────────────────────── */
.stats-bar {
  background: var(--rose);
  padding: 2.5rem 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
  display: block;
}

/* ── Section Layout ────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-inner {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── About Section ─────────────────────────── */
.about-section {
  background: var(--white);
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 80%;
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-soft);
}

.about-img-accent {
  width: 52%;
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 220px;
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-card);
}

.about-badge {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 4px 20px rgba(160,128,74,0.4);
}

.about-badge-num {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-text p {
  color: var(--warm-gray);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-attributes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.attr-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.attr-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: 0.8rem;
}

.attr-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.attr-sub {
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-weight: 400;
}

/* ── Services Section ──────────────────────── */
.services-section {
  background: var(--ivory);
  padding: 7rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(125,59,85,0.16);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-img-wrap {
  overflow: hidden;
}

.service-card-body {
  padding: 1.8rem;
}

.service-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.service-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(253,250,244,0.9);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  padding: 0.25rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Gallery Section ───────────────────────── */
.gallery-section {
  background: var(--charcoal);
  padding: 7rem 0;
}

.gallery-section .section-title,
.gallery-section .section-label {
  color: var(--white);
}

.gallery-section .section-label {
  color: var(--gold-light);
}

.gallery-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,18,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-see-all {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Testimonials ──────────────────────────── */
.testimonials-section {
  background: var(--ivory-mid);
  padding: 7rem 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(125,59,85,0.14);
}

.testimonial-quote {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: var(--blush);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  color: var(--warm-gray);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ── Pricing Section ───────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 7rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.pricing-card {
  border-radius: var(--radius-md);
  padding: 2.8rem 2.2rem;
  border: 1.5px solid var(--ivory-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--rose) 0%, #4a1830 100%);
  border-color: transparent;
  color: var(--white);
}

.pricing-card.featured::before { opacity: 1; }

.pricing-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 60px;
}

.pricing-tier {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-tier { color: var(--gold-light); }

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-price {
  margin-bottom: 2rem;
}

.pricing-price .currency {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  vertical-align: top;
  line-height: 2;
}

.pricing-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount { color: var(--white); }
.pricing-card.featured .pricing-price .currency { color: var(--gold-light); }

.pricing-price .period {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.6); }

.pricing-divider {
  height: 1px;
  background: var(--ivory-mid);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none;
  margin-bottom: 2.2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
  padding: 0.45rem 0;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }

.pricing-features li i {
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i { color: var(--gold-light); }

/* ── Contact Section ───────────────────────── */
.contact-section {
  background: var(--ivory);
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--charcoal);
  transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--gold-dark); }

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-form .form-sub {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--ivory-mid);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── Page Header ───────────────────────────── */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,10,18,0.65), rgba(30,10,18,0.5));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-script {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-light);
  font-size: 2rem;
  display: block;
  margin-bottom: 0.3rem;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

.breadcrumb-nav a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.breadcrumb-nav a:hover { color: var(--gold-light); }
.breadcrumb-nav .sep { color: var(--gold-light); }
.breadcrumb-nav .current { color: var(--gold-light); }

/* ── Footer ────────────────────────────────── */
.footer-section {
  background: #141414;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 52px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: brightness(1.2);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  line-height: 1.6;
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom span { color: var(--gold); }

/* ── Back to Top ───────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(160,128,74,0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

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

#back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ── Gallery Page ──────────────────────────── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.gallery-page-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-page-item:hover img { transform: scale(1.08); }

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(125,59,85,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.gallery-page-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  max-width: 85vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

/* ── Reveal Animations ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { gap: 3rem; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-wedding { padding: 1.2rem 5%; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 6%; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .about-text p:nth-child(n+4) { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .testimonials-slider { grid-template-columns: 1fr; }
  .testimonials-slider .testimonial-card:nth-child(n+4) { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-grid .pricing-card:nth-child(1),
  .pricing-grid .pricing-card:nth-child(3) { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .contact-form { padding: 2rem 1.5rem; }
}
