/* ============================================================
   SHAADI FILMS - Premium Wedding Photography Website
   Complete Production-Ready Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Great+Vibes&display=swap');

/* ----------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Primary Colors */
  --primary: #b4284e;
  --primary-light: #d4567a;
  --primary-dark: #8a1a36;
  --primary-rgb: 180, 40, 78;

  /* Secondary / Gold */
  --secondary: #c9a84c;
  --secondary-light: #e0c878;
  --secondary-rgb: 201, 168, 76;

  /* Accent */
  --accent: #f5e6cc;
  --accent-rgb: 245, 230, 204;

  /* Darks */
  --dark: #1a1020;
  --dark-light: #2d1f3d;
  --dark-rgb: 26, 16, 32;

  /* Lights */
  --white: #ffffff;
  --light-gray: #faf7f4;
  --light-gray-rgb: 250, 247, 244;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 100px;
  --container-padding: 0 15px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(26, 16, 32, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 16, 32, 0.12);
  --shadow-lg: 0 15px 50px rgba(26, 16, 32, 0.18);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);
  --shadow-rose: 0 8px 30px rgba(180, 40, 78, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --radius-circle: 50%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--dark-light);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding: var(--container-padding);
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--secondary); }
.text-white { color: var(--white); }
.text-script { font-family: var(--font-script); }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light-gray); }
.bg-dark { background-color: var(--dark); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* ----------------------------------------------------------
   4. PRELOADER
   ---------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wedding-loader {
  text-align: center;
  position: relative;
}

.loader-hearts {
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
}

.loader-hearts i {
  font-size: 3.5rem;
  color: var(--primary-light);
  animation: heartPulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 86, 122, 0.6));
}

.loader-hearts i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  animation: heartRing 1.2s ease-in-out infinite;
}

.loader-hearts i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  animation: heartRing 1.2s ease-in-out infinite 0.3s;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  15% { transform: scale(1.3); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
  60% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes heartRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.loader-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.loader-brand span:first-child {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}

.loader-brand span:last-child {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--secondary);
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120px;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  animation: loaderSlide 1.5s ease infinite;
}

@keyframes loaderSlide {
  0% { left: -120px; }
  100% { left: 120px; }
}

/* ----------------------------------------------------------
   5. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 0;
  transition: all var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(26, 16, 32, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.navbar.scrolled .navbar-brand {
  color: var(--dark);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  margin-right: 4px;
  animation: heartPulse 2s ease-in-out infinite;
}

.navbar-brand span {
  font-family: var(--font-script);
  color: var(--secondary);
  font-weight: 400;
  font-size: 1.3rem;
  margin-left: 2px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.navbar-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: var(--transition-fast);
}

.navbar.scrolled .navbar-menu a {
  color: var(--dark-light);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--secondary);
}

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

.navbar.scrolled .navbar-menu a:hover,
.navbar.scrolled .navbar-menu a.active {
  color: var(--primary);
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--dark) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.btn-booking i {
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar.scrolled .navbar-toggle span {
  background: var(--dark);
}

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

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

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

/* Mobile Menu Overlay */
.navbar-collapse {
  display: flex;
  align-items: center;
}

.navbar-collapse.show {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--dark);
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transform: translateX(0);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.navbar-collapse.show .navbar-menu {
  flex-direction: column;
  gap: 25px;
}

.navbar-collapse.show .navbar-menu a {
  color: var(--white);
  font-size: 1.1rem;
}

.navbar-collapse.show .btn-booking {
  margin-top: 20px;
}

/* ----------------------------------------------------------
   6. HERO SECTION
   ---------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 16, 32, 0.7) 0%,
    rgba(26, 16, 32, 0.5) 40%,
    rgba(138, 26, 54, 0.4) 70%,
    rgba(26, 16, 32, 0.8) 100%
  );
  z-index: 1;
}

/* Decorative Corner Ornaments */
.hero-section::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 120px;
  height: 120px;
  border-top: 2px solid rgba(201, 168, 76, 0.4);
  border-left: 2px solid rgba(201, 168, 76, 0.4);
  z-index: 2;
  pointer-events: none;
}

.hero-ornament-bottom {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.4);
  border-right: 2px solid rgba(201, 168, 76, 0.4);
  z-index: 2;
  pointer-events: none;
}

.hero-ornament-top-right {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-top: 2px solid rgba(201, 168, 76, 0.2);
  border-right: 2px solid rgba(201, 168, 76, 0.2);
  z-index: 2;
  pointer-events: none;
}

.hero-ornament-bottom-left {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.2);
  border-left: 2px solid rgba(201, 168, 76, 0.2);
  z-index: 2;
  pointer-events: none;
}

/* Floral SVG Decorations */
.hero-floral-left,
.hero-floral-right {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
}

.hero-floral-left {
  top: 15%;
  left: -20px;
  width: 200px;
  transform: rotate(-15deg);
}

.hero-floral-right {
  bottom: 15%;
  right: -20px;
  width: 200px;
  transform: rotate(165deg);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 850px;
}

.script-text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--secondary-light);
  margin-bottom: 10px;
  display: block;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--secondary);
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
  border-radius: 2px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

/* Hero Video Badge */
.hero-video-badge {
  position: absolute;
  bottom: 80px;
  right: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-video-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.hero-video-badge .play-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.8rem;
}

.hero-video-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Floating Petal Particles */
.petal-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-light);
  opacity: 0;
  border-radius: 50% 0 50% 0;
  animation: petalFall linear infinite;
}

.petal:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 10px; height: 10px; background: var(--primary-light); }
.petal:nth-child(2) { left: 20%; animation-duration: 15s; animation-delay: 2s; width: 14px; height: 14px; background: var(--secondary-light); }
.petal:nth-child(3) { left: 35%; animation-duration: 10s; animation-delay: 4s; width: 8px; height: 8px; background: var(--primary-light); }
.petal:nth-child(4) { left: 50%; animation-duration: 14s; animation-delay: 1s; width: 12px; height: 12px; background: var(--secondary); }
.petal:nth-child(5) { left: 65%; animation-duration: 11s; animation-delay: 3s; width: 10px; height: 10px; background: var(--primary-light); }
.petal:nth-child(6) { left: 75%; animation-duration: 13s; animation-delay: 5s; width: 16px; height: 16px; background: var(--secondary-light); }
.petal:nth-child(7) { left: 85%; animation-duration: 9s; animation-delay: 2s; width: 8px; height: 8px; background: var(--primary); }
.petal:nth-child(8) { left: 45%; animation-duration: 16s; animation-delay: 6s; width: 11px; height: 11px; background: var(--secondary-light); }
.petal:nth-child(9) { left: 90%; animation-duration: 12s; animation-delay: 4s; width: 9px; height: 9px; background: var(--primary-light); }
.petal:nth-child(10) { left: 5%; animation-duration: 14s; animation-delay: 7s; width: 13px; height: 13px; background: var(--secondary); }
.petal:nth-child(11) { left: 55%; animation-duration: 11s; animation-delay: 1.5s; width: 7px; height: 7px; background: var(--accent); }
.petal:nth-child(12) { left: 30%; animation-duration: 13s; animation-delay: 3.5s; width: 10px; height: 10px; background: var(--primary-light); }

/* Sparkle particles */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary-light);
  border-radius: var(--radius-circle);
  opacity: 0;
  animation: sparkleFloat linear infinite;
}

.sparkle:nth-child(13) { left: 15%; animation-duration: 8s; animation-delay: 0s; }
.sparkle:nth-child(14) { left: 40%; animation-duration: 10s; animation-delay: 2s; }
.sparkle:nth-child(15) { left: 60%; animation-duration: 7s; animation-delay: 4s; }
.sparkle:nth-child(16) { left: 80%; animation-duration: 9s; animation-delay: 1s; }
.sparkle:nth-child(17) { left: 25%; animation-duration: 11s; animation-delay: 3s; }
.sparkle:nth-child(18) { left: 70%; animation-duration: 8s; animation-delay: 5s; }

@keyframes petalFall {
  0% {
    transform: translateY(-100px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) translateX(100px);
    opacity: 0;
  }
}

@keyframes sparkleFloat {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translateY(-30px) scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120px) scale(0);
    opacity: 0;
  }
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  margin: 0 auto 8px;
}

.scroll-indicator .mouse .wheel {
  width: 3px;
  height: 8px;
  background: var(--secondary);
  border-radius: 3px;
  margin-top: 8px;
  animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   7. SECTION STYLES
   ---------------------------------------------------------- */
.section-padding {
  padding: var(--section-padding) 0;
}

.section-bg {
  background-color: var(--light-gray);
}

.section-dark-bg {
  background-color: var(--dark);
  color: var(--white);
}

.section-dark-bg p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark-bg h2,
.section-dark-bg h3,
.section-dark-bg h4 {
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-dark-bg .section-title .subtitle {
  color: var(--secondary-light);
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-dark-bg .section-title h2::after {
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
}

.section-title p {
  max-width: 600px;
  margin: 15px auto 0;
  color: var(--dark-light);
  font-size: 1rem;
  line-height: 1.8;
}

.section-dark-bg .section-title p {
  color: rgba(255, 255, 255, 0.65);
}

/* ----------------------------------------------------------
   8. DECORATIVE DIVIDER
   ---------------------------------------------------------- */
.wedding-divider {
  text-align: center;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.wedding-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.3) 20%,
    rgba(201, 168, 76, 0.5) 50%,
    rgba(201, 168, 76, 0.3) 80%,
    transparent 100%
  );
}

.wedding-divider svg,
.wedding-divider .divider-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0 20px;
  color: var(--secondary);
  font-size: 1.5rem;
}

.section-dark-bg .wedding-divider .divider-icon,
.section-dark-bg .wedding-divider svg {
  background: var(--dark);
}

.wedding-divider .divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.wedding-divider .divider-ornament .divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}

.wedding-divider .divider-ornament .divider-line:last-child {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.wedding-divider .divider-ornament .divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  transform: rotate(45deg);
}

.wedding-divider .divider-ornament .divider-heart {
  color: var(--primary-light);
  font-size: 1.2rem;
}

/* ----------------------------------------------------------
   9. BUTTONS
   ---------------------------------------------------------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-rose);
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 40, 78, 0.4);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-primary-custom i {
  font-size: 0.85rem;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  color: var(--dark);
}

/* Button on dark bg variant */
.btn-primary-custom.on-dark {
  box-shadow: 0 4px 20px rgba(180, 40, 78, 0.5);
}

/* Small button variant */
.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Large button variant */
.btn-lg {
  padding: 16px 44px;
  font-size: 1rem;
}

/* ----------------------------------------------------------
   10. SERVICE CARDS
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, rgba(180, 40, 78, 0.08), rgba(201, 168, 76, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary);
  transition: all var(--transition-medium);
  position: relative;
  perspective: 800px;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: rotateY(180deg);
}

.service-icon i {
  transition: transform var(--transition-medium);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  transition: var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--dark-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--secondary);
  gap: 10px;
}

.service-link i {
  font-size: 0.7rem;
  transition: var(--transition-fast);
}

/* ----------------------------------------------------------
   11. GALLERY
   ---------------------------------------------------------- */
.gallery-section {
  padding: var(--section-padding) 0;
}

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

.gallery-filters .filter-btn {
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-light);
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-rose);
}

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

.gallery-col {
  display: contents;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(26, 16, 32, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-overlay .zoom-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .zoom-icon {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
  transform: translateY(20px);
  transition: transform var(--transition-fast) 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
  transform: translateY(0);
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: var(--secondary-light);
  transform: translateY(20px);
  transition: transform var(--transition-fast) 0.15s;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Gallery Wide Items (for masonry-like) */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* ----------------------------------------------------------
   12. PRICING CARDS
   ---------------------------------------------------------- */
.pricing-section {
  padding: var(--section-padding) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 45px 35px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 45px;
  transform: rotate(45deg);
}

.pricing-card .pricing-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, rgba(180, 40, 78, 0.08), rgba(201, 168, 76, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.pricing-card .pricing-subtitle {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.pricing-card .pricing-price {
  margin-bottom: 25px;
}

.pricing-card .pricing-price .currency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  vertical-align: top;
}

.pricing-card .pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-card .pricing-price .period {
  font-size: 0.85rem;
  color: var(--dark-light);
}

.pricing-card.featured .pricing-price .amount {
  color: var(--primary);
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--dark-light);
}

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

.pricing-features li.disabled {
  color: rgba(45, 31, 61, 0.4);
}

.pricing-features li.disabled i {
  color: rgba(45, 31, 61, 0.2);
}

/* Offer Cards */
.offer-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  border-radius: var(--radius-md);
  padding: 40px 35px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent);
  border-radius: var(--radius-circle);
}

.offer-card .offer-tag {
  display: inline-block;
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 15px;
}

.offer-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.offer-card .offer-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.offer-card .offer-original {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-bottom: 15px;
}

.offer-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ----------------------------------------------------------
   13. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-padding) 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: 15px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-card .testimonial-stars i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author .author-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.testimonial-author .author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-author .author-info span {
  font-size: 0.8rem;
  color: var(--primary-light);
}

/* Swiper Carousel Styles */
.testimonial-swiper {
  padding-bottom: 60px;
  overflow: hidden;
}

.testimonial-swiper .swiper-slide {
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-swiper .swiper-pagination {
  bottom: 10px !important;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-light);
  opacity: 0.3;
  transition: var(--transition-fast);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--primary);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
  background: var(--primary);
  color: var(--white);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
  font-size: 0.9rem;
  font-weight: bold;
}

/* ----------------------------------------------------------
   14. TEAM CARDS
   ---------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.team-card .team-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.team-card .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(transparent, rgba(26, 16, 32, 0.8));
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.team-card .team-info {
  padding: 25px 20px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.team-info span {
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
}

/* ----------------------------------------------------------
   15. COUNTER SECTION
   ---------------------------------------------------------- */
.counter-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 16, 32, 0.9),
    rgba(138, 26, 54, 0.85)
  );
  z-index: 1;
}

.counter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-item {
  text-align: center;
  padding: 30px 20px;
}

.counter-item .counter-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  display: block;
}

.counter-item .counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item .counter-number span {
  color: var(--secondary);
}

.counter-item .counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   16. CONTACT SECTION
   ---------------------------------------------------------- */
.contact-section {
  padding: var(--section-padding) 0;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-info-card .contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, rgba(180, 40, 78, 0.08), rgba(201, 168, 76, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--dark-light);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--secondary);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

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

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group.full-width {
  grid-column: span 2;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(180, 40, 78, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(45, 31, 61, 0.4);
}

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

.contact-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.contact-form .form-note {
  font-size: 0.8rem;
  color: var(--dark-light);
}

/* Map Container */
.map-container {
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Footer Top Ornament - SVG Wave */
.footer-top-ornament {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.footer-top-ornament svg {
  width: 100%;
  height: 60px;
  fill: var(--light-gray);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Footer Brand */
.footer-brand {
  margin-bottom: 25px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand .brand-logo i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.footer-brand .brand-logo span {
  font-family: var(--font-script);
  color: var(--secondary);
  font-weight: 400;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
  border-radius: 2px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links ul li a i {
  font-size: 0.6rem;
  color: var(--secondary);
}

/* Footer Contact */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
  color: var(--secondary);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--secondary);
}

.footer-bottom a:hover {
  color: var(--secondary-light);
}

.footer-bottom .footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-bottom .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-bottom .footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ----------------------------------------------------------
   18. PAGE HEADER (Inner Pages)
   ---------------------------------------------------------- */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 16, 32, 0.85),
    rgba(138, 26, 54, 0.7)
  );
  z-index: 1;
}

/* Decorative corners on page header */
.page-header::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  border-top: 2px solid rgba(201, 168, 76, 0.3);
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  z-index: 2;
  pointer-events: none;
}

.page-header-ornament-br {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
  border-right: 2px solid rgba(201, 168, 76, 0.3);
  z-index: 2;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 3;
}

.page-header .script-text {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--secondary-light);
  margin-bottom: 10px;
  display: block;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .separator {
  color: var(--secondary);
  font-size: 0.7rem;
}

.breadcrumb .current {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ----------------------------------------------------------
   19. ABOUT SECTION
   ---------------------------------------------------------- */
.about-section {
  padding: var(--section-padding) 0;
}

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

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 200px;
  height: 200px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md) 0 0 0;
  z-index: -1;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 200px;
  height: 200px;
  border-bottom: 3px solid var(--primary-light);
  border-right: 3px solid var(--primary-light);
  border-radius: 0 0 var(--radius-md) 0;
  z-index: -1;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-rose);
  z-index: 5;
}

.experience-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.experience-badge .badge-text {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content .script-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-item i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.about-feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

/* ----------------------------------------------------------
   20. TIMELINE
   ---------------------------------------------------------- */
.timeline-section {
  padding: var(--section-padding) 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--secondary-light),
    var(--primary-light),
    var(--secondary-light)
  );
}

.timeline-item {
  position: relative;
  padding: 0 0 50px 0;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all var(--transition-fast);
  width: 100%;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.timeline-content .timeline-date {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--dark-light);
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   21. EQUIPMENT CARDS
   ---------------------------------------------------------- */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.equipment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all var(--transition-fast);
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 168, 76, 0.3);
}

.equipment-card .equipment-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.equipment-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.equipment-card p {
  font-size: 0.85rem;
  color: var(--dark-light);
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   22. SCROLL TO TOP
   ---------------------------------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-rose);
  border: none;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(180, 40, 78, 0.4);
}

/* ----------------------------------------------------------
   23. WHATSAPP FLOAT
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  text-decoration: none;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ----------------------------------------------------------
   24. CTA SECTION
   ---------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
  animation: ctaRotate 20s linear infinite;
}

@keyframes ctaRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section .script-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--secondary-light);
  display: block;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   25. ANIMATIONS
   ---------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.fade-up {
  transform: translateY(40px);
}

.animate-on-scroll.fade-down {
  transform: translateY(-40px);
}

.animate-on-scroll.fade-left {
  transform: translateX(-40px);
}

.animate-on-scroll.fade-right {
  transform: translateX(40px);
}

.animate-on-scroll.fade-up.animated,
.animate-on-scroll.fade-down.animated,
.animate-on-scroll.fade-left.animated,
.animate-on-scroll.fade-right.animated {
  transform: translate(0);
}

/* Delay Classes */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }
.delay-700 { transition-delay: 0.7s !important; }
.delay-800 { transition-delay: 0.8s !important; }

/* ----------------------------------------------------------
   26. LIGHTBOX
   ---------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 16, 32, 0.95);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal .lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-modal .lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 5;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  text-align: center;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ----------------------------------------------------------
   27. VIDEO SECTION
   ---------------------------------------------------------- */
.video-section {
  position: relative;
  padding: var(--section-padding) 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 16, 32, 0.88),
    rgba(138, 26, 54, 0.75)
  );
  z-index: 1;
}

.video-section .container {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper img,
.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 3;
  box-shadow: var(--shadow-gold);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-circle);
  border: 2px solid rgba(201, 168, 76, 0.4);
  animation: videoPulse 2s ease-in-out infinite;
}

@keyframes videoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0; }
}

.video-play-btn i {
  color: var(--dark);
  font-size: 1.5rem;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

/* ----------------------------------------------------------
   28. FLORAL DECORATIONS (CSS Pseudo-elements)
   ---------------------------------------------------------- */
.floral-top-left,
.floral-top-right,
.floral-bottom-left,
.floral-bottom-right {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.15);
}

.floral-top-left {
  top: 80px;
  left: 30px;
}

.floral-top-right {
  top: 80px;
  right: 30px;
  transform: scaleX(-1);
}

.floral-bottom-left {
  bottom: 30px;
  left: 30px;
  transform: scaleY(-1);
}

.floral-bottom-right {
  bottom: 30px;
  right: 30px;
  transform: scale(-1, -1);
}

/* Ornamental line decorations */
.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}

.ornament-line::after {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.ornament-line .ornament-center {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Corner Ornaments for sections */
.corner-ornaments {
  position: relative;
}

.corner-ornaments::before {
  content: '\2727';  /* ✧ */
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
}

.corner-ornaments::after {
  content: '\2727';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
}

/* ----------------------------------------------------------
   29. ADDITIONAL COMPONENT STYLES
   ---------------------------------------------------------- */

/* Feature Boxes */
.feature-box {
  padding: 30px;
  text-align: center;
}

.feature-box .feature-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, rgba(180, 40, 78, 0.06), rgba(201, 168, 76, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  border: 2px solid rgba(201, 168, 76, 0.1);
  transition: all var(--transition-medium);
}

.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: transparent;
  transform: rotateY(180deg);
}

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step .step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.15);
  margin-bottom: 15px;
}

.process-step .step-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: rgba(180, 40, 78, 0.03);
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--primary-light);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--dark-light);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(180, 40, 78, 0.08);
  border-radius: var(--radius-pill);
  margin: 3px;
}

.tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Badge */
.badge-gold {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-share a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-light);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-share a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   30. UTILITY & HELPER CLASSES
   ---------------------------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 16, 32, 0.7);
  z-index: 1;
}

.separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 15px auto;
  border-radius: 2px;
}

.separator-left {
  margin-left: 0;
}

/* Image Hover Effects */
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.img-hover-zoom img {
  transition: transform var(--transition-medium);
}

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

/* ----------------------------------------------------------
   31. RESPONSIVE STYLES
   ---------------------------------------------------------- */

/* Large Desktops */
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

/* Standard Desktops */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
  }
}

/* Tablets Landscape */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  /* Navbar */
  .navbar-toggle {
    display: flex;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right var(--transition-fast);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-collapse .navbar-menu {
    flex-direction: column;
    gap: 25px;
  }

  .navbar-collapse .navbar-menu a {
    color: var(--white);
    font-size: 1.1rem;
  }

  .navbar-collapse .btn-booking {
    margin-top: 20px;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .nav-overlay.show {
    display: block;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-video-badge {
    bottom: 40px;
    right: 40px;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Counter */
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .experience-badge {
    right: 10px;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  /* Equipment */
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Page Header */
  .page-header {
    min-height: 350px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }

  /* Hero */
  .hero-section {
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .script-text {
    font-size: 1.6rem;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .hero-video-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
    display: inline-flex;
  }

  .hero-ornament-bottom,
  .hero-ornament-top-right,
  .hero-ornament-bottom-left,
  .hero-floral-left,
  .hero-floral-right {
    display: none;
  }

  /* Section Title */
  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title .subtitle {
    font-size: 1.2rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-card .team-img {
    height: 250px;
  }

  /* Counter */
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .counter-item .counter-number {
    font-size: 2.2rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 25px;
  }

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

  .contact-form .form-group.full-width {
    grid-column: span 1;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    padding: 60px 0 40px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.8rem;
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Equipment */
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Page Header */
  .page-header {
    min-height: 300px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header::after,
  .page-header-ornament-br {
    display: none;
  }

  /* Buttons */
  .btn-primary-custom,
  .btn-secondary-custom,
  .btn-gold {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn-primary-custom,
  .hero-btns .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  /* Decorative */
  .hero-section::after {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
  }
}

/* Mobile Small */
@media (max-width: 576px) {
  :root {
    --section-padding: 60px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .container {
    padding: 0 12px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 0;
  }

  .script-text {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 15px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-divider {
    height: 30px;
  }

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

  .gallery-filters {
    gap: 8px;
  }

  .gallery-filters .filter-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  /* Counter */
  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .counter-item {
    padding: 20px 10px;
  }

  .counter-item .counter-icon {
    font-size: 2rem;
  }

  .counter-item .counter-number {
    font-size: 1.8rem;
  }

  /* Equipment */
  .equipment-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Pricing */
  .pricing-card {
    padding: 30px 20px;
  }

  /* Contact */
  .contact-form {
    padding: 20px;
  }

  /* Timeline */
  .timeline-content {
    padding: 20px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns .btn-primary-custom,
  .cta-btns .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  /* Scroll to Top & WhatsApp */
  .scroll-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    left: 20px;
    font-size: 1.3rem;
  }

  /* Preloader */
  .loader-brand span:first-child {
    font-size: 2rem;
  }

  .loader-brand span:last-child {
    font-size: 1.5rem;
  }

  .loader-hearts i {
    font-size: 2.5rem;
  }

  /* Video */
  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn i {
    font-size: 1.2rem;
  }

  /* Page Header */
  .page-header {
    min-height: 260px;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }

  .page-header .script-text {
    font-size: 1.2rem;
  }

  .breadcrumb a,
  .breadcrumb .current {
    font-size: 0.8rem;
  }

  /* Experience Badge */
  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 15px;
  }

  .about-img-wrapper::before,
  .about-img-wrapper::after {
    display: none;
  }

  /* Lightbox */
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .script-text {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------
   32. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  .navbar,
  .scroll-to-top,
  .whatsapp-float,
  #preloader,
  .petal-container,
  .hero-video-badge,
  .lightbox-modal {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .section-padding {
    padding: 30px 0;
  }
}

/* ----------------------------------------------------------
   33. ACCESSIBILITY - Reduced Motion
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ----------------------------------------------------------
   34. SWIPER OVERRIDES FOR TESTIMONIALS
   ---------------------------------------------------------- */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: ease-out;
}

.swiper-slide {
  flex-shrink: 0;
}

/* Wedding-themed Swiper */
.wedding-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--primary-light);
  opacity: 1;
  transition: var(--transition-fast);
}

.wedding-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
  width: 35px;
  border-radius: 6px;
}

.wedding-swiper .swiper-button-next,
.wedding-swiper .swiper-button-prev {
  color: var(--primary);
}

/* ----------------------------------------------------------
   35. FORM VALIDATION STYLES
   ---------------------------------------------------------- */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.03);
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.03);
}

.form-error-message {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.form-group.error .form-error-message {
  display: block;
}

/* ----------------------------------------------------------
   36. LOADING STATES
   ---------------------------------------------------------- */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: var(--radius-circle);
  animation: rotate360 0.6s linear infinite;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* ----------------------------------------------------------
   37. TOOLTIP STYLES
   ---------------------------------------------------------- */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------------------
   38. NOTIFICATION / ALERT STYLES
   ---------------------------------------------------------- */
.alert {
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-success {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.2);
  color: #27ae60;
}

.alert-error {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.alert-info {
  background: rgba(180, 40, 78, 0.08);
  border: 1px solid rgba(180, 40, 78, 0.2);
  color: var(--primary);
}

.alert i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   END OF STYLESHEET
   ============================================================ */
