/* ==========================================================================
   Green Tara Makeup Artist - Complete 15-Section Luxury Masterpiece
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #041B15;
  --bg-dark-secondary: #082E24;
  --primary: #0F5E4B;
  --primary-glow: #18A07F;
  --secondary: #D4AF37;
  --secondary-glow: #F3E5AB;
  --secondary-dark: #A07F1A;
  --text-main: #FBF9F5;
  --text-muted: #CBD5E1;
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  
  --glass-card: rgba(8, 42, 33, 0.82);
  --glass-card-hover: rgba(14, 68, 54, 0.95);
  --glass-border: rgba(212, 175, 55, 0.32);
  
  --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 35px rgba(212, 175, 55, 0.45);
  --shadow-emerald: 0 15px 50px rgba(15, 94, 75, 0.6);
  
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Floating Gold Particle Canvas Background */
#gold-particles-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none;
}

/* DIRECTIONAL SECTION SCROLL REVEAL ANIMATIONS */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-from-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-from-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-from-bottom {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-from-bottom.revealed { opacity: 1; transform: translateY(0); }

.reveal-scale-up {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale-up.revealed { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px;
}

/* NAVBAR & STATIC BRAND LOGO */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
  background: rgba(4, 27, 21, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
  background: rgba(4, 27, 21, 0.96);
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.navbar-brand-logo {
  height: 56px;
  width: auto;
  border-radius: 12px;
  border: 1.5px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  background: #000000;
  object-fit: contain;
  display: block;
  transform: none !important;
  animation: none !important;
}

.footer-logo-img {
  height: 85px;
  width: auto;
  border-radius: 14px;
  border: 1.5px solid var(--secondary);
  margin-bottom: 16px;
  background: #000000;
  box-shadow: var(--shadow-gold);
  display: block;
  transform: none !important;
  animation: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

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

.nav-link:hover, .nav-link.active { color: var(--secondary-glow); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--secondary-glow); cursor: pointer; }

/* Metallic Gold Text Sweep Animation */
.section-title .highlight, .hero-title .highlight {
  background: linear-gradient(110deg, #D4AF37 0%, #FFFFFF 25%, #F3E5AB 50%, #D4AF37 75%, #AA8721 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5s linear infinite;
  font-style: italic;
}

@keyframes goldShimmer { to { background-position: 200% center; } }

/* Section Decorator Typography */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-glow);
  margin-bottom: 12px;
}

.section-tag::before, .section-tag::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}
.section-tag::after { background: linear-gradient(90deg, var(--secondary), transparent); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.text-center { text-align: center; }

/* Luxury Animated Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #083A2E 100%);
  color: #ffffff;
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(15, 94, 75, 0.5);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
  border-color: var(--secondary-glow);
}

.btn-outline {
  background: rgba(8, 42, 33, 0.6);
  backdrop-filter: blur(12px);
  color: var(--secondary-glow);
  border-color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: #041B15;
  font-weight: 700;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #041B15;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  animation: pulseGold 3s infinite alternate;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  100% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.7); }
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--secondary-glow);
}

.btn-insta {
  background: #0095f6;
  color: #ffffff; font-weight: 600; border: none;
  padding: 10px 28px; border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0, 149, 246, 0.4);
}
.btn-insta:hover {
  background: #1877f2; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 149, 246, 0.6);
}

/* HERO SECTION */
.hero {
  padding: 180px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image-wrapper { position: relative; z-index: 1; }

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-emerald);
  border: 2px solid var(--secondary);
  transition: transform 0.5s ease;
  background: #000000;
}

.hero-image-frame img {
  width: 100%; height: 580px;
  object-fit: contain;
  object-position: center;
  background: #000000;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image-frame img { transform: scale(1.05); }

.hero-badge-floating {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--secondary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.badge-profile-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-badge-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: #041B15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.hero-badge-text h4 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--secondary-glow); line-height: 1.2; }
.hero-badge-text p { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: left;
}

.hero-highlights {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px; margin-bottom: 36px; list-style: none;
}
.hero-highlights li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; text-align: left; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(212, 175, 55, 0.2); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; border: 1px solid var(--secondary); flex-shrink: 0; }

.hero-buttons { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-socials { display: flex; align-items: center; gap: 16px; }
.social-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.social-icons-list { display: flex; gap: 12px; list-style: none; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--glass-card); color: var(--secondary-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition-normal); border: 1px solid var(--glass-border);
}
.social-btn:hover { background: var(--secondary); color: #041B15; transform: translateY(-4px) rotate(10deg); box-shadow: var(--shadow-gold); }

/* STATISTICS SECTION */
.stats-section { margin-top: -30px; position: relative; z-index: 10; padding-bottom: 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: var(--glass-card); backdrop-filter: blur(20px);
  padding: 36px 24px; border-radius: var(--radius-md);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft);
  text-align: center; transition: var(--transition-normal); position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--secondary), var(--primary-glow)); }
.stat-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-gold); border-color: var(--secondary); background: var(--glass-card-hover); }
.stat-number { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: var(--secondary-glow); line-height: 1; margin-bottom: 8px; text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
.stat-label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

/* ABOUT SECTION */
.about-section { padding: 100px 0; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-emerald); border: 2px solid var(--secondary); }
.about-image-frame img { width: 100%; height: 540px; object-fit: cover; object-position: top center; }
.experience-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--glass-card); backdrop-filter: blur(20px); color: #fff;
  padding: 20px 28px; border-radius: var(--radius-md);
  border: 1.5px solid var(--secondary); box-shadow: var(--shadow-gold);
  animation: floatBadge 4s ease-in-out 2s infinite;
}
.experience-badge span { display: block; font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--secondary-glow); line-height: 1; }
.experience-badge p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

.about-content { text-align: left; }
.about-text-lead, .about-text-sub { font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 18px; text-align: left; }
.about-text-lead strong { color: var(--secondary-glow); }

.about-branch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 26px 0;
  width: 100%;
}

.branch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(8, 42, 33, 0.7);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  font-size: 0.94rem;
  color: var(--text-main);
  text-align: left;
}

.branch-icon {
  color: var(--secondary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.feature-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--glass-card); border-radius: var(--radius-sm); border: 1px solid var(--glass-border); transition: var(--transition-fast); text-align: left; }
.feature-card:hover { border-color: var(--secondary); transform: translateX(6px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.feature-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(212, 175, 55, 0.15); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; border: 1px solid var(--secondary); }
.profile-avatar-box { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--secondary); padding: 0; background: transparent; }
.feature-profile-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 50%; }
.feature-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--secondary-glow); line-height: 1.2; }
.feature-sub { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; font-weight: 400; }

/* SERVICES SECTION */
.services-section { padding: 100px 0; position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: var(--glass-card); backdrop-filter: blur(16px);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--glass-border);
  transition: var(--transition-normal); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-gold); border-color: var(--secondary); background: var(--glass-card-hover); }
.service-img-wrapper { position: relative; height: 360px; background: #08070c; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.8s ease; }
.service-card:hover .service-img-wrapper img { transform: scale(1.1); }

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  color: var(--secondary-glow);
  border: 1px solid var(--secondary);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.service-badge.gold {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #041B15;
  font-weight: 700;
  border: none;
}

.service-content { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; text-align: left; }
.service-title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--secondary-glow); margin-bottom: 10px; font-weight: 600; }
.service-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; flex-grow: 1; line-height: 1.6; }

.service-menu-box {
  background: rgba(4, 27, 21, 0.75);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 22px;
  text-align: left;
}

.menu-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 6px;
}

.service-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-menu-list li {
  font-size: 0.83rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.service-menu-list li i {
  color: var(--secondary);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.service-card .btn { width: 100%; margin-top: auto; }

/* PORTFOLIO GALLERY & LIGHTBOX MODAL */
.portfolio-section { padding: 100px 0; position: relative; }
.portfolio-filters { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; list-style: none; }
.filter-btn { padding: 10px 24px; border-radius: var(--radius-full); background: var(--glass-card); color: var(--text-muted); border: 1px solid var(--glass-border); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: var(--transition-fast); }
.filter-btn:hover, .filter-btn.active { background: var(--secondary); color: #041B15; font-weight: 700; border-color: var(--secondary); box-shadow: var(--shadow-gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 430px; box-shadow: var(--shadow-soft); border: 1px solid var(--glass-border); cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-item img.pos-top-15 { object-position: center 15%; }
.portfolio-item img.full-photo-fit { object-fit: contain; object-position: center; background: #041B15; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 27, 21, 0.94) 0%, rgba(0,0,0,0.15) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; opacity: 0; transition: opacity var(--transition-fast); }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--secondary); font-weight: 600; }
.portfolio-title { font-family: var(--font-heading); font-size: 1.55rem; color: #ffffff; margin-bottom: 12px; }
.view-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--secondary-glow); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Lightbox Modal */
.lightbox { position: fixed; inset: 0; background: rgba(3, 18, 14, 0.96); backdrop-filter: blur(20px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition-fast); }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-content { position: relative; max-width: 900px; max-height: 85vh; width: 90%; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 75vh; border-radius: var(--radius-sm); border: 2px solid var(--secondary); box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); }
.lightbox-caption { color: var(--secondary-glow); font-family: var(--font-heading); font-size: 1.5rem; margin-top: 14px; }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid var(--secondary); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: var(--transition-fast); }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--secondary); color: #041B15; }
.lightbox-close { top: 20px; right: 30px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* WHY CHOOSE US SECTION */
.why-us-section { padding: 100px 0; position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--glass-card); backdrop-filter: blur(16px); padding: 36px 24px; border-radius: var(--radius-md); border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); text-align: center; transition: var(--transition-normal); }
.why-card:hover { transform: translateY(-8px); border-color: var(--secondary); box-shadow: var(--shadow-gold); background: var(--glass-card-hover); }
.why-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(212, 175, 55, 0.15); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 22px auto; border: 1.5px solid var(--secondary); box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
.why-card h4 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--secondary-glow); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* BEFORE & AFTER SLIDER SECTION */
.before-after-section { padding: 100px 0; position: relative; }
.slider-container { max-width: 900px; margin: 0 auto; position: relative; height: 520px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-emerald); border: 3px solid var(--secondary); user-select: none; }
.image-before, .image-after { position: absolute; inset: 0; }
.image-before img, .image-after img { width: 100%; height: 100%; object-fit: cover; }
.image-after { width: 50%; overflow: hidden; border-right: 2px solid var(--secondary); }
.slider-handle { position: absolute; top: 0; left: 50%; width: 40px; height: 100%; margin-left: -20px; cursor: ew-resize; display: flex; align-items: center; justify-content: center; z-index: 10; }
.handle-line { position: absolute; width: 3px; height: 100%; background: var(--secondary); box-shadow: 0 0 12px var(--secondary); }
.handle-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--secondary); color: #041B15; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); z-index: 2; font-size: 1.15rem; animation: pulseHandle 2s infinite alternate; }

@keyframes pulseHandle { 0% { transform: scale(1); } 100% { transform: scale(1.1); box-shadow: 0 0 25px rgba(212, 175, 55, 0.8); } }

.slider-label { position: absolute; top: 20px; padding: 6px 20px; background: rgba(4, 27, 21, 0.85); backdrop-filter: blur(8px); border: 1px solid var(--secondary); color: var(--secondary-glow); font-family: var(--font-heading); font-size: 1.1rem; border-radius: var(--radius-full); z-index: 5; }
.label-before { right: 20px; } .label-after { left: 20px; }

/* BRIDAL PACKAGES SECTION */
.packages-section { padding: 100px 0; position: relative; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.package-card { background: var(--glass-card); backdrop-filter: blur(20px); border-radius: var(--radius-md); padding: 42px 34px; border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); position: relative; transition: var(--transition-normal); text-align: center; }
.package-card:hover { transform: translateY(-8px); border-color: var(--secondary); box-shadow: var(--shadow-gold); }
.package-card.featured { transform: scale(1.05); border: 2px solid var(--secondary); box-shadow: var(--shadow-gold); background: rgba(10, 52, 42, 0.92); z-index: 2; }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: #041B15; padding: 6px 24px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; box-shadow: 0 4px 18px rgba(212, 175, 55, 0.6); }
.package-name { font-family: var(--font-heading); font-size: 2.1rem; color: var(--secondary-glow); margin-bottom: 12px; }
.package-features { list-style: none; margin-bottom: 32px; text-align: left; }
.package-features li { padding: 10px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.12); display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.package-card .btn { width: 100%; }

/* TESTIMONIALS SECTION CAROUSEL */
.testimonials-section { padding: 100px 0; position: relative; }
.testimonial-carousel { max-width: 860px; margin: 0 auto; position: relative; }
.testimonial-slide { background: var(--glass-card); backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: 52px; border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); text-align: center; display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.bride-photo { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 20px auto; border: 3px solid var(--secondary); box-shadow: var(--shadow-gold); object-fit: cover; object-position: top center; }
.rating-stars { color: var(--secondary); font-size: 1.25rem; margin-bottom: 18px; }
.testimonial-quote { font-family: var(--font-heading); font-size: 1.55rem; font-style: italic; color: var(--secondary-glow); line-height: 1.45; margin-bottom: 26px; }
.bride-name { font-weight: 700; color: var(--text-main); font-size: 1rem; }
.bride-role { font-size: 0.85rem; color: var(--text-muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(212, 175, 55, 0.3); cursor: pointer; transition: var(--transition-fast); }
.carousel-dot.active { background: var(--secondary); width: 30px; border-radius: var(--radius-full); box-shadow: 0 0 12px var(--secondary); }

/* AUTHENTIC INSTAGRAM DARK PROFILE CARD & REELS */
.instagram-section { padding: 100px 0; position: relative; }

.insta-profile-card {
  background: #121212;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15); padding: 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  margin-bottom: 48px;
}

.insta-profile-header {
  display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 32px;
}

.insta-avatar-container { position: relative; flex-shrink: 0; }
.insta-avatar-ring {
  width: 140px; height: 140px; border-radius: 50%; padding: 4px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex; align-items: center; justify-content: center;
}
.insta-avatar-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top center; border: 4px solid #121212; }

.insta-details { flex-grow: 1; }
.insta-handle-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.insta-handle { font-size: 1.8rem; font-weight: 600; color: #ffffff; font-family: var(--font-body); }
.verified-badge { color: #0095f6; font-size: 1.25rem; }

.insta-stats-row { display: flex; align-items: center; gap: 40px; margin-bottom: 22px; flex-wrap: wrap; }
.insta-stat { font-size: 1rem; color: #f5f5f5; }
.insta-stat strong { color: #ffffff; font-weight: 700; font-size: 1.1rem; }

.insta-bio-box { font-size: 0.95rem; color: #f5f5f5; line-height: 1.6; }
.insta-bio-box .artist-title { font-weight: 600; color: #a8a8a8; font-size: 0.9rem; margin-bottom: 8px; }
.insta-bio-box p { margin-bottom: 6px; }
.insta-bio-box a.bio-link { color: #e0f1ff; font-weight: 600; }

.story-highlights-row { display: flex; gap: 24px; overflow-x: auto; padding: 16px 0; margin-bottom: 32px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.highlight-circle { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; width: 78px; cursor: pointer; }
.highlight-img-wrapper { width: 68px; height: 68px; border-radius: 50%; padding: 2px; border: 2px solid rgba(255,255,255,0.3); }
.highlight-img-wrapper img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.highlight-label { font-size: 0.78rem; color: #ffffff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }

.insta-feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insta-post-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; height: 380px;
  border: 1px solid rgba(255,255,255,0.1); transition: var(--transition-normal); background: #000000;
}
.insta-post-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000000;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.insta-post-overlay {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; opacity: 0; transition: opacity var(--transition-fast); color: #ffffff;
}
.insta-post-card:hover img { transform: scale(1.1); }
.insta-post-card:hover .insta-post-overlay { opacity: 1; }
.insta-post-metrics { display: flex; gap: 24px; font-size: 1.15rem; font-weight: 700; }

/* BOOKING FORM SECTION */
.booking-section { padding: 100px 0; position: relative; }
.booking-card { background: var(--glass-card); backdrop-filter: blur(24px); border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-soft); border: 1.5px solid var(--secondary); }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--secondary-glow); }
.form-control { padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid var(--glass-border); background: rgba(3, 18, 14, 0.85); font-size: 0.95rem; color: #ffffff; transition: var(--transition-fast); }
.form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3.5px rgba(212, 175, 55, 0.3); }

/* CONTACT SECTION & GOOGLE MAPS IFRAME */
.contact-section { padding: 100px 0; position: relative; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.contact-card { background: var(--glass-card); backdrop-filter: blur(20px); padding: 38px; border-radius: var(--radius-md); border: 1px solid var(--glass-border); text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition-normal); }
.contact-card:hover { transform: translateY(-6px); border-color: var(--secondary); }
.contact-icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(212, 175, 55, 0.15); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.55rem; margin: 0 auto 16px auto; border: 1.5px solid var(--secondary); }

.studio-info-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; background: var(--glass-card); backdrop-filter: blur(20px); border-radius: var(--radius-md); padding: 40px; border: 1.5px solid var(--secondary); align-items: center; }

.google-map-embed {
  position: relative; width: 100%; height: 320px;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1.5px solid var(--secondary); box-shadow: var(--shadow-gold);
}
.google-map-embed iframe { width: 100%; height: 100%; border: 0; filter: contrast(1.05) saturate(1.1); }

/* FAQ ACCORDION SECTION */
.faq-section { padding: 100px 0; position: relative; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--glass-card); border-radius: var(--radius-sm); border: 1px solid var(--glass-border); margin-bottom: 16px; padding: 0 24px; }
.faq-header { width: 100%; padding: 20px 0; background: none; border: none; display: flex; align-items: center; justify-content: space-between; text-align: left; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--secondary-glow); cursor: pointer; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.active .faq-body { max-height: 500px; padding-bottom: 20px; }

/* ULTRA-LUXURY FOOTER */
.footer {
  background: radial-gradient(circle at 50% 0%, #082E24 0%, #020C09 100%);
  color: #ffffff; padding: 90px 0 30px 0; border-top: 3px solid var(--secondary);
  position: relative;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.footer-logo-img {
  width: 92px; height: 92px; border-radius: 50%;
  object-fit: contain; background: #000000;
  border: 2px solid var(--secondary); box-shadow: var(--shadow-gold);
  margin-bottom: 16px; display: block;
}
.footer-social-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.footer-social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212, 175, 55, 0.12); border: 1.5px solid var(--secondary);
  color: var(--secondary-glow); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: var(--transition-fast); text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--secondary); color: #041B15;
  transform: translateY(-3px); box-shadow: var(--shadow-gold);
}
.footer-heading { font-family: var(--font-heading); font-size: 1.4rem; color: var(--secondary-glow); margin-bottom: 22px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--secondary-glow); transform: translateX(4px); display: inline-block; }

.footer-contact-info { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-info li { display: flex; items-center; gap: 12px; font-size: 0.9rem; color: var(--text-muted); }
.footer-contact-info i { color: var(--secondary); font-size: 1.1rem; margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 0.88rem; }

/* Toast Modal */
.toast-modal { position: fixed; bottom: 30px; right: 30px; background: var(--bg-dark-secondary); color: #fff; padding: 18px 30px; border-radius: var(--radius-md); border: 1px solid var(--secondary); box-shadow: var(--shadow-gold); z-index: 3000; transform: translateY(100px); opacity: 0; transition: all var(--transition-normal); }
.toast-modal.show { transform: translateY(0); opacity: 1; }

@media (max-width: 992px) {
  .hero-grid, .about-grid, .studio-info-wrapper { grid-template-columns: 1fr; }
  .stats-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .portfolio-grid, .packages-grid, .contact-grid, .insta-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-profile-header { flex-direction: column; text-align: center; }
  .insta-stats-row { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .services-grid, .portfolio-grid, .packages-grid, .contact-grid, .booking-form, .insta-feed-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
