@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Reset & Variables */
:root {
  --primary: #7d0617;        /* Royal Maroon */
  --primary-dark: #4d000b;   /* Deep Sanctum Maroon */
  --secondary: #ff6a00;      /* Festive Saffron */
  --secondary-dark: #cc5200; /* Deep Saffron */
  --gold: #d4af37;           /* Temple Gold */
  --gold-dark: #aa841e;      /* Burnished Gold */
  --gold-light: #f5e2a3;     /* Golden Glow */
  --bg-cream: #fbf9f4;       /* Traditional Off-White */
  --bg-dark: #1f0105;        /* Royal Dark Mode background */
  --text-dark: #2a2223;      /* Soft Charcoal Black */
  --text-light: #fbf9f4;     /* Cream Text */
  --text-muted: #7d6b6d;     /* Muted Rose-Grey */
  
  --font-title: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
  
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(77, 0, 11, 0.12);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
}

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

.text-saffron {
  color: var(--secondary) !important;
}

/* Premium Traditional Elements & Border Patterns */
.maratha-border {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 15px,
    var(--primary) 15px,
    var(--primary) 30px,
    var(--secondary) 30px,
    var(--secondary) 45px
  );
  position: relative;
  width: 100%;
}

/* Mandir Arch and Floral Garland Silhouette divider */
.temple-arch-divider {
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,18 200,0 300,12 C400,24 500,0 600,18 C700,0 800,24 900,12 C1000,0 1050,18 1200,0 L1200,24 L0,24 Z' fill='%237d0617'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  width: 100%;
  transform: rotate(180deg);
}

.temple-arch-divider.bottom {
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,18 200,0 300,12 C400,24 500,0 600,18 C700,0 800,24 900,12 C1000,0 1050,18 1200,0 L1200,24 L0,24 Z' fill='%23fbf9f4'/%3E%3C/svg%3E");
}

/* Marigold (Genda Phool) Garland Decor */
.marigold-garland {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}
.marigold-flower {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, var(--secondary) 40%, var(--gold) 80%);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 106, 0, 0.6);
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}
.marigold-flower::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
}

/* Keyframes for glowing and animations */
@keyframes glow {
  0% { transform: scale(1); box-shadow: 0 0 3px rgba(255, 106, 0, 0.4); }
  100% { transform: scale(1.1); box-shadow: 0 0 8px rgba(255, 106, 0, 0.8); }
}

@keyframes diyaGlow {
  0% { filter: drop-shadow(0 0 3px var(--gold)); }
  100% { filter: drop-shadow(0 0 12px var(--secondary)); }
}

@keyframes petalFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(105vh) rotate(360deg);
    opacity: 0;
  }
}

/* Language Selection Header style */
.lang-selector {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  padding: 2px;
  backdrop-filter: blur(5px);
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-light);
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 18px;
  transition: var(--transition-fast);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 600;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(77, 0, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition-smooth);
}
header.scrolled {
  background: rgba(31, 1, 5, 0.98);
  box-shadow: var(--shadow-lg);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  border: 2px solid var(--primary-dark);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}
.logo-subtitle {
  color: var(--secondary);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}
nav ul li a:hover {
  color: var(--gold);
}
nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
}

/* Premium Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: linear-gradient(rgba(31, 1, 5, 0.65), rgba(77, 0, 11, 0.85)), 
              url('images/hero.png') no-repeat center center/cover;
  overflow: hidden;
  text-align: center;
  color: var(--text-light);
}

.hero-overlay-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-overlay-decor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, rgba(31, 1, 5, 0.9) 0%, transparent 100%);
}

/* Petals Falling Canvas / Container */
.petals-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #ff9d00 30%, #ff5e00 80%);
  border-radius: 50% 0 50% 50%;
  animation: petalFall 10s linear infinite;
  opacity: 0;
}

.hero-content {
  max-width: 900px;
  z-index: 3;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: center;
  align-items: center;
  flex-direction: column;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-tagline::before, .hero-tagline::after {
  content: '🚩';
  font-size: 16px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

.hero h1 span {
  display: block;
  font-size: 28px;
  color: var(--gold-light);
  margin-top: 10px;
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 2px;
}

.hero p {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 40px;
  color: #ebdcd5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-weight: 300;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-secondary {
  background: rgba(125, 6, 23, 0.75);
  color: var(--text-light);
  border-color: var(--gold);
  backdrop-filter: blur(5px);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(125, 6, 23, 0.95);
  border-color: var(--gold-light);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.2);
}
.btn-accent {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.6);
}

/* Sections Base Styling */
.section {
  padding: 100px 20px;
  position: relative;
}
.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.section-dark h2 {
  color: var(--gold-light);
}
.section-dark p {
  color: #ebdcd5;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
}
.section-dark .section-header p {
  color: #ae9da0;
}

/* About Us Section */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text {
  animation: fadeInLeft 1s ease;
}
.about-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary);
}
.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
}
.about-highlight-box {
  background: linear-gradient(135deg, rgba(125, 6, 23, 0.05), rgba(212, 175, 55, 0.05));
  border-left: 4px solid var(--gold);
  padding: 20px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-top: 30px;
}
.about-highlight-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-img-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}
.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.about-img-wrapper:hover img {
  transform: scale(1.08);
}
.about-img-wrapper:nth-child(2) {
  margin-top: 30px;
}
.about-img-wrapper:nth-child(1) {
  margin-bottom: 30px;
}

/* Service Packages Section & Cards */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--bg-cream);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.6);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon-banner {
  height: 160px;
  background-color: var(--primary-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card:nth-child(1) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/hero.png') center/cover; }
.service-card:nth-child(2) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/reception.png') center/cover; }
.service-card:nth-child(3) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/haldi.png') center/cover; }
.service-card:nth-child(4) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/hero.png') center/cover; }
.service-card:nth-child(5) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/reception.png') center/cover; }
.service-card:nth-child(6) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/haldi.png') center/cover; }
.service-card:nth-child(7) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/hero.png') center/cover; }
.service-card:nth-child(8) .service-icon-banner { background: linear-gradient(rgba(77,0,11,0.5), rgba(77,0,11,0.8)), url('images/haldi.png') center/cover; }

.service-icon-overlay {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(251, 249, 244, 0.95);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon-overlay {
  transform: scale(1.1) rotate(15deg);
  background: var(--gold-light);
}
.service-info {
  padding: 25px;
}
.service-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.service-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-more-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}
.service-more-btn:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

/* Festival Decoration Packages */
.packages-section {
  background: linear-gradient(to bottom, #1f0105, #330209);
  padding: 100px 20px;
}
.packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.package-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold);
}
.package-card.popular {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.package-card.popular::before {
  background: var(--secondary);
}
.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}
.package-card h3 {
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.package-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
}
.package-price span {
  font-size: 14px;
  font-weight: 300;
  color: #ebdcd5;
}
.package-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}
.package-features li {
  font-size: 14px;
  color: #ebdcd5;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '✔';
  color: var(--gold);
  font-weight: bold;
}
.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.15);
  border-color: var(--gold-light);
}

/* Why Choose Us Section */
.why-section {
  background: var(--bg-cream);
}
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.why-item {
  display: flex;
  gap: 15px;
}
.why-icon {
  width: 45px;
  height: 45px;
  background: rgba(125, 6, 23, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px dashed var(--gold);
}
.why-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--primary-dark);
}
.why-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.why-showcase {
  border: 4px solid var(--gold);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 380px;
}
.why-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Before / After Slider Section */
.slider-section {
  background: #fdfdfd;
}
.slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  user-select: none;
}
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-before {
  z-index: 1;
}
.slider-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}
.slider-after img {
  width: 800px; /* Must match the max-width of wrapper to prevent distortion */
  max-width: none;
}
.slider-bar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--gold-light);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  pointer-events: none;
}
.slider-label {
  position: absolute;
  bottom: 20px;
  background: rgba(77, 0, 11, 0.85);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 4;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
}
.slider-label.before-label {
  right: 20px;
}
.slider-label.after-label {
  left: 20px;
}

/* Gallery Showcase & Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--bg-cream);
  border: 1px solid rgba(125, 6, 23, 0.15);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(77, 0, 11, 0.9), rgba(255, 106, 0, 0.2));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition-smooth);
}
.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h4 {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 5px;
}
.gallery-overlay p {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 1, 5, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border: 3px solid var(--gold);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 36px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  color: var(--text-light);
  font-size: 18px;
  font-family: var(--font-title);
  text-align: center;
  width: 100%;
}

/* Video Showcase Section */
.video-section {
  background: linear-gradient(rgba(31, 1, 5, 0.8), rgba(31, 1, 5, 0.9)), 
              url('images/reception.png') no-repeat center center/cover;
  text-align: center;
  color: var(--text-light);
}
.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  transition: var(--transition-smooth);
}
.video-play-btn::before {
  content: '';
  border-left: 20px solid var(--primary-dark);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.8);
}
.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

/* Process Section */
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: dashed var(--gold);
  z-index: 1;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.process-step:hover .process-number {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.process-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.process-step p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-cream);
}
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 15px;
}
.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
}
.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.client-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--primary-dark);
}
.client-info p {
  font-size: 12px;
  color: var(--text-muted);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.dot {
  width: 10px;
  height: 10px;
  background: rgba(125, 6, 23, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}
.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* Service Areas Section (SVG interactive map) */
.map-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.svg-map-wrapper {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 20px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-md);
  position: relative;
}
.svg-map {
  width: 100%;
  height: auto;
  max-height: 400px;
}
/* Style for SVG districts */
.map-district {
  fill: #f5f2eb;
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: var(--transition-fast);
  cursor: pointer;
}
.map-district.active-coverage {
  fill: rgba(255, 106, 0, 0.15);
  stroke: var(--secondary);
  stroke-width: 2;
}
.map-district.active-coverage:hover, .map-district.selected {
  fill: var(--secondary);
  stroke: var(--gold-dark);
  filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.5));
}
.map-pin {
  fill: var(--primary);
  stroke: var(--gold-light);
  stroke-width: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.map-pin:hover {
  fill: var(--secondary);
  transform: scale(1.2);
}
.area-details {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.area-details h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.area-details p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}
.area-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--bg-cream);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}
.area-list li:hover, .area-list li.active {
  background: var(--primary);
  color: white;
  border-color: var(--gold);
}

/* Call To Action Banner */
.cta-banner {
  background: linear-gradient(rgba(77, 0, 11, 0.9), rgba(31, 1, 5, 0.95)), 
              url('images/hero.png') no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}
.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: 32px;
  color: var(--gold-light);
  margin-bottom: 15px;
}
.cta-banner p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ebdcd5;
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 20px 20px;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h3 {
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}
.footer-col p {
  color: #ae9da0;
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: #ae9da0;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.footer-contact {
  list-style: none;
}
.footer-contact li {
  font-size: 14px;
  color: #ae9da0;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
.footer-contact li span {
  color: var(--gold);
}
.footer-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 150px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  font-size: 13px;
  color: #7d6b6d;
}

/* Floating WhatsApp Chat Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}
.whatsapp-popover {
  width: 280px;
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  margin-bottom: 15px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: fadeInUp 0.4s ease;
}
.whatsapp-popover.active {
  display: flex;
}
.whatsapp-popover-header {
  background: var(--primary-dark);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--gold);
}
.whatsapp-popover-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
}
.whatsapp-popover-body {
  padding: 15px;
  background: #efeae2;
  font-size: 13px;
}
.whatsapp-popover-msg {
  background: white;
  padding: 10px;
  border-radius: 0 8px 8px 8px;
  max-width: 90%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.whatsapp-popover-footer {
  padding: 10px 15px;
  background: white;
  display: flex;
}
.whatsapp-send-link {
  width: 100%;
  background: #25d366;
  color: white;
  border-radius: 20px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Booking Modal Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 1, 5, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}
.modal-container {
  background: var(--bg-cream);
  border: 3px solid var(--gold);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-header {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold);
}
.modal-header h3 {
  color: var(--gold-light);
  font-size: 20px;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.modal-close:hover {
  color: var(--gold);
}
.modal-body {
  padding: 30px;
}

/* Booking Form Elements */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group-full {
  grid-column: span 2;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(125, 6, 23, 0.2);
  font-family: var(--font-body);
  font-size: 14px;
  background: white;
  transition: var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.booking-form-submit {
  grid-column: span 2;
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
}

/* Form Success & Feedback */
.form-success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.4s ease;
}
.form-success-icon {
  font-size: 50px;
  color: #25d366;
  margin-bottom: 20px;
}
.form-success-msg h4 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.form-success-msg p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile First Responsive Styles */
@media (max-width: 992px) {
  .about-container, .why-container, .map-container, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrapper:nth-child(2) {
    margin-top: 0;
  }
  .about-img-wrapper:nth-child(1) {
    margin-bottom: 0;
  }
  .why-showcase {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 15px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--primary-dark);
    flex-direction: column;
    padding: 40px 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
    border-right: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
  }
  nav.active ul {
    left: 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  .hero h1 span {
    font-size: 20px;
  }
  .hero p {
    font-size: 15px;
  }
  .slider-wrapper {
    height: 280px;
  }
  .slider-after img {
    width: 100%;
    height: 280px;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .form-group-full, .booking-form-submit {
    grid-column: span 1;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-popover {
    width: 250px;
  }
}
