/* Luxury Event Website Styles */

:root {
  --primary-gold: #d4af37;
  --primary-dark: #b8941f;
  --accent-rose: #e91e63;
  --accent-purple: #8e44ad;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --white: #ffffff;
  --gradient-luxury: linear-gradient(135deg, #d4af37 0%, #e91e63 50%, #8e44ad 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  --shadow-luxury: 0 20px 60px rgba(212, 175, 55, 0.3);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 35px;
  width: auto;
  border-radius: 5px;
  max-width: 50px;
  object-fit: contain;
}

.logo-text {
  color: var(--dark);
}

.logo-accent {
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-luxury);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('event1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  will-change: transform;
  transition: opacity 0.75s ease-in-out;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(142, 68, 173, 0.4) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 1s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 18px 35px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-luxury);
  color: var(--white);
  box-shadow: var(--shadow-luxury);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 80px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-5px);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd23f 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><ellipse cx="15" cy="20" rx="3" ry="4" fill="rgba(255,255,255,0.15)" opacity="0.8"/><ellipse cx="85" cy="40" rx="2" ry="3" fill="rgba(255,255,255,0.12)" opacity="0.6"/><ellipse cx="25" cy="70" rx="2.5" ry="3.5" fill="rgba(255,255,255,0.18)" opacity="0.7"/></svg>');
  animation: balloonFloat 25s infinite linear;
}

@keyframes balloonFloat {
  0% { 
    transform: translateY(100vh) translateX(0) rotate(0deg); 
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  90% { 
    opacity: 1;
  }
  100% { 
    transform: translateY(-20vh) translateX(50px) rotate(10deg); 
    opacity: 0;
  }
}

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

.services .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.services .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 40px 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  color: var(--dark);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: cardRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-card:hover {
  transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255,255,255,0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
  animation: iconFloat 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotateY(180deg);
  filter: drop-shadow(0 8px 25px rgba(255,107,53,0.4));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.5s; }
.service-card:nth-child(3) .service-icon { animation-delay: 1s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.5s; }

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover h3 {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.service-card p {
  color: var(--dark);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.service-card:hover p {
  opacity: 1;
  transform: translateY(-2px);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-luxury);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 20px;
}

.service-card:hover .service-overlay {
  opacity: 0.98;
}

.service-details {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.service-card:hover .service-details {
  transform: translateY(0);
}

.service-details h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-details ul {
  list-style: none;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-details li {
  margin-bottom: 5px;
  opacity: 0.9;
}

.service-details li::before {
  content: '✓';
  margin-right: 8px;
  font-weight: bold;
}

.service-btn {
  background: var(--white);
  color: var(--dark);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: var(--primary-gold);
  color: white;
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: block !important;
  visibility: visible !important;
}

.testimonials .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.testimonials .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  color: white;
}

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

.stars {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.9);
}

.client-info strong {
  display: block;
  color: white;
  font-weight: 700;
  margin-bottom: 5px;
}

.client-info span {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Stats */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
  display: block !important;
  visibility: visible !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  opacity: 0.9;
}

/* Timeline */
.timeline {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: block !important;
  visibility: visible !important;
}

.timeline .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.timeline .section-subtitle {
  color: rgba(255,255,255,0.9);
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-luxury);
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 25px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.timeline-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.timeline-content p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-size: 1rem;
}

/* Gallery Section */
.section {
  padding: 120px 0;
  background: #1a1a1a;
  color: white;
  display: block !important;
  visibility: visible !important;
}

.section .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 60px;
}

.section .section-subtitle {
  color: var(--white);
  opacity: 0.7;
  text-align: center;
}

/* Music Controls */
.music-controls {
  text-align: center;
  margin-top: 40px;
}

.music-btn {
  background: var(--gradient-luxury);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.music-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.music-btn.playing {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.music-icon {
  font-size: 1.2rem;
  animation: musicPulse 2s ease-in-out infinite;
}

.music-btn.playing .music-icon {
  animation: musicSpin 1s linear infinite;
}

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

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



/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
}

.whatsapp-icon {
  font-size: 28px;
  color: white;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 40px 0;
  display: block !important;
  visibility: visible !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-details {
    padding: 10px;
  }
  
  .service-details h4 {
    font-size: 1rem;
  }
  
  .service-details ul {
    font-size: 0.8rem;
  }
  
  .service-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 20px 0;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .hero {
    height: 100vh;
    padding: 0 20px;
  }
  
  .hero-bg {
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 16px 30px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services, .gallery, .contact {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-card {
    padding: 40px 25px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-item {
    min-height: 250px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 15px 18px;
    font-size: 16px;
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
  }
  
  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    font-size: 24px;
  }
  
  .music-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .contact-item {
    font-size: 1rem;
  }
}
/* --- Enhanced Gallery & Lightbox --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  background: #f8f9fa;
}

.gallery-item:nth-child(3n+1) img { height: 320px; }
.gallery-item:nth-child(3n+2) img { height: 280px; }
.gallery-item:nth-child(3n+3) img { height: 360px; }

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  background: #f0f0f0;
}

.gallery-item img[src=""],
.gallery-item img:not([src]),
.gallery-item img[src="#"] {
  background: linear-gradient(45deg, #e0e0e0 25%, transparent 25%), 
              linear-gradient(-45deg, #e0e0e0 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #e0e0e0 75%), 
              linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(212,175,55,0.1), rgba(233,30,99,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  line-height: 1;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox .nav:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 36px;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox .close:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-item:nth-child(3n+1) img,
  .gallery-item:nth-child(3n+2) img,
  .gallery-item:nth-child(3n+3) img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .lightbox .nav {
    font-size: 28px;
    padding: 12px 16px;
  }
  
  .lightbox .close {
    font-size: 28px;
    top: 20px;
    right: 20px;
  }
  
  .lightbox .prev { left: 20px; }
  .lightbox .next { right: 20px; }
}



/* --- Patch: Defensive logo sizing for production hosting --- */
header .logo img,
.logo img,
img.logo,
.logo-img {
  display: block !important;
  height: 56px !important;   /* adjust if you want 48–64px */
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}
@media (max-width: 480px) {
  header .logo img,
  .logo img,
  img.logo,
  .logo-img {
    height: 48px !important;
  }
}


/* ===== Best Contact Section ===== */
.contact-enhanced {
  padding: 100px 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('gallery70.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  height: fit-content;
}

.contact-details-card {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(15px);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.contact-card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.contact-card-header p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.stat {
  background: rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
}

.stat-num {
  display: block;
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.contact-rows {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 18px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 12px;
}

.contact-row a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-row a:hover {
  color: #ffd700;
}

.contact-icon {
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.whatsapp-row {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  background: rgba(255,255,255,0.2);
  padding: 8px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.whatsapp-link {
  color: white;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-btn {
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.social-btn:hover {
  background: rgba(255,255,255,0.3);
}

.contact-form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  background: #ffffff;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 10px;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-card {
    padding: 30px;
  }
  
  .contact-card-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
  
  .contact-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 25px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
