/* ==========================================================================
   RK EVENT JHANSI - Premium Light & Floral Theme
   ========================================================================== */

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

/* CSS Variables for Light/Pastel Theme */
:root {
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #faf9f6;
  /* Soft Ivory */
  --bg-tertiary: #fdfaf6;

  /* Text Colors */
  --text-main: #2c2c2c;
  --text-muted: #6b6b6b;
  --text-light: #ffffff;
  /* For overlays */

  /* Accents (Wedding/Decoration Pastels) */
  --accent-blush: #f4e1e1;
  /* Soft blush pink */
  --accent-sage: #e3ebd1;
  /* Soft sage green */
  --accent-champagne: #f7e7ce;
  /* Champagne gold */
  --accent-dark: #b89797;
  /* Dusty rose */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Utilities */
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 8px;
  /* Softer, slightly tighter radius for a more editorial look */
  --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  /* Lighter weight for luxury feel */
  color: var(--text-main);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

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

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

@media (min-width: 992px) {
  .section-padding {
    padding: 40px 0;
  }
}

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

.section-subtitle {
  color: var(--text-muted);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}

.bg-secondary {
  background-color: var(--bg-secondary) !important;
}

/* Buttons */
.btn-premium {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
  padding: 12px 36px;
  border-radius: 0;
  /* Square edges for luxury editorial feel */
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--text-main);
  transition: var(--transition);
  z-index: -1;
}

.btn-premium:hover {
  color: var(--bg-primary);
  border-color: var(--text-main);
}

.btn-premium:hover::before {
  width: 100%;
}

.btn-premium-solid {
  background: var(--text-main);
  color: var(--bg-primary);
  border: 1px solid var(--text-main);
}

.btn-premium-solid::before {
  background: var(--accent-champagne);
}

.btn-premium-solid:hover {
  color: var(--text-main);
  border-color: var(--accent-champagne);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar-premium {
  background: transparent;
  padding: 5px 0;
  transition: var(--transition);
}

.navbar-premium.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 120px;
  /* Increased for visibility */
  width: auto;
  transition: var(--transition);
  /* If the logo is white, we might need a filter on scroll */
}

/* Navigation Links */
.navbar-premium .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin: 0 15px;
  position: relative;
  transition: var(--transition);
}

.navbar-premium.scrolled .nav-link {
  color: var(--text-main) !important;
}

.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--text-light);
  transition: var(--transition);
}

.navbar-premium.scrolled .nav-link::after {
  background: var(--text-main);
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
  width: 100%;
}

.navbar-premium.scrolled .btn-premium {
  border-color: var(--text-main);
  color: var(--text-main);
}

.navbar-premium:not(.scrolled) .btn-premium {
  border-color: var(--text-light);
  color: var(--text-light);
}

.navbar-premium:not(.scrolled) .btn-premium::before {
  background: var(--text-light);
}

.navbar-premium:not(.scrolled) .btn-premium:hover {
  color: var(--text-main);
}

/* Dropdown */
.dropdown-menu {
  background: var(--bg-primary);
  border: none;
  border-radius: 0;
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  margin-top: 20px;
}

.dropdown-item {
  color: var(--text-main);
  padding: 10px 25px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--accent-dark);
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  color: var(--text-light);
}

.navbar-premium.scrolled .navbar-toggler {
  color: var(--text-main);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Menu Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg-primary);
    padding: 20px;
    margin-top: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .navbar-premium:not(.scrolled) .nav-link {
    color: var(--text-main) !important;
  }

  .navbar-premium:not(.scrolled) .btn-premium {
    border-color: var(--text-main);
    color: var(--text-main);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4a0414;
  /* Deep Burgundy */
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s linear;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

/* Softer gradient for light/elegant look */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(74, 4, 20, 0.5) 0%, rgba(74, 4, 20, 0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-light);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  letter-spacing: 1px;
}

/* ==========================================================================
   Marquee Banner
   ========================================================================== */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  background-color: var(--text-main);
  color: var(--bg-primary);
  padding: 15px 0;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 25s linear infinite;
  padding-right: 15px;
  /* Ensures smooth looping without jumping */
}

.marquee-content span {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.marquee-content i {
  font-size: 0.4rem;
  color: var(--accent-champagne);
  margin-top: 1px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* ==========================================================================
   Photo Cards (Editorial Style)
   ========================================================================== */
.editorial-card {
  background: var(--bg-primary);
  margin-bottom: 30px;
}

.editorial-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  /* Taller, portrait style common in wedding photography */
}

.editorial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
  border-radius: 0;
}

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

.editorial-body {
  padding: 1.5rem 0;
  text-align: center;
}

.editorial-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  transition: var(--transition);
}

.editorial-card:hover .editorial-title {
  color: var(--accent-dark);
}

/* ==========================================================================
   Masonry Gallery
   ========================================================================== */
.gallery-masonry {
  columns: 1;
  column-gap: 1.5rem;
}

@media (min-width: 576px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (min-width: 992px) {
  .gallery-masonry {
    columns: 3;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  border-radius: 0;
}

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

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-section {
  background-color: var(--bg-secondary);
}

.testimonial-card {
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.btn-footer-cta {
  background-color: #72202b;
  color: #fff;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-footer-cta:hover {
  background-color: #5a1922;
  color: #fff;
}

.site-footer {
  background-color: #1a1a1a;
  color: #d1d1d1;
  padding: 80px 0 30px;
  font-size: 0.9rem;
}

.site-footer .footer-logo img {
  max-width: 140px;
}

.site-footer .footer-about-text {
  margin-top: 15px;
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-social-links a:hover {
  background: #d4af37;
  color: #1a1a1a;
}

.site-footer .footer-heading {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.site-footer .footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: #d4af37;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  margin-bottom: 15px;
  gap: 12px;
  align-items: flex-start;
  word-break: break-word;
}

.footer-contact-info li > i {
  color: #d1d1d1;
  font-size: 1rem;
  margin-top: 2px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-newsletter-text {
  margin-bottom: 20px;
}

.footer-newsletter-form .input-group {
  border: 1px solid #444;
  border-radius: 4px;
  overflow: hidden;
}

.footer-newsletter-form .form-control {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
}

.footer-newsletter-form .form-control:focus {
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.footer-newsletter-form .form-control::placeholder {
  color: #888;
}

.footer-newsletter-form .btn {
  background: #72202b;
  color: #fff;
  border: none;
  padding: 0 20px;
}

.footer-newsletter-form .btn:hover {
  background: #5a1922;
  color: #fff;
}

.site-footer .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 25px;
  font-size: 0.85rem;
  color: #888;
}

.site-footer .footer-bottom a {
  color: #888;
  text-decoration: none;
}

.site-footer .footer-bottom a:hover {
  color: #d4af37;
}

@media (min-width: 992px) {
  .border-start-lg {
    border-left: 1px solid #333;
    padding-left: 2rem;
  }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text-main);
  padding: 15px 0;
  border-radius: 0;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--text-main);
  box-shadow: none;
  color: var(--text-main);
}

.form-control::placeholder {
  color: #a0a0a0;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--text-muted);
}

/* Sticky Buttons */
.sticky-btn-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.sticky-btn:hover {
  transform: translateY(-5px);
  color: white;
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-call {
  background-color: var(--text-main);
}

.btn-top {
  background-color: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.btn-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Our Services Section */
.service-card-new {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin: 10px 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-new:hover img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 24px 24px;
  background: linear-gradient(to top, rgba(74, 4, 20, 0.85) 0%, rgba(74, 4, 20, 0.3) 60%, transparent 100%);
  color: #fff;
  text-align: left;
}

.service-card-overlay h4 {
  color: #fff;
  font-family: var(--font-heading), serif;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.service-card-overlay p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.services-section-title {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  color: #0c0c0c;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background-color: #fafafa;
}

.why-tag {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.why-heading {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
}

.why-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.why-line {
  height: 1px;
  width: 80px;
  background-color: rgba(212, 175, 55, 0.4);
}

.why-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 20px;
  min-height: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-icon-wrap {
  margin-bottom: 25px;
}

.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--font-body), sans-serif;
}

.why-title span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  display: block;
  margin-top: 5px;
}

.why-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: var(--font-body), sans-serif;
}

/* Achievements Section */
.achievements-section {
  padding: 40px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}

.ach-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 5, 15, 0.85);
  /* Dark maroon overlay */
}

.ach-tag {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.ach-heading {
  color: #fff;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ach-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.ach-line {
  height: 1px;
  width: 80px;
  background-color: rgba(212, 175, 55, 0.4);
}

.ach-row {
  margin-top: 10px;
}

.ach-col {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ach-col:last-child {
  border-right: none;
}

.ach-item {
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ach-icon-box {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 0;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ach-item:hover .ach-icon-box {
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.ach-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ach-number {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.ach-number span {
  font-family: var(--font-heading);
}

.ach-text {
  color: #e0e0e0;
  font-size: 0.75rem;
  font-family: var(--font-body), sans-serif;
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .ach-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .ach-col:last-child {
    border-bottom: none;
  }
}

/* Recent Events Section */
.recent-events-section {
  background-color: #38020d;
  /* Dark Maroon */
  padding: 80px 0;
}

.recent-event-card {
  display: block;
  position: relative;
  border-radius: 15px; /* Softer rounded corners */
  overflow: hidden;
  background-color: #000;
  transition: all 0.3s ease;
  aspect-ratio: 9 / 16;
  max-width: 320px;
  margin: 0 auto;
}

/* Custom Swiper Navigation for Recent Events */
.recent-events-wrapper .swiper-button-prev,
.recent-events-wrapper .swiper-button-next {
  background-color: #fff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  border: 1px solid #ddd;
}
.recent-events-wrapper .swiper-button-prev::after,
.recent-events-wrapper .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
}
.recent-events-wrapper .swiper-button-prev {
  left: 0;
}
.recent-events-wrapper .swiper-button-next {
  right: 0;
}

.recent-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recent-event-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.ig-iframe {
  border: none !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -55px !important; /* Hides the top header */
  left: -2px !important;
  width: calc(100% + 4px) !important;
  height: calc(100% + 320px) !important; /* Forces the iframe to be taller than the card to push the footer out completely */
  pointer-events: auto !important;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: var(--color-primary-gold);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gallery:hover {
  background: #b5952f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Packages Section */
.packages-section {
  background-color: #fcfcfc;
}

.package-card {
  background-color: #4a0414;
  /* Deep Burgundy */
  border-radius: 12px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-card-top {
  display: flex;
  gap: 12px;
  flex: 1;
}

.package-img-wrap {
  width: 45%;
  flex-shrink: 0;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  min-height: 180px;
}

.package-info {
  width: 55%;
}

.package-title {
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading), serif;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  color: #cccccc;
  font-size: 0.8rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 12px;
  line-height: 1.3;
}

.package-features li::before {
  content: "\2022";
  color: #d4af37;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

.package-card-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-price-wrap {
  text-align: left;
}

.package-price {
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.package-onwards {
  color: #aaaaaa;
  font-size: 0.75rem;
  display: block;
  margin-top: 4px;
}

.btn-package {
  background: linear-gradient(135deg, #d4af37, #aa8123);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-package:hover {
  background: linear-gradient(135deg, #f5d466, #d4af37);
  color: #fff;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* Staggered Gallery & Subpage Layout Styles */
.staggered-grid .col-md-3:nth-child(even) {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .staggered-grid .col-md-3:nth-child(even) {
    margin-top: 0;
  }
}

.staggered-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #1a1a1a;
  height: 280px;
}

.staggered-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.staggered-card:hover img {
  transform: scale(1.08);
}

.staggered-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.styled-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.styled-image-box.stagger-up {
  transform: translateY(-20px);
}

.styled-image-box.stagger-down {
  transform: translateY(20px);
}

@media (max-width: 991px) {

  .styled-image-box.stagger-up,
  .styled-image-box.stagger-down {
    transform: none;
  }
}

.seo-card-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #d4af37;
}

.subpage-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 160px 0 100px;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.75) 0%, rgba(12, 12, 12, 0.9) 100%);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Photography Subpage UI Styles */
.photo-hero-studio {
  background: radial-gradient(circle at center, #5a0418 0%, #2b010b 100%);
  padding: 140px 0 80px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.photo-film-card {
  position: relative;
  background: #ffffff;
  padding: 10px 10px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.photo-film-card .img-wrapper {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 8px;
}

.photo-film-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-film-card:hover img {
  transform: scale(1.08);
}

.photo-film-card.tilt-left {
  transform: rotate(-1.8deg);
}

.photo-film-card.tilt-right {
  transform: rotate(1.8deg);
}

.photo-film-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.04);
  z-index: 5;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.photo-caption {
  font-family: var(--font-heading);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

.deliverable-card {
  background: #181818;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.deliverable-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.gear-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.3rem;
}

.bg-theme-dark {
  background-color: #38020d !important;
}

.bg-theme-maroon {
  background-color: #4a0414 !important;
}

/* Wedding Theme Variations */
.bg-theme-purple {
  background-color: #3b113b !important;
}

.bg-theme-purple-dark {
  background-color: #280a28 !important;
}

.bg-theme-crimson {
  background-color: #660a1e !important;
}

.bg-theme-crimson-dark {
  background-color: #470614 !important;
}

.bg-theme-pink-dark {
  background-color: #8a154c !important;
}

.bg-theme-pink-darker {
  background-color: #660d37 !important;
}

.bg-theme-vermilion {
  background-color: #c93424 !important;
}

.bg-theme-vermilion-dark {
  background-color: #9e2618 !important;
}

/* Featured Weddings */
.featured-weddings-section {
  background-color: var(--bg-tertiary);
}

.featured-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.featured-content {
  padding: 20px;
}

.featured-content h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.featured-content .view-link {
  text-decoration: none;
  font-size: 0.9rem;
  color: #c49c5e;
  font-weight: 500;
  transition: color 0.3s ease;
}

.featured-content .view-link:hover {
  color: #a88145;
}

.featured-next,
.featured-prev {
  color: #c49c5e !important;
  background: #fff;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  top: 45% !important;
}

.featured-next::after,
.featured-prev::after {
  font-size: 16px !important;
  font-weight: bold;
}

.featured-next {
  right: -20px !important;
}

.featured-prev {
  left: -20px !important;
}

@media (max-width: 768px) {
  .featured-next {
    right: 0px !important;
  }

  .featured-prev {
    left: 0px !important;
  }
}

/* New Why Choose Us Banner */
.why-banner-wrapper {
  background-color: #fff;
  min-height: 280px;
}

.why-banner-left {
  min-height: 320px;
}

@media (min-width: 992px) {
  .why-banner-overlay {
    background: linear-gradient(to right, rgba(30, 30, 30, 0.7) 0%, rgba(30, 30, 30, 0.3) 100%);
  }
}

@media (max-width: 991px) {
  .why-banner-overlay {
    background: linear-gradient(to right, rgba(30, 30, 30, 0.7) 0%, rgba(30, 30, 30, 0.3) 100%);
  }
}

.btn-know-more {
  color: #c49c5e !important;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background-color: #c49c5e;
  color: #fff !important;
}

.why-stat-item svg {
  transition: transform 0.3s ease;
}

.why-stat-item:hover svg {
  transform: scale(1.1);
}

/* Process Section */
.process-line {
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  border-top: 1px dashed #dcb989;
  z-index: 0;
}

.process-arrow {
  position: absolute;
  top: 28px;
  color: #dcb989;
  font-weight: 500;
  font-size: 16px;
  background: var(--bg-tertiary);
  padding: 0 8px;
  transform: translateX(-50%);
  z-index: 0;
}

.process-arrow-1 {
  left: 25%;
}

.process-arrow-2 {
  left: 50%;
}

.process-arrow-3 {
  left: 75%;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-icon-box {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #faeedb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover .process-icon-box {
  transform: translateY(-5px);
  border-color: #c49c5e;
}

.process-number {
  color: #c49c5e;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.process-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.85rem;
  color: #6c757d;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars i {
  color: #c49c5e;
  font-size: 0.9rem;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0;
}

.testi-prev,
.testi-next {
  width: 40px !important;
  height: 40px !important;
  background-color: #c49c5e;
  border-radius: 50%;
  color: #fff !important;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
}

.testi-prev {
  left: 0;
}

.testi-next {
  right: 0;
}

.testi-prev::after,
.testi-next::after {
  font-size: 16px !important;
  font-weight: bold;
}

.testi-prev:hover,
.testi-next:hover {
  background-color: #1a1a1a;
}

/* Pricing Cards */
.btn-outline-pkg {
  border: 1px solid #c49c5e;
  color: #c49c5e;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-pkg:hover {
  background: #c49c5e;
  color: #fff;
}

.pkg-card {
  transition: transform 0.3s ease;
}

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

/* ==========================================================================
   Decoration Services Page
   ========================================================================== */
.decor-hero-full {
  min-height: 100vh;
  background-color: #fdfbf7;
  position: relative;
  padding-top: 0;
  display: flex;
  align-items: center;
}

.decor-hero-content {
  padding: 150px 5% 80px 10%;
  width: 100%;
}

@media (min-width: 1400px) {
  .decor-hero-content {
    padding-left: calc((100vw - 1320px) / 2 + 15px);
  }
}

@media (max-width: 991px) {
  .decor-hero-content {
    padding: 120px 20px 40px;
  }

  .decor-hero-full {
    min-height: auto;
  }
}

.decor-hero-bg-img {
  position: relative;
  height: 100%;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .decor-hero-bg-img {
    min-height: 400px;
  }
}

/* Light Theme Navbar Override for Decoration Page */
.dark-navbar-page .navbar-premium:not(.scrolled) .nav-link {
  color: #1a1a1a !important;
}

.dark-navbar-page .navbar-premium:not(.scrolled) .nav-link::after {
  background-color: #1a1a1a;
}

.dark-navbar-page .navbar-premium:not(.scrolled) .navbar-brand img {
  filter: invert(1) brightness(0.2) sepia(1) hue-rotate(10deg) saturate(300%) contrast(1.5);
  /* Inverts white to black, then adds a brownish/gold tint to match the theme */
  /* Alternatively, just make it dark grey if gold is hard: */
  filter: brightness(0) opacity(0.85);
}

.dark-navbar-page .navbar-premium:not(.scrolled) .navbar-toggler {
  color: #1a1a1a;
}

.dark-navbar-page .navbar-premium:not(.scrolled) .btn-premium {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.dark-navbar-page .navbar-premium:not(.scrolled) .btn-premium::before {
  background-color: #fdfbf7;
}

.decor-hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: #1a2b3c;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0px;
}

.decor-hero-subtitle {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: #d4af37;
  margin-bottom: 25px;
  font-weight: 600;
}

.decor-hero-desc {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 90%;
}

.text-gold {
  color: #d4af37 !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.decor-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.decor-feature-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.decor-feature-item i {
  color: #d4af37;
  font-size: 1.5rem;
  margin-right: 10px;
}

.decor-services-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.decor-service-row {
  margin-bottom: 80px;
}

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

.decor-service-img-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 400px;
}

.decor-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Image Auto-Slider */
.decor-service-img-wrapper.auto-slider .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.decor-service-img-wrapper.auto-slider .slide-item.active {
  opacity: 1;
}

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

.decor-service-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.decor-service-content {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.decor-service-number {
  font-family: var(--font-heading);
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.decor-service-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.decor-service-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.decor-gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
}

.decor-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-decor-gallery {
  display: inline-block;
  border: 1px solid #e0e0e0;
  background: transparent;
  color: #d4af37;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.btn-decor-gallery:hover {
  background: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

@media (max-width: 991px) {
  .decor-hero-title {
    font-size: 2.5rem;
  }

  .decor-hero-subtitle {
    font-size: 2rem;
  }

  .decor-hero-img-wrapper {
    min-height: 300px;
    margin-top: 30px;
  }

  .decor-service-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .decor-service-row {
    margin-bottom: 50px;
  }
}