/* ═══════════════════════════════════════════════════════════════
   PRECISA WEDDING PLANNER — Premium Stylesheet
   Color Palette:
     Gold:        #D4AF37
     Gold Light:  #E8C95A
     Gold Dark:   #B8941E
     Champagne:   #F7E7CE
     Ivory:       #FDFAF5
     Beige:       #F5EDD8
     Dark:        #1A1612
     Dark Mid:    #2D2620
     Gray:        #6B6058
     White:       #FFFFFF
═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold:        #D4AF37;
  --gold-light:  #E8C95A;
  --gold-dark:   #B8941E;
  --gold-glow:   rgba(212,175,55,0.25);
  --champagne:   #F7E7CE;
  --ivory:       #FDFAF5;
  --beige:       #F5EDD8;
  --dark:        #1A1612;
  --dark-mid:    #2D2620;
  --dark-card:   #231F1A;
  --gray:        #6B6058;
  --gray-light:  #A09086;
  --white:       #FFFFFF;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Montserrat', sans-serif;
  --ff-script:   'Great Vibes', cursive;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 40px rgba(212,175,55,0.3);
  --shadow-soft: 0 4px 30px rgba(26,22,18,0.12);
  --radius:      4px;
  --radius-lg:   12px;
}

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

body {
  font-family: var(--ff-sans);
  background-color: var(--ivory);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── SELECTION ─────────────────────────────────────── */
::selection { background: var(--gold); color: var(--dark); }

/* ─── UTILITIES ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header.light .section-tag { color: var(--gold-light); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  box-shadow: 0 6px 30px rgba(212,175,55,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ANIMATIONS ────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

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

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 22, 18, 0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 64px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.4));
  transition: var(--transition);
}
.navbar.scrolled .logo-img { height: 50px; }
.logo-img:hover { filter: drop-shadow(0 4px 16px rgba(212,175,55,0.7)); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.nav-cta {
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,22,18,0.55) 0%,
    rgba(26,22,18,0.35) 40%,
    rgba(26,22,18,0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 880px;
}

.hero-pre-title {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-logo-wrap {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: 160px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.85;
  filter: drop-shadow(0 4px 24px rgba(212,175,55,0.5));
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.8), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════
   WHAT IS
═══════════════════════════════════════════════════════ */
.what-is { background: var(--ivory); }

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.what-is-image { position: relative; }
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,22,18,0.2);
  position: relative;
}
.image-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  z-index: -1;
}
.image-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-frame:hover img { transform: scale(1.03); }

.image-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.accent-number {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}
.accent-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-heading {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.3;
}

.content-text {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 36px;
  font-size: 0.97rem;
}
.content-text strong { color: var(--dark); font-weight: 600; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.benefit-info h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.benefit-info p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services {
  background: var(--dark);
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services .section-title { color: var(--white); }
.services .section-tag { color: var(--gold); }
.services .section-desc { color: rgba(255,255,255,0.6); }
.services .gold-divider { opacity: 0.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-icon-wrap {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-card:hover .service-link { gap: 14px; }

/* ═══════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════ */
.gallery { background: var(--beige); }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1.5px solid rgba(212,175,55,0.3);
  border-radius: 100px;
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,22,18,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.gallery-overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Gallery hidden filter */
.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 0 80px rgba(212,175,55,0.2);
}
.lightbox-caption {
  color: var(--gold-light);
  margin-top: 16px;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process {
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,22,18,0.93) 0%, rgba(26,22,18,0.85) 100%);
}

.process .container { position: relative; z-index: 1; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-6px);
}

.step-number {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-icon {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
  background: rgba(212,175,55,0.06);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}

.process-step h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 50px 30px;
  position: relative;
  border-right: 1px solid rgba(212,175,55,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.7;
}

.stat-number {
  display: inline;
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  display: inline;
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--gold-light);
  vertical-align: super;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials {
  background: var(--ivory);
  overflow: hidden;
}

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(100% / 3 - 20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 50px rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 28px;
  letter-spacing: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-info h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}
.author-info p {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 300;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}

.t-prev, .t-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.t-prev:hover, .t-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.t-dots { display: flex; gap: 10px; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact { background: var(--white); }

.contact-top-image {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin-bottom: -80px;
  z-index: 0;
}
.contact-top-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(212,175,55,0.15);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1/-1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 300;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,96,88,0.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: -8px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 30px;
}
.success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Contact Info */
.contact-info { padding: 10px 0; }
.info-heading {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 36px;
}

.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.info-icon.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-color: transparent;
  color: var(--white);
}

.contact-info-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-item a {
  font-size: 0.97rem;
  color: var(--gold-dark);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--gold); }
.contact-info-item p { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

.social-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}

.social-links { display: flex; gap: 12px; margin-bottom: 36px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.2);
  height: 220px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(0.2) hue-rotate(10deg) saturate(0.9);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { background: var(--dark); }

.footer-top {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  height: 80px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a:hover::before { opacity: 1; }

.footer-contact p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact p i { color: var(--gold); width: 16px; }

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.footer-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.footer-bottom {
  padding: 24px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  position: fixed;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}

.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(26,22,18,0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 998;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.12); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 992px) {
  .section { padding: 80px 0; }
  .what-is-grid { grid-template-columns: 1fr; gap: 60px; }
  .image-frame img { height: 400px; }
  .image-accent-box { right: 20px; bottom: 20px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-track .testimonial-card { min-width: calc(100% / 2 - 15px); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(20,16,12,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    border-left: 1px solid rgba(212,175,55,0.15);
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 0.9rem; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-logo { width: 130px; }

  .what-is-grid { gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.tall { grid-row: span 1; }

  .testimonials-track .testimonial-card { min-width: 100%; }
  .contact-form-wrap { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .whatsapp-float, .back-to-top { right: 18px; }
  .whatsapp-float { bottom: 20px; }
  .back-to-top { bottom: 90px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 60px 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 14px 32px; font-size: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.12); }
  .stat-item:last-child { border-bottom: none; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .process-step { padding: 28px 18px; }
  .service-card { padding: 28px 22px; }
  .hero-logo { width: 110px; }
}

/* Pulse animation for gold elements */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

.stat-item:hover .stat-icon {
  animation: goldPulse 1.5s ease infinite;
}

/* Shimmer effect for gold divider */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-divider {
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
