/* =============================================
   AMBIKA MAKEOVER SALON – style.css
   Palette:
   --ivory:      #FAF7F2  (background)
   --cream:      #F0EAE0  (section alt bg)
   --gold:       #C9A96E  (primary accent)
   --gold-dark:  #A07840  (hover state)
   --rose:       #C17C74  (warm highlight)
   --charcoal:   #2C2418  (primary text)
   --warm-grey:  #7A6D61  (body text)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:      #FAF7F2;
  --cream:      #F0EAE0;
  --cream-dark: #E8DDD0;
  --gold:       #C9A96E;
  --gold-light: #DFC08A;
  --gold-dark:  #A07840;
  --rose:       #C17C74;
  --charcoal:   #2C2418;
  --warm-grey:  #7A6D61;
  --white:      #FFFFFF;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

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

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

/* ---- Shimmer rule (signature element) ---- */
.shimmer-rule {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 30%, var(--gold) 50%, var(--gold-light) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmerMove 3s linear infinite;
  margin-bottom: 0;
}
@keyframes shimmerMove {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ---- Typography ---- */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: 1.05rem;
  color: var(--warm-grey);
  margin-bottom: 56px;
  max-width: 560px;
}
.section-sub.light { color: rgba(255,255,255,0.8); }

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

/* ---- Buttons ---- */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 120, 64, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-bottom-color: var(--cream-dark);
  box-shadow: 0 2px 20px rgba(44, 36, 24, 0.07);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--charcoal); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-book {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.25s, transform 0.25s;
}
.nav-book:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,24,0.72) 0%, rgba(44,36,24,0.45) 60%, rgba(193,124,116,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s forwards;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  display: block;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

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


/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 48px;
}
.about-desc {
  color: var(--warm-grey);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.highlight-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 24px 20px;
  border-left: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,36,24,0.08);
}
.highlight-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.highlight-card p {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.6;
}


/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,36,24,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,36,24,0.12);
}
.service-card-header {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d2f1f 100%);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-icon { font-size: 1.3rem; }
.service-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
}
.price-list { padding: 16px 24px 20px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--warm-grey);
  border-bottom: 1px solid var(--cream);
}
.price-list li:last-child { border-bottom: none; }

/* Price hidden by default — reveals on hover */
.price-list li {
  position: relative;
  cursor: default;
}
.price-list li span:last-child {
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  margin-left: 12px;

  /* Hidden state */
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.price-list li:hover {
  background: linear-gradient(90deg, rgba(201,169,110,0.07) 0%, transparent 100%);
  border-radius: 4px;
  padding-left: 6px;
  margin-left: -6px;
}
.price-list li:hover span:last-child {
  opacity: 1;
  transform: translateX(0);
}

/* Hint text so users know to hover */
.price-list::before {
  content: 'Hover to see prices ✦';
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: right;
  margin-bottom: 8px;
  opacity: 0.7;
  font-style: italic;
}

/* Touch device price hint (injected by JS) */
.price-hint-touch {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: right;
  margin-bottom: 8px;
  opacity: 0.7;
  font-style: italic;
}

/* On touch devices, remove the CSS ::before hint (JS injects its own) */
@media (hover: none) and (pointer: coarse) {
  .price-list::before { display: none; }

  /* Make items look tappable */
  .price-list li {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(201,169,110,0.15);
  }
  .price-list li:active {
    background: rgba(201,169,110,0.1);
    border-radius: 4px;
  }
}
.bridal-combo-banner {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d2f1f 100%);
  border-radius: 12px;
  padding: 52px 40px;
  text-align: center;
  overflow: hidden;
}
.combo-glow {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.combo-badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.bridal-combo-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}
.bridal-combo-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1rem;
}


/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item--large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery-item img {
  height: 100%;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,36,24,0.8) 0%, transparent 100%);
  color: var(--white);
  padding: 32px 16px 14px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }


/* =============================================
   BRIDAL
   ============================================= */
.bridal {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1594736797933-d0501ba2fe65?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
}
.bridal-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,24,0.88) 0%, rgba(44,36,24,0.75) 100%);
}
.bridal .container { position: relative; z-index: 2; }

.bridal-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.bridal-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
}
.bridal-card:hover {
  background: rgba(201,169,110,0.12);
  transform: translateY(-6px);
}
.bridal-card-icon { font-size: 2rem; margin-bottom: 16px; }
.bridal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.bridal-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.bridal-cta { text-align: center; }


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(44,36,24,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--cream-dark);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,36,24,0.1);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.93rem;
  color: var(--warm-grey);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--warm-grey);
}


/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 48px;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--charcoal);
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-icon { font-size: 1.1rem; flex-shrink: 0; padding-top: 2px; }
.contact-detail p {
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--gold-dark);
  font-weight: 700;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--rose); }
.map-placeholder {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(44,36,24,0.07);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--charcoal);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--gold-dark);
  text-align: center;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  padding-top: 56px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: var(--white); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.25s, color 0.25s;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--white);
}
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}


/* =============================================
   BACK TO TOP + WA FLOAT
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(44,36,24,0.25);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--white); }

.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}


/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .bridal-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 28px 24px 36px;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(44,36,24,0.12);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    border-bottom: 3px solid var(--gold);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
  .gallery-item--wide { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }
  .about-highlights { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .bridal-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .bridal-combo-banner { padding: 36px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .section-sub { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
