/* ============================================
   WEDDING STUDIO - DARK THEME PROFESSIONAL CSS
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #d4a853;
  --primary-dark: #b8922e;
  --primary-light: #f0d48a;
  --secondary: #e8c97a;
  --accent: #ff6b9d;
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --bg-section: #0e0e16;
  --text-white: #ffffff;
  --text-light: #c0c0c8;
  --text-muted: #7a7a8a;
  --border-color: #2a2a3a;
  --gradient-primary: linear-gradient(135deg, #d4a853 0%, #e8c97a 50%, #d4a853 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.9) 100%);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.5);
  --shadow-gold: 0 5px 30px rgba(212,168,83,0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

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

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

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

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  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;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Navbar ---------- */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-brand i {
  color: var(--accent);
  margin-right: 8px;
}

.navbar-brand span {
  color: var(--text-white);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4a853' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212,168,83,0.25);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.2); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-title span {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-btns {
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--primary);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-7px); }
}

/* ---------- Particles / Floating Elements ---------- */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gradient-primary);
  color: var(--bg-dark) !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
  z-index: -1;
}

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

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212,168,83,0.4);
  color: var(--bg-dark) !important;
}

.btn-outline-custom {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--bg-dark) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ---------- Section Styles ---------- */
.section-padding {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 15px auto;
  border-radius: 2px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- About Section ---------- */
.about-img-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

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

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

.about-experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.about-experience h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-experience p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--primary);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.about-features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-features li i {
  color: var(--primary);
  margin-right: 12px;
  font-size: 1.1rem;
}

/* ---------- Services Section ---------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--bg-dark);
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Gallery Section ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 24px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background: transparent;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,15,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: var(--primary);
  font-size: 2.5rem;
  transform: scale(0);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-overlay .gallery-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--text-white);
}

.gallery-overlay .gallery-info h5 {
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.gallery-overlay .gallery-info p {
  font-size: 0.85rem;
  color: var(--primary);
  margin: 0;
}

/* ---------- Video Section ---------- */
.video-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

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

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

/* ---------- Pricing Section ---------- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212,168,83,0.05) 0%, transparent 50%);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

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

.pricing-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.pricing-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border: none;
}

.pricing-features li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 0.85rem;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: var(--text-muted);
}

/* ---------- Team Section ---------- */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
  background: linear-gradient(180deg, transparent, rgba(10,10,15,0.9));
  transition: var(--transition);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.team-social a:hover {
  transform: translateY(-3px);
  background: var(--primary-light);
}

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

.team-info h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-white);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Equipment Section ---------- */
.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.equipment-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

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

.equipment-card h5 {
  color: var(--text-white);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.equipment-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

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

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author h5 {
  color: var(--text-white);
  margin-bottom: 2px;
  font-size: 1rem;
}

.testimonial-author p {
  color: var(--primary);
  font-size: 0.8rem;
  margin: 0;
}

/* ---------- Offers / CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1920&q=80') center/cover no-repeat fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,15,0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text-white);
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.offer-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

/* ---------- Stats Section ---------- */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Contact Section ---------- */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  margin-bottom: 20px;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card h5 {
  color: var(--text-white);
  margin-bottom: 3px;
  font-size: 1rem;
}

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

.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 14px 20px;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(212,168,83,0.15);
  background: var(--bg-card);
  color: var(--text-light);
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

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

.contact-form label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ---------- Map Section ---------- */
.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(83%);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-brand span {
  color: var(--text-white);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer h5 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,15,0.8);
}

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

.page-header-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.breadcrumb li a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.breadcrumb li span {
  color: var(--primary);
  font-size: 0.95rem;
}

.breadcrumb li + li::before {
  content: '|';
  color: var(--text-muted);
  margin-right: 10px;
}

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(212,168,83,0.5);
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-content img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--border-radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

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

/* ---------- 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 zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ---------- Counter Animation ---------- */
.counter {
  display: inline-block;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

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

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

  .navbar-collapse {
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    border: 1px solid var(--border-color);
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .cta-content h2 {
    font-size: 2rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .gallery-item img {
    height: 220px;
  }

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

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .service-card {
    padding: 30px 20px;
  }

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

  .testimonial-card {
    padding: 25px;
  }
}

/* ---------- Utility ---------- */
.text-gold {
  color: var(--primary) !important;
}

.bg-dark-custom {
  background-color: var(--bg-section) !important;
}

.border-gold {
  border-color: var(--primary) !important;
}

/* ---------- Glow Effects ---------- */
.glow-text {
  text-shadow: 0 0 20px rgba(212,168,83,0.3);
}

.glow-box {
  box-shadow: 0 0 30px rgba(212,168,83,0.1);
}

/* ---------- Timeline (for about page) ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 30px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateX(-50%);
  border: 3px solid var(--bg-dark);
  z-index: 2;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 25px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.timeline-content h4 {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-white);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 55px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }
}

/* ---------- Price Chart / Comparison Table ---------- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.price-table thead th {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-table tbody td {
  background: var(--bg-card);
  color: var(--text-light);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.price-table tbody tr:hover td {
  background: var(--bg-card-hover);
}

.price-table tbody tr:last-child td {
  border: none;
}

.price-table .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-white);
  font-weight: 600;
  padding: 18px 25px;
  box-shadow: none !important;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(60%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(90%);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(212,168,83,0.05);
  color: var(--primary);
}

.faq-accordion .accordion-body {
  color: var(--text-muted);
  padding: 0 25px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- Image placeholders for demo ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}

.img-placeholder-wedding {
  background: linear-gradient(135deg, #1a1a28 0%, #2a1a1a 100%);
}

.img-placeholder-birthday {
  background: linear-gradient(135deg, #1a2a1a 0%, #1a1a28 100%);
}

.img-placeholder-party {
  background: linear-gradient(135deg, #2a1a2a 0%, #1a1a28 100%);
}
