/* ============================================
   Nilkanth Mandap Service
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap");

:root {
  /* Refined theme: muted gold, warm cream, subtle blush (from brand reference) */
  --gold: #af8b58;
  --gold-light: #c9a875;
  --gold-dark: #8b6f3d;
  --burgundy: #8b5a5a;
  --burgundy-light: #a07070;
  --rose: #d4a8a8;
  --rose-light: #f5eeec;
  --blush: #f5eeec;
  --ivory: #fdfdfd;
  --cream: #fcfbf9;
  --charcoal: #1a1a1a;
  --text-dark: #3d3d3d;
  --shadow: rgba(175, 139, 88, 0.22);
  --shadow-strong: rgba(139, 111, 61, 0.28);
  --surface: #fdfdfd;
  --border-light: rgba(175, 139, 88, 0.18);
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section background tint - cream to blush (theme) */
.section-tint {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--blush) 100%
  ) !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 120% 80% at 50% -20%,
    rgba(175, 139, 88, 0.05) 0%,
    transparent 50%
  );
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.5rem;
  opacity: 0.95;
  text-shadow: 0 0 20px rgba(175, 139, 88, 0.2);
}

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 5%;
  background: transparent;
  transition: var(--transition);
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.778); */
}

.navbar.scrolled {
  background: rgba(253, 253, 253, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
}

.logo span {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  height: 50px;
  /* Adjust as needed */
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== Hero Section ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* ← uncommented */
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Corner vignette — darkens the 4 corners so text stays readable */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at top right,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 1;
}

/* Keep your existing center glow on ::before */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 50%,
    transparent 0%,
    rgba(253, 253, 253, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Make sure hero content sits above the overlays */
.hero-content,
.hero-ornaments,
.hero-scroll {
  position: relative;
  z-index: 2;
}

/* Floating decorative elements */
.hero-ornaments {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-ornament {
  position: absolute;
  color: var(--gold);
  opacity: 0.28;
  animation: float 6s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(175, 139, 88, 0.2);
}

.hero-ornament-1 {
  top: 15%;
  left: 10%;
  font-size: 2rem;
  animation-delay: 0s;
}

.hero-ornament-2 {
  top: 25%;
  right: 15%;
  font-size: 1.5rem;
  animation-delay: 1s;
}

.hero-ornament-3 {
  bottom: 30%;
  left: 8%;
  font-size: 1.8rem;
  animation-delay: 2s;
}

.hero-ornament-4 {
  bottom: 20%;
  right: 10%;
  font-size: 1.2rem;
  animation-delay: 0.5s;
}

.hero-ornament-5 {
  top: 50%;
  left: 5%;
  font-size: 1rem;
  animation-delay: 3s;
}

.hero-ornament-6 {
  top: 45%;
  right: 5%;
  font-size: 1.3rem;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  /* background-color: white; */

  font-weight: 500;
}

.hero-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  /* background: linear-gradient(90deg, var(--gold), transparent); */
  /* background-color: white; */

  margin: 1rem auto 0;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  /* color: var(--charcoal); */
  line-height: 1.08;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  color: darkorange;
}

.hero-title span {
  /* background: linear-gradient(135deg, var(--gold-dark), var(--gold) 40%, var(--gold-light) 70%, var(--gold) 100%); */
  background-color: white;
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  position: relative;
  filter: drop-shadow(0 2px 8px rgba(139, 111, 61, 0.25));
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-weight: 500;
  line-height: 1.75;
  opacity: 0;
  animation:
    fadeInUp 0.8s ease 0.6s forwards,
    rainbowText 4s linear infinite;

  background: linear-gradient(
    90deg,
    #ff6b6b,
    #ffa500,
    #ffff66,
    #6bff6b,
    #66ccff,
    #cc88ff,
    #ff6b6b
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Makes text readable over busy video */
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.9))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-scroll-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

  50% {
    opacity: 0.5;
    transform: scaleY(0.7);
  }
}

/* ========== Buttons – Attractive wedding design ========== */
.btn {
  padding: 1rem 2.25rem;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.hero-btns .btn {
  padding: 0.8rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
}

.services-section .section-tint-why-choose {
  max-width: 1420px;
}

/* Primary: gradient border + shine */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-dark) 50%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  color: #fff;
  border-radius: 50px;
  box-shadow:
    0 0 0 2px rgba(232, 213, 163, 0.6),
    0 0 0 4px rgba(139, 111, 61, 0.2),
    0 6px 24px rgba(139, 111, 61, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 2px var(--gold-light),
    0 0 20px rgba(175, 139, 88, 0.5),
    0 14px 40px rgba(139, 111, 61, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

/* Outline: double border + glow */
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-radius: 50px;
  box-shadow:
    0 0 0 2px var(--gold),
    0 0 0 4px rgba(175, 139, 88, 0.15),
    0 4px 16px rgba(139, 111, 61, 0.12);
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 48px;
  border: 1px solid rgba(232, 213, 163, 0.5);
  pointer-events: none;
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-outline:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 2px var(--gold-dark),
    0 0 25px rgba(175, 139, 88, 0.4),
    0 12px 35px rgba(139, 111, 61, 0.3);
}

.btn-outline:hover::after {
  opacity: 1;
}

.hero-btns .btn-outline {
  color: var(--gold-dark);
}

.hero-btns .btn-outline:hover {
  color: #fff;
}

/* ========== Section Styles ========== */
section {
  padding: 6rem 2%;
  /* max-width: 1421px; */
  margin: 0 auto;
}

.section-header {
  text-align: center;
  /* margin-bottom: 4rem; */
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--charcoal);
  letter-spacing: -0.5px;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.5);
}

.section-subtitle-name {
  color: balck;
  font-weight: 600;
  font-style: italic;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
  margin-top: 0.8rem;
  opacity: 0.9;
}

/* ========== Services Section ========== */
.services-section {
  position: relative;
  max-width: 1420px;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* Service Categories - for 25+ services */
.service-category {
  margin-bottom: 3rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-title {
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(139, 74, 74, 0.22);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  position: relative;
}

.service-category-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-category-title i {
  font-size: 1.15rem;
  opacity: 0.95;
  color: var(--gold-dark);
}

/* Compact services grid - 6 columns on large screens */
.services-grid-compact {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.service-item {
  background: var(--surface);
  padding: 1.1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(175, 139, 88, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(175, 139, 88, 0.14);
}

.service-item:hover {
  box-shadow:
    0 14px 36px rgba(139, 111, 61, 0.16),
    0 0 0 1px rgba(175, 139, 88, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--burgundy));
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateX(6px) translateY(-3px);
  border-color: rgba(175, 139, 88, 0.28);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: var(--transition);
}

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

.service-item span {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(175, 139, 88, 0.2);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(175, 139, 88, 0.12),
    rgba(212, 165, 165, 0.08)
  );
  border-radius: 50%;
}

.service-icon i {
  display: inline-block;
}

.service-card:hover .service-icon {
  color: var(--gold-dark);
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(175, 139, 88, 0.2),
    rgba(212, 165, 165, 0.15)
  );
}

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

.service-card p {
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
}

/* ========== Stats Section ========== */
.stats-section {
  background: linear-gradient(
    135deg,
    #6b4545 0%,
    var(--burgundy) 25%,
    var(--gold-dark) 65%,
    #7d5c3a 100%
  );
  padding: 5.5rem 5%;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(139, 74, 74, 0.25);
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.05' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  opacity: 0;
  transform: scale(0.8);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );
  opacity: 0.6;
}

.stat-item:hover {
  transform: scale(1.05) translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 117, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  opacity: 0.95;
  font-weight: 500;
}

.stat-label i {
  margin-right: 0.35rem;
  color: var(--gold-light);
}

/* ========== Featured Section ========== */
section .featured-section {
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--cream) 45%,
    var(--blush) 55%,
    transparent 100%
  );
  position: relative;
  padding: 5rem 9%;
}

.featured-section .gallery-grid {
  max-width: 1250px;
  /* or 1000–1200px — tune to your taste */
  margin: 0 auto;
  /* ← this is the key line */
  padding: 0 1rem;
  /* small breathing room on sides if needed */
}

.featured-section .section-header {
  position: relative;
  z-index: 1;
}

/* Gallery page section - theme background */
.gallery-section {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--ivory) 50%,
    var(--blush) 100%
  );
}

/* Contact page section - theme background */
.contact-section {
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    var(--cream) 50%,
    var(--blush) 100%
  );
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4/3;
  opacity: 0;
  transform: scale(0.97);
  cursor: pointer;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(175, 139, 88, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition:
    box-shadow 0.45s ease,
    transform 0.45s ease,
    border-color 0.45s ease;
}

.gallery-item:hover {
  box-shadow:
    0 20px 56px rgba(139, 111, 61, 0.22),
    0 0 0 2px var(--gold),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.2) 40%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.gallery-item::before {
  content: "View Gallery";
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  /* letter-spacing: 5px; */
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--gold-light);
  background: rgba(175, 139, 88, 0.3);
}

/* ========== About Section ========== */
.about-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

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

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px);
  box-shadow: 0 25px 60px rgba(139, 111, 61, 0.2);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  opacity: 0.4;
  z-index: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ========== Contact Form ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.findus-section {
  padding: 70px 20px;
}

.findus-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.findus-content {
  text-align: start;
}

.findus-content .section-title {
  margin-top: 8px;
  text-align: start;
}

.findus-text {
  margin-top: 12px;
  font-weight: 300;
  max-width: 480px;
  text-align: start;
}

.map-btn {
  display: inline-block;
  margin-top: 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  text-align: start;
}

.findus-map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.findus-map a {
  display: block;
  position: relative;
}

.findus-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  pointer-events: none;
  /* click link handle kare */
}

/* click hint overlay */
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: 0.3s;
}

.findus-map:hover .map-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .findus-container {
    grid-template-columns: 1fr;
  }

  .findus-map iframe {
    height: 280px;
  }
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  /* if your image had rounded corners */
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.contact-info p,
.contact-info a {
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
}

.contact-info i {
  width: 1.2rem;
  margin-right: 0.5rem;
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1.1rem 1.3rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--surface);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(175, 139, 88, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========== Footer ========== */
.footer {
  background: linear-gradient(180deg, #2d2222 0%, #1c1616 40%, #151210 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  /* ✅ force same row */
}

.footer-logo-img {
  height: 70px;
  /* change as per your logo */
  width: auto;
  object-fit: contain;
}

.footer-ornament {
  text-align: center;
  padding: 2.25rem 0 1.25rem;
  color: var(--gold);
  opacity: 0.75;
  font-size: 1.3rem;
  letter-spacing: 1.2rem;
  text-shadow: 0 0 24px rgba(175, 139, 88, 0.2);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-ornament-icon {
  display: inline-block;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5% 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.footer-logo:hover {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.footer-location {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 400;
}

.footer-location i {
  margin-right: 0.4rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.footer-col p i {
  flex-shrink: 0;
  color: var(--gold);
  width: 1rem;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 5%;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blush);
  opacity: 0.9;
}

.footer-mandap-pattern {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--blush) 0%,
    var(--gold) 20%,
    var(--gold-dark) 50%,
    var(--gold) 80%,
    var(--blush) 100%
  );
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 300;
}

/* ========== Page Headers ========== */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(175, 139, 88, 0.08) 0%,
    var(--cream) 40%,
    var(--blush) 100%
  );
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.page-hero::before {
  content: "◆ ◆ ◆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  letter-spacing: 2rem;
  color: var(--gold);
  opacity: 0.2;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin-top: 1rem;
  color: var(--text-dark);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  margin-top: 2%;
}

/* ========== SECTION WRAPPER ========== */
.testimonials-section {
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--blush) 45%,
    var(--cream) 100%
  );
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--burg) 50%,
    var(--gold) 70%,
    transparent 100%
  );
}
.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, transparent);
}

/* ========== ARCH WATERMARK ========== */
.arch-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ========== CORNER ACCENTS ========== */
.corner-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}
.corner-accent.tl {
  top: 10px;
  left: 10px;
}
.corner-accent.tr {
  top: 10px;
  right: 10px;
  transform: scaleX(-1);
}
.corner-accent.bl {
  bottom: 10px;
  left: 10px;
  transform: scaleY(-1);
}
.corner-accent.br {
  bottom: 10px;
  right: 10px;
  transform: scale(-1);
}

/* ========== FLOATING PETALS ========== */
.petal {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes petalFall {
  0% {
    transform: translateY(-40px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.65;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* ========== HEADER ========== */
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.t-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}
.t-ornament-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.t-ornament-line.r {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.t-ornament-symbol {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.t-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.t-heading em {
  font-style: italic;
  color: var(--burg);
}

.t-subheading {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

/* ========== SLIDER ========== */
.slider-outer {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-track {
  display: flex;
  overflow: hidden;
  position: relative;
}

.testimonial-slide-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  padding: 0.4rem 0.2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

/* ========== CARD ========== */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: cardFadeIn 0.55s ease both;
}
.testimonial-card:nth-child(1) {
  animation-delay: 0.05s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.15s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.25s;
}

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

/* Gold top-bar on hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold3),
    var(--gold),
    var(--burg),
    var(--gold),
    var(--gold3)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

/* Large decorative quote bg */
.testimonial-card::after {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 48px rgba(107, 30, 53, 0.13),
    0 4px 14px rgba(201, 146, 42, 0.1);
}
.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Inner decorative frame */
.card-inner-frame {
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 1px solid rgba(201, 146, 42, 0.1);
  border-radius: 4px;
  pointer-events: none;
}
.card-inner-frame::before,
.card-inner-frame::after {
  content: "\2736";
  position: absolute;
  font-size: 8px;
  color: var(--gold);
  opacity: 0.5;
}
.card-inner-frame::before {
  top: -5px;
  left: -5px;
}
.card-inner-frame::after {
  bottom: -5px;
  right: -5px;
}

/* ========== AVATAR ========== */
.testimonial-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold3), var(--burg2), var(--gold));
}
.avatar-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d9e0, #fff0dc);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.avatar-ring-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.avatar-initials {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--burg);
  letter-spacing: 1px;
}

/* ========== STARS ========== */
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.6rem;
}
.star {
  display: inline-block;
  width: 13px;
  height: 13px;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  animation: starPop 0.4s ease both;
}
.star:nth-child(1) {
  animation-delay: 0.05s;
}
.star:nth-child(2) {
  animation-delay: 0.1s;
}
.star:nth-child(3) {
  animation-delay: 0.15s;
}
.star:nth-child(4) {
  animation-delay: 0.2s;
}
.star:nth-child(5) {
  animation-delay: 0.25s;
}
@keyframes starPop {
  from {
    transform: scale(0) rotate(-30deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* ========== QUOTE ICON & TEXT ========== */
.testimonial-quote-icon {
  text-align: center;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}
.testimonial-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  text-align: center;
  margin-bottom: 1.2rem;
  min-height: 80px;
}

/* ========== AUTHOR ========== */
.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  text-align: center;
  position: relative;
}
.testimonial-author::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}
.author-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  display: block;
  margin-bottom: 0.3rem;
}
.author-event {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burg2);
  font-weight: 500;
  border: 1px solid rgba(155, 48, 80, 0.28);
  padding: 2px 10px;
  border-radius: 2px;
}

/* ========== NAVIGATION ========== */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--surface);
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  box-shadow: 0 4px 16px rgba(201, 146, 42, 0.15);
  line-height: 1;
  padding-bottom: 2px;
  font-family: serif;
  user-select: none;
}
.arrow-btn:hover {
  background: var(--burg);
  border-color: var(--burg);
  color: var(--gold3);
  box-shadow: 0 8px 24px rgba(107, 30, 53, 0.3);
  transform: scale(1.1);
}

/* ========== DOTS ========== */
.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot:hover {
  background: rgba(201, 146, 42, 0.35);
}
.slider-dot.active {
  background: var(--burg);
  border-color: var(--burg);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(107, 30, 53, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 860px) {
  .testimonial-slide-page {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-slide-page .testimonial-card:nth-child(3) {
    display: none;
  }
}
@media (max-width: 560px) {
  .testimonial-slide-page {
    grid-template-columns: 1fr;
  }
  .testimonial-slide-page .testimonial-card:not(:first-child) {
    display: none;
  }
  .testimonial-text {
    min-height: unset;
  }
}
/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 2.5rem;
  background: linear-gradient(
    145deg,
    var(--cream) 0%,
    var(--blush) 50%,
    var(--cream) 100%
  );
  border-radius: 28px;
  margin: 2rem 0;
  box-shadow:
    0 12px 48px rgba(139, 111, 61, 0.1),
    0 0 0 1px rgba(245, 238, 236, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(245, 238, 236, 0.9);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "✦ ✿ ✦";
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 1.5rem;
  color: var(--gold);
  opacity: 0.35;
}

.cta-section .section-label {
  margin-top: 0.5rem;
}

.cta-section .section-title {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(139, 111, 61, 0.3);
}

.cta-section .btn:hover {
  box-shadow: 0 12px 40px rgba(139, 111, 61, 0.4);
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
  .testimonial-slide-page {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .hero-ornaments {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .navbar {
    padding: 0.8rem 5%;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo-img {
    height: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

@media (max-width: 1100px) {
  .services-grid-compact {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }

  .service-item {
    padding: 0.85rem 0.7rem;
  }

  .service-item span {
    font-size: 0.82rem;
  }

  .service-category-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-col p {
    justify-content: center;
  }

  .navbar {
    padding: 0.6rem 5%;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-img {
    height: 32px;
  }

  .services-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .service-item {
    padding: 0.9rem 0.75rem;
  }

  .service-item span {
    font-size: 0.8rem;
  }

  .service-item img {
    width: 42px;
    height: 42px;
  }

  .testimonial-slider-wrapper {
    padding: 0 2.5rem;
  }

  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 1.5rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-subtitle {
    letter-spacing: 4px;
  }

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

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
}

/* ========== CONTACT COLLAGE ========== */
.contact-collage {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.collage-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s ease, z-index 0s;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img-1 {
  top: 5%;
  left: 0;
  width: 55%;
  height: 55%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  z-index: 1;
  border: 4px solid white;
  transform: rotate(-3deg);
}

.collage-img-1:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}

.collage-img-2 {
  bottom: 5%;
  right: 0;
  width: 60%;
  height: 50%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  z-index: 2;
  border: 4px solid white;
  transform: rotate(4deg);
}

.collage-img-2:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}

.collage-img-3 {
  top: 25%;
  left: 18%;
  width: 55%;
  height: 55%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  z-index: 3;
  border: 5px solid var(--gold);
}

.collage-img-3:hover {
  transform: scale(1.08);
}

.collage-badge-love {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.collage-badge-love i {
  color: #E1306C;
  font-size: 1.4rem;
  animation: pulse 2s infinite;
}

.collage-badge-love span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.collage-badge-exp {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: var(--gold);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(175, 139, 88, 0.4);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.collage-badge-exp .exp-years {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.collage-badge-exp .exp-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Responsive Collage adjustments */
@media (max-width: 992px) {
  .contact-collage {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-collage {
    min-height: 350px;
    margin-top: 2rem;
  }
  .collage-badge-love {
    padding: 8px 16px;
    top: 5px;
    right: 5px;
  }
  .collage-badge-love span {
    font-size: 1rem;
  }
  .collage-badge-love i {
    font-size: 1.1rem;
  }
  .collage-badge-exp {
    padding: 10px 15px;
    bottom: 5px;
    left: 5px;
  }
  .collage-badge-exp .exp-years {
    font-size: 1.4rem;
  }
  .collage-badge-exp .exp-text {
    font-size: 0.7rem;
  }
  .collage-img-1 {
    width: 65%;
    height: 60%;
    top: 2%;
  }
  .collage-img-2 {
    width: 65%;
    height: 55%;
    bottom: 2%;
  }
  .collage-img-3 {
    width: 60%;
    height: 55%;
    top: 20%;
    left: 20%;
  }
}

@media (max-width: 480px) {
  .contact-collage {
    min-height: 300px;
  }
  .collage-badge-love {
    top: -10px;
    right: -10px;
  }
  .collage-badge-exp {
    bottom: -10px;
    left: -10px;
  }
}
