:root {
  --bg-primary: #0a0b14;
  --bg-secondary: #111318;
  --text-primary: #ffffff;
  --text-secondary: #a8b3d1;
  --text-muted: #6b7688;
  --accent-gold: #d4af37;
  --accent-rose: #ff6b9d;
  --accent-cyan: #00e5ff;
  --accent-purple: #8b5cf6;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-light: rgba(212, 175, 55, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.3);
  --shadow-heavy: rgba(0, 0, 0, 0.6);
  --border-radius: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ENHANCED BACKGROUND SYSTEM ===== */
.bg-system {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 90%,
      rgba(255, 107, 157, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
  0% {
    filter: hue-rotate(0deg) saturate(100%);
  }

  100% {
    filter: hue-rotate(15deg) saturate(120%);
  }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -9;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.8) 40%,
    transparent 70%
  );
}

.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -8;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.3)"/><circle cx="80" cy="40" r="0.5" fill="rgba(139,92,246,0.4)"/><circle cx="60" cy="80" r="0.8" fill="rgba(255,107,157,0.2)"/></svg>')
    repeat;
  animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-100px);
  }
}

/* ===== ENHANCED NAVIGATION ===== */
.navbar-custom {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(10, 11, 20, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 12px 24px;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  background: rgba(10, 11, 20, 0.95);
  box-shadow: 0 8px 32px var(--shadow-medium);
}

.navbar-brand-custom {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
  transition: width 0.3s ease;
}

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

/* ===== Mobile Navbar Toggle ===== */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile layout */
@media (max-width: 768px) {
  .nav-toggle {
    display: block; /* show hamburger on mobile */
  }

  .nav-links {
    display: none; /* hide links initially */
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(10, 11, 20, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px var(--shadow-medium);
  }

  .nav-links.show {
    display: flex; /* show links when toggled */
  }
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 60px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: -1;
  filter: saturate(120%) contrast(110%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #d4af37 25%,
    #ff6b9d 50%,
    #8b5cf6 75%,
    #00e5ff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== ENHANCED BUTTONS ===== */
.btn-premium {
  position: relative;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
  color: white;
}

.btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  z-index: -1;
  transition: var(--transition);
}

.btn-premium:hover::before {
  transform: scale(1.05);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
  color: var(--text-primary);
}

.btn-outline-premium {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline-premium:hover {
  background: var(--glass-border);
  color: var(--text-primary);
  box-shadow: 0 8px 32px var(--shadow-light);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f1e, #1a1a2e);
  color: #fff;
}

.about-photo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: auto;
  background: conic-gradient(
    from 0deg,
    #ffcc00,
    #ff6699,
    #9966ff,
    #00ccff,
    #ffcc00
  );
  padding: 6px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  animation: float 4s ease-in-out infinite;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-heading span {
  color: #ffcc00;
}

/* Stats */
.stat-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #ffcc00;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 120px;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.stat-card h3 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #ffcc00;
}

.stat-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* Glow Hover */
.glow:hover {
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  transform: translateY(-5px);
}

/* Buttons */
.btn-premium {
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffcc00, #ff6699);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffcc00;
  color: #ffcc00;
}

/* ===== ENHANCED SECTIONS ===== */
.section-premium {
  padding: 120px 0;
  position: relative;
}

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

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ENHANCED PACKAGE CARDS ===== */
/* ...existing code... */

.package-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  min-height: 340px;
  font-size: 1.08rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    transparent
  );
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.package-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 0;
}

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

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-medium);
  border-color: var(--accent-gold);
}

.package-tier {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.tier-silver {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.2),
    rgba(192, 192, 192, 0.1)
  );
  color: #c0c0c0;
  border: 1px solid rgba(192, 192, 192, 0.3);
}

.tier-gold {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(212, 175, 55, 0.1)
  );
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.tier-diamond {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(0, 229, 255, 0.1)
  );
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0.8rem;
  font-size: 1.01em;
  width: 100%;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.01em;
}

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

.package-features li i {
  color: var(--accent-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.see-more-btn {
  width: 100%;
  font-size: 1.05em;
  margin-top: auto;
  border-radius: 8px;
  padding: 0.6em 0;
}

@media (max-width: 991px) {
  .package-card {
    min-height: 0;
    font-size: 1em;
    padding: 1.2rem 1rem;
}
}

/* ===== ENHANCED GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  color: var(--text-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

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

/* Tablets: 2 per row */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: var(--transition);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold);
}

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

/* Image loading states */
.gallery-item img:not([src]) {
  opacity: 0;
}

.gallery-item img[src] {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.4),
    transparent,
    rgba(212, 175, 55, 0.3)
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Image skeleton loading - removed shimmer effect */
.gallery-item::before {
  display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--accent-rose);
  transform: scale(1.1);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(20px);
  height: 100%;
}

.form-control-premium {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control-premium:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  outline: none;
  color: var(--text-primary);
}

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

/* ===== FLOATING ACTION BUTTON ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

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

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .navbar-custom {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 16px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-section {
    padding: 100px 15px 40px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-premium {
    padding: 14px 24px;
  }

  .section-premium {
    padding: 80px 0;
  }

  .package-card {
    padding: 32px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .footer-premium .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top: 3px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== FOOTER STYLING ===== */
.footer-premium {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 10px 0px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-premium .navbar-brand-custom {
  font-size: 1.8rem;
}

.footer-premium .list-unstyled li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-premium .list-unstyled li a:hover {
  color: var(--accent-gold);
}

.social-icons-list {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.social-icon-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 32px var(--shadow-light);
}

.social-icon-btn.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  border-color: #d6249f;
}

.social-icon-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-icon-btn.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* Communication Section */
.communication {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #25d366;
}

.btn-insta {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-insta:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(221, 42, 123, 0.9);
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff8c00;
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.8);
}

/* ===== IMAGE OPTIMIZATION ===== */
img {
  max-width: 100%;
  height: auto;
}

/* Progressive image loading */
.gallery-item img {
  filter: blur(0px);
  transition: filter 0.3s ease;
}

.gallery-item img[loading="lazy"] {
  filter: blur(2px);
}

.gallery-item img[loading="lazy"][src] {
  filter: blur(0px);
}

/* Image error handling */
.gallery-item img:not([src]) {
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery-item img:not([src])::after {
  content: 'Image loading...';
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.gallery-item {
  will-change: transform;
  contain: layout style paint;
}

.gallery-item img {
  will-change: transform;
  contain: layout style paint;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .gallery-item::before {
    animation: none;
  }
}