/* ============================================
   SHUBH MAHAL — Royal Wedding Venue
   Theme: Maroon & Golden
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Maroon Ramp */
  --maroon-50: #fdf2f4;
  --maroon-100: #fbe0e6;
  --maroon-200: #f5b8c8;
  --maroon-300: #e8859f;
  --maroon-400: #d4506f;
  --maroon-500: #b8334f;
  --maroon-600: #9a1f3a;
  --maroon-700: #7a1530;
  --maroon-800: #5c1028;
  --maroon-900: #420d20;
  --maroon-950: #2d0815;

  /* Golden Ramp */
  --gold-50: #fdfaeb;
  --gold-100: #faf0c8;
  --gold-200: #f5dd8a;
  --gold-300: #f0c948;
  --gold-400: #e6b422;
  --gold-500: #d4a017;
  --gold-600: #b8860b;
  --gold-700: #96690a;
  --gold-800: #7a510c;
  --gold-900: #63420e;

  /* Neutrals */
  --cream: #fff9f0;
  --ivory: #fdf6ec;
  --charcoal: #1a0a10;
  --white: #ffffff;

  /* Semantic */
  --bg-primary: var(--cream);
  --bg-dark: var(--maroon-950);
  --text-primary: var(--maroon-950);
  --text-light: #6b5560;
  --text-gold: var(--gold-500);
  --accent: var(--gold-500);

  /* Typography */
  --font-display: 'Marcellus', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Inter', sans-serif;

  /* Spacing */
  --space: 8px;
  --section-padding: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-ui);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.gold {
  color: var(--gold-500);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}

.section-label.center {
  justify-content: center;
}

.label-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--maroon-900);
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
}

.section-subtitle.center {
  margin: 0 auto;
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--maroon-950);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.btn-primary-full {
  width: 100%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  color: var(--gold-300);
  border: 1px solid var(--gold-500);
}

.btn-primary-full:hover {
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 21, 48, 0.4);
}

.btn-outline-full {
  width: 100%;
  background: transparent;
  color: var(--maroon-800);
  border: 1.5px solid var(--gold-500);
}

.btn-outline-full:hover {
  background: var(--gold-50);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(45, 8, 21, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s;
}

.navbar.scrolled .nav-logo {
  color: var(--white);
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(240, 201, 72, 0.5));
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--gold-300);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--maroon-950);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  color: var(--maroon-950);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: linear-gradient(135deg, var(--maroon-950) 0%, var(--maroon-800) 50%, var(--maroon-900) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img\buil.png') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(45, 8, 21, 0.7) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-400);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 40px 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 32px;
  transform: rotate(-4deg);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.14), rgba(255, 255, 255, 0.03));
  z-index: -1;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge i {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-400);
  font-weight: 600;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(212, 160, 23, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scrollDown 2s var(--ease) infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 550px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(122, 21, 48, 0.2);
  border: 3px solid var(--gold-300);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(122, 21, 48, 0.25);
  border: 3px solid var(--gold-300);
  z-index: 2;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-950));
  color: var(--gold-300);
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--gold-500);
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--maroon-800);
}

.feature-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon-50);
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  color: var(--maroon-700);
  flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212, 160, 23, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(154, 31, 58, 0.05) 0%, transparent 50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.15);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(122, 21, 48, 0.12);
  border-color: var(--gold-400);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon-50), var(--maroon-100));
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  color: var(--maroon-700);
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  color: var(--gold-400);
  transform: rotate(360deg);
}

.service-icon i {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--maroon-900);
  margin-bottom: 12px;
  font-weight: 400;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--maroon-950);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 40%);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s var(--ease);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover {
  border-color: var(--gold-500);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 8, 21, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
  margin-bottom: 8px;
  transform: scale(0);
  transition: transform 0.4s var(--ease-bounce);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ---------- PACKAGES ---------- */
.packages {
  background: var(--ivory);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.2);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(122, 21, 48, 0.12);
}

.package-featured {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, var(--maroon-950) 0%, var(--maroon-900) 100%);
  color: var(--white);
  transform: scale(1.03);
}

.package-featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--maroon-950);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.package-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.package-featured .package-header h3 {
  color: var(--gold-400);
}

.package-card:not(.package-featured) .package-header h3 {
  color: var(--maroon-900);
}

.package-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}

.package-featured .package-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.package-price {
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.package-featured .package-price {
  border-color: rgba(212, 160, 23, 0.3);
}

.currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-500);
}

.amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--maroon-900);
}

.package-featured .amount {
  color: var(--gold-400);
}

.per {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-light);
}

.package-featured .per {
  color: rgba(255, 255, 255, 0.5);
}

.package-features {
  text-align: left;
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-featured .package-features li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.package-features li i {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.package-featured .package-features li i {
  color: var(--gold-400);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.06) 0%, transparent 50%);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.quote-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon-50);
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  color: var(--gold-500);
}

.quote-icon i {
  width: 28px;
  height: 28px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--maroon-900);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-950));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid var(--gold-400);
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon-900);
}

.author-date {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  background: var(--white);
  color: var(--maroon-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.testimonial-btn:hover {
  background: var(--maroon-800);
  color: var(--gold-400);
  transform: scale(1.1);
}

.testimonial-btn i {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.dot.active {
  background: var(--gold-500);
  width: 30px;
  border-radius: 5px;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--maroon-950);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-info .section-label {
  color: var(--gold-400);
}

.contact-info .section-title {
  color: var(--white);
}

.contact-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-item i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  color: var(--gold-400);
}

.detail-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-value {
  display: block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  background: var(--gold-500);
  color: var(--maroon-950);
  transform: translateY(-3px);
}

.social-links a i {
  width: 20px;
  height: 20px;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.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: 6px;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f0c948' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--maroon-900);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(5deg);
  cursor: pointer;
}

.form-message {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}

.form-message.success {
  color: #4ade80;
  padding: 12px 16px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-message.error {
  color: #f87171;
  padding: 12px 16px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--gold-400);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  padding: 60px 0 0;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-400);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold-400);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer .social-links a {
  background: rgba(212, 160, 23, 0.08);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s var(--ease);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  border: 3px solid var(--gold-500);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.lightbox-close:hover {
  background: var(--gold-500);
  color: var(--maroon-950);
  transform: rotate(90deg);
}

.lightbox-close i {
  width: 24px;
  height: 24px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--maroon-950);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.back-to-top i {
  width: 22px;
  height: 22px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    height: 450px;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .navbar {
    padding: 14px 0;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-logo {
    gap: 8px;
    font-size: 1.2rem;
  }

  .nav-logo-img {
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 84px 0 48px;
  }

  .hero-banner {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-banner img {
    height: min(46vh, 320px);
    min-height: 260px;
    object-position: center;
  }

  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 18px;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--maroon-950);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-links a.nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-tall {
    grid-row: span 1;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .package-featured {
    transform: none;
  }

  .package-featured:hover {
    transform: translateY(-8px);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-badge {
    left: 10px;
  }

  .testimonial-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 1rem;
  }

  .nav-logo-img {
    height: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-large {
    grid-column: span 1;
  }

  .hero-banner img {
    height: 240px;
    min-height: 220px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-controls {
    gap: 12px;
    margin-top: 24px;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
  }
}
