/* NEPTUNE BEAUTY STUDIO - LUXURY AESTHETICS & ANIMATION DESIGN SYSTEM */

:root {
  --bg-dark: #030712;
  --bg-card: rgba(8, 17, 36, 0.65);
  --bg-card-hover: rgba(14, 28, 58, 0.85);
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-gold: #e2c275;
  --accent-gold-glow: rgba(226, 194, 117, 0.4);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-gold: #fef08a;
  --border-glass: rgba(0, 242, 254, 0.18);
  --border-gold: rgba(226, 194, 117, 0.3);
  --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
  --shadow-gold-glow: 0 0 30px rgba(226, 194, 117, 0.3);
  --font-heading: 'Cinzel', serif;
  --font-display: 'Italiana', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* COSMIC CANVAS BACKGROUND */
#cosmic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* UTILITY CLASSES */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

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

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: var(--shadow-glow);
}

.glass-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.glass-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.08);
}

/* BUTTON SYSTEM */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #030712;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}

.btn-primary-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #030712;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 600;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.glow-effect:hover::after {
  opacity: 1;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.w-100 { width: 100%; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: linear-gradient(90deg, #091730, #142850, #091730);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gold);
  z-index: 1001;
  position: relative;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 194, 117, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(226, 194, 117, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 194, 117, 0); }
}

.promo-code {
  background: rgba(226, 194, 117, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.claim-btn {
  background: var(--accent-gold);
  color: #030712;
  border: none;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
}

/* HEADER & NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
  transition: padding var(--transition-fast);
}

.nav-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 12px rgba(226, 194, 117, 0.4);
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 5px;
  color: #fff;
  display: block;
  text-transform: uppercase;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  margin-top: -2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.badge-live {
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sound-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #fff;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 120px 0 80px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--accent-gold);
  border-color: var(--border-gold);
  margin-bottom: 24px;
}

.star-sparkle {
  color: var(--accent-cyan);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.play-icon {
  color: var(--accent-cyan);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats-row .stat-item {
  padding: 16px 24px;
  border-radius: var(--radius-md);
}

.stat-number, .stat-plus, .stat-rating {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--accent-cyan);
}

.stat-rating {
  color: var(--accent-gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border-color: var(--border-gold);
}

.visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-visual-card:hover .hero-img {
  transform: scale(1.04);
}

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.95) 0%, transparent 100%);
  padding: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.treatment-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.treatment-highlight p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-tag {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-top: 6px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 6px;
}

.btn-glass-sm {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 60px;
}

.sub-heading {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* TREATMENTS CATALOG */
.treatment-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #030712;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.treatment-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.card-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.card-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.card-features {
  list-style: none;
  margin-bottom: 24px;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.btn-outline-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border-glass);
  color: #fff;
  cursor: pointer;
}

/* BEFORE & AFTER SLIDER */
.comparison-container {
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.comparison-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.comp-tab {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.85rem;
}

.comp-tab.active {
  background: var(--accent-gold);
  color: #030712;
  font-weight: 700;
}

.image-comparison-slider {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.img-after, .img-before {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.img-before {
  width: 960px; /* matched max width */
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.handle-circle {
  width: 44px;
  height: 44px;
  background: #030712;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

.badge-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 4px;
  z-index: 5;
}

.label-before { left: 20px; color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.4); }
.label-after { right: 20px; color: var(--accent-cyan); border: 1px solid var(--border-glass); }

.comp-details-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 20px;
}

.comp-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.comp-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FOUNDER / OWNER SPOTLIGHT */
.owner-card {
  padding: 60px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  border-color: var(--border-gold);
}

.owner-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold-glow);
}

.owner-portrait {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.owner-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.exp-years {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.exp-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.owner-name {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-sub-gold {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--accent-gold);
  -webkit-text-fill-color: var(--accent-gold);
}

.pillars-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 28px 0;
}

.pillar-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.pillar-icon {
  font-size: 1.2rem;
}

.brand-posters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.poster-card {
  overflow: hidden;
  cursor: pointer;
}

.poster-img-wrapper {
  position: relative;
  height: 340px;
  overflow: hidden;
}

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

.poster-card:hover .poster-img-wrapper img {
  transform: scale(1.06);
}

.poster-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.zoom-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.poster-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.owner-title {
  font-size: 1.05rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 20px;
}

.owner-bio {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.owner-quote {
  font-style: italic;
  padding: 16px 20px;
  border-left: 3px solid var(--accent-gold);
  background: rgba(226, 194, 117, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.95rem;
  color: var(--text-gold);
  margin-bottom: 24px;
}

.owner-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.cred-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-main);
}

.owner-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
  color: #fff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

/* INSTAGRAM REELS SHOWCASE */
.reels-section {
  position: relative;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.pulse-red {
  animation: blink 1s infinite alternate;
}

@keyframes blink { 0% { opacity: 0.3; } 100% { opacity: 1; } }

.reels-filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.reel-filter {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.85rem;
}

.reel-filter.active {
  background: var(--accent-cyan);
  color: #030712;
  font-weight: 700;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.reel-card {
  overflow: hidden;
  cursor: pointer;
}

.reel-media-wrapper {
  position: relative;
  height: 440px;
  overflow: hidden;
}

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

.reel-card:hover .reel-cover {
  transform: scale(1.05);
}

.reel-overlay-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reel-play-btn {
  width: 60px;
  height: 60px;
  background: rgba(0, 242, 254, 0.9);
  color: #030712;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
  transition: transform var(--transition-fast);
}

.reel-card:hover .reel-play-btn {
  transform: scale(1.15);
}

.reel-views {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.reel-tags {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.reel-meta {
  padding: 20px;
}

.reel-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
}

.reel-caption {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

.reel-stats-bar {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* QUIZ SECTION */
.quiz-box {
  padding: 60px;
  max-width: 840px;
  margin: 0 auto;
}

.quiz-steps-wrapper {
  margin-top: 40px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.step-question {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 30px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.quiz-opt-btn {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.quiz-opt-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
}

.opt-icon { font-size: 2rem; }
.opt-title { font-weight: 600; font-size: 0.95rem; text-align: center; }

.match-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #030712;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.result-package-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--accent-cyan);
}

.voucher-box {
  background: rgba(226, 194, 117, 0.1);
  border: 1px dashed var(--accent-gold);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.voucher-label { display: block; font-size: 0.8rem; color: var(--text-muted); }
.voucher-code { font-size: 1.8rem; font-family: var(--font-display); color: var(--accent-gold); letter-spacing: 2px; display: block; margin: 4px 0; }

/* PRICE CALCULATOR */
.calc-wrapper {
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calc-options-col h3, .calc-summary-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.calc-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-item-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.calc-check { display: none; }
.custom-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-glass);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-check:checked + .custom-check {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.calc-check:checked + .custom-check::after {
  content: '✓';
  color: #030712;
  font-weight: 800;
  font-size: 0.85rem;
}

.item-info { flex: 1; }
.item-info strong { display: block; font-size: 0.95rem; }
.item-sub { font-size: 0.8rem; color: var(--text-muted); }
.item-price { font-family: var(--font-display); font-weight: 700; color: var(--accent-gold); }

.calc-summary-col {
  padding: 30px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.highlight-discount { color: var(--accent-cyan); font-weight: 600; }
.summary-divider { border: 0; border-top: 1px solid var(--border-glass); margin: 20px 0; }
.total-line { font-size: 1.1rem; color: #fff; margin-bottom: 24px; }
.total-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--accent-gold); }

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  padding: 32px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.stars { color: var(--accent-gold); font-size: 1.1rem; }
.verified-badge { font-size: 0.75rem; color: var(--accent-cyan); background: rgba(0, 242, 254, 0.1); padding: 4px 8px; border-radius: 4px; }
.review-text { font-size: 0.95rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }
.review-user { display: flex; align-items: center; gap: 14px; }
.user-avatar-placeholder {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)); color: #030712; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.user-location { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* FOOTER */
.site-footer {
  background: #02050e;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-tagline { font-size: 0.9rem; color: var(--text-muted); margin: 20px 0; max-width: 320px; }
.footer-socials { display: flex; gap: 14px; font-size: 1.3rem; }
.footer-socials a { text-decoration: none; }
.footer-links-col h4, .footer-newsletter-col h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 20px; color: var(--accent-gold); }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 12px; font-size: 0.9rem; color: var(--text-muted); }
.footer-links-col a { color: var(--text-muted); text-decoration: none; }
.footer-links-col a:hover { color: var(--accent-cyan); }
.newsletter-form { display: flex; gap: 10px; margin-top: 16px; }
.footer-bottom { border-top: 1px solid var(--border-glass); padding-top: 30px; font-size: 0.85rem; color: var(--text-muted); }

/* MODALS SYSTEM WITH MODERN @starting-style & TOP LAYER ANIMATIONS */
dialog {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 95vw;
  width: max-content;
  margin: auto;
  outline: none;
  overflow: visible;

  /* Modern discrete transition */
  opacity: 0;
  transform: scale(0.95);
  transition-property: opacity, transform, display, overlay;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-behavior: allow-discrete;
}

dialog[open] {
  opacity: 1;
  transform: scale(1);

  @starting-style {
    opacity: 0;
    transform: scale(0.95);
  }
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: display 0.35s allow-discrete, overlay 0.35s allow-discrete, background-color 0.35s ease, backdrop-filter 0.35s ease;
}

dialog[open]::backdrop {
  background-color: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);

  @starting-style {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
}

.modal-dialog-content {
  width: 800px;
  max-width: 92vw;
  padding: 40px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

/* WIZARD MODAL STYLES */
.wizard-header { margin-bottom: 30px; text-align: center; }
.wizard-header h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.wizard-progress-bar { display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-glass); padding-bottom: 14px; }
.progress-step { font-size: 0.8rem; color: var(--text-muted); }
.progress-step.active { color: var(--accent-cyan); font-weight: 700; border-bottom: 2px solid var(--accent-cyan); margin-bottom: -16px; padding-bottom: 14px; }

.wizard-step-pane { display: none; }
.wizard-step-pane.active { display: block; }

.service-select-grid, .specialist-select-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.service-option-card, .specialist-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.service-option-card.selected, .specialist-card.selected {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.service-name { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.service-meta { font-size: 0.8rem; color: var(--accent-gold); }

.spec-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.spec-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-blue); color: #030712; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }

.date-time-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 24px 0; }
.slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.time-slot-btn {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.time-slot-btn.selected { background: var(--accent-cyan); color: #030712; font-weight: 700; }

.wizard-nav-btns { margin-top: 30px; }

/* DIGITAL PASS RESULT */
.digital-pass-card { padding: 30px; border-color: var(--border-gold); margin-top: 24px; background: rgba(14, 28, 58, 0.9); }
.pass-header { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--border-gold); padding-bottom: 14px; margin-bottom: 20px; font-family: var(--font-display); }
.pass-logo { color: var(--accent-gold); font-weight: 800; letter-spacing: 1px; }
.pass-status { background: #22c55e; color: #030712; font-weight: 800; font-size: 0.75rem; padding: 2px 8px; border-radius: 4px; }
.pass-body { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 20px; margin-bottom: 20px; }

/* REEL MODAL PLAYER */
.reel-modal-content {
  width: 900px;
  max-width: 92vw;
  padding: 0;
  overflow: hidden;
}

.reel-player-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; height: 600px; }
.reel-video-container { position: relative; background: #000; height: 100%; }
.reel-active-media { width: 100%; height: 100%; object-fit: cover; }
.reel-video-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 40%); }
.reel-sound-btn { background: rgba(0, 0, 0, 0.6); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.8rem; cursor: pointer; align-self: flex-end; }
.reel-sidebar { padding: 30px; display: flex; flex-direction: column; }
.reel-author-header { display: flex; align-items: center; gap: 12px; }
.reel-comments-list { flex: 1; margin: 20px 0; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.comment-item { font-size: 0.85rem; color: var(--text-muted); }
.btn-reel-action { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-glass); color: #fff; padding: 10px; border-radius: var(--radius-md); cursor: pointer; }

/* AI CHATBOT WIDGET */
.ai-chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chatbot-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border: none;
  color: #030712;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
  position: relative;
}

.chat-pulse {
  position: absolute;
  top: -2px; right: -2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border: 2px solid #030712;
  border-radius: 50%;
}

.chatbot-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 360px;
  height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.chat-header {
  padding: 16px 20px;
  background: rgba(3, 7, 18, 0.9);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-bot-info { display: flex; align-items: center; gap: 10px; }
.bot-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-cyan); color: #030712; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.bot-status { display: block; font-size: 0.7rem; color: #22c55e; }
.chat-close-btn { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.1rem; }

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.bot-msg {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.user-msg {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #030712;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-prompts {
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border-top: 1px solid var(--border-glass);
}

.prompt-chip {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.badge-gold {
  background: linear-gradient(135deg, #e2c275, #fef08a);
  color: #030712;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
}

/* ROYAL BRIDAL COUTURE SECTION */
.bridal-section { background: radial-gradient(circle at 50% 0%, rgba(226, 194, 117, 0.12), transparent 70%); }
.bridal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }

.bridal-card {
  position: relative;
  overflow: hidden;
  border-color: var(--border-gold);
  background: rgba(14, 28, 58, 0.75);
}

.bridal-badge-top {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--accent-gold), #fef08a);
  color: #030712;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bridal-img-wrapper { height: 260px; overflow: hidden; position: relative; }
.bridal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-smooth); }
.bridal-card:hover .bridal-img-wrapper img { transform: scale(1.06); }

.bridal-card-body { padding: 24px; }
.bridal-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-gold); margin-bottom: 10px; }
.bridal-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }

.bridal-features-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-main); }
.bridal-features-list span { display: flex; align-items: center; gap: 6px; }

.bridal-price-row { border-top: 1px solid var(--border-glass); padding-top: 16px; }
.bridal-price { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #fff; }
.currency-symbol { color: var(--accent-gold); margin-right: 2px; }
.usd-equivalent, .usd-sub { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* MASTER TEAM SECTION */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { padding: 0; overflow: hidden; text-align: center; border-color: var(--border-glass); }

.team-img-wrapper { height: 280px; position: relative; overflow: hidden; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform var(--transition-smooth); }
.team-card:hover .team-img-wrapper img { transform: scale(1.05); }

.team-badge {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(3, 7, 18, 0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border-cyan); color: var(--accent-cyan);
  font-size: 0.7rem; font-weight: 800; padding: 4px 12px; border-radius: var(--radius-full);
  white-space: nowrap;
}

.team-body { padding: 20px; }
.team-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--accent-gold); font-weight: 600; margin-bottom: 6px; }
.team-exp { display: inline-block; font-size: 0.75rem; background: rgba(255, 255, 255, 0.06); padding: 2px 10px; border-radius: var(--radius-full); margin-bottom: 10px; color: var(--text-muted); }
.team-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 14px; }
.team-social a { color: var(--accent-cyan); text-decoration: none; font-weight: 700; font-size: 0.82rem; }

/* PUBLIC UTILITY TOOLS SECTION */
.tools-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.tool-card { padding: 30px; border-color: var(--border-glass); }

.tool-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; border-bottom: 1px solid var(--border-glass); padding-bottom: 16px; }
.tool-icon { font-size: 2rem; background: rgba(0, 242, 254, 0.1); width: 50px; height: 50px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.tool-header h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 2px; }
.tool-subtitle { font-size: 0.8rem; color: var(--text-muted); }

.tool-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.tool-input-row { display: flex; gap: 10px; margin-bottom: 20px; }

.timeline-output { background: rgba(3, 7, 18, 0.8); border: 1px solid var(--border-gold); padding: 20px; border-radius: var(--radius-md); margin-top: 16px; }
.timeline-status-badge { background: linear-gradient(135deg, var(--accent-gold), #fef08a); color: #030712; font-weight: 800; font-size: 0.9rem; padding: 6px 14px; border-radius: var(--radius-full); text-align: center; margin-bottom: 16px; }
.timeline-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; font-size: 0.85rem; color: var(--text-muted); }
.timeline-checklist li { border-bottom: 1px dashed rgba(255, 255, 255, 0.1); padding-bottom: 6px; }
.timeline-checklist strong { color: var(--accent-cyan); }

.form-group-sm { margin-bottom: 14px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; background: #25D366; color: #030712; font-weight: 800;
  font-size: 0.95rem; border: none; border-radius: var(--radius-full); cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); transition: transform 0.2s ease;
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #22c55e; }

.mb-12 { margin-bottom: 12px; }

@media (max-width: 992px) {
  .tools-grid-2 { grid-template-columns: 1fr; }
}

/* COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (DESKTOP & MOBILE COMFORT) */

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Touch-friendly Horizontal Scrolling for Tabs on Small Screens */
.treatment-tabs, .reels-filter-row, .comparison-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.treatment-tabs::-webkit-scrollbar, 
.reels-filter-row::-webkit-scrollbar, 
.comparison-tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.treatment-tabs .tab-btn, 
.reels-filter-row .reel-filter, 
.comparison-tabs .comp-tab {
  flex-shrink: 0;
  white-space: nowrap;
}

/* HAMBURGER MENU ANIMATION STYLES */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* DESKTOP ENHANCEMENTS (>= 1200px) */
@media (min-width: 1200px) {
  .hero-title { font-size: 3.5rem; line-height: 1.15; }
  .section-title { font-size: 2.8rem; }
  .hero-container { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .brand-posters-grid { grid-template-columns: repeat(4, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

/* TABLET & LAPTOP LAYOUT (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .hero-title { font-size: 3rem; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-posters-grid { grid-template-columns: repeat(3, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

/* TABLET & MOBILE NAVIGATION (<= 992px) */
@media (max-width: 992px) {
  .nav-container { position: relative; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }
  
  .main-nav.active {
    display: flex;
    animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .main-nav .nav-link {
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    border: 1px solid transparent;
  }

  .main-nav .nav-link:hover, .main-nav .nav-link:focus {
    border-color: var(--border-glass);
    background: rgba(0, 242, 254, 0.08);
  }

  .mobile-menu-toggle { display: flex; }
  .sound-text { display: none; }
  .sound-toggle-btn { padding: 10px; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
  
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .owner-card { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .owner-credentials, .owner-cta-group { justify-content: center; }
  .pillars-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .calc-wrapper { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
  .reel-player-layout { grid-template-columns: 1fr; height: auto; }
}

/* SMARTPHONE & MOBILE COMFORT (<= 768px) */
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  
  .hero-title { font-size: clamp(2.1rem, 7.5vw, 2.7rem); text-align: center; }
  .hero-description { text-align: center; font-size: 0.98rem; }
  .hero-badge-pill { margin: 0 auto 16px auto; width: fit-content; text-align: center; font-size: 0.8rem; }
  
  .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta-group .btn-primary, 
  .hero-cta-group .btn-secondary { width: 100%; justify-content: center; min-height: 48px; }
  
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-item { padding: 12px 8px; text-align: center; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.7rem; }

  .treatments-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-actions { flex-direction: column; gap: 10px; }
  .card-actions .btn-primary-sm, 
  .card-actions .btn-outline-sm { width: 100%; justify-content: center; min-height: 44px; }

  .comp-details-bar { flex-direction: column; text-align: center; gap: 14px; }
  .comp-details-bar .btn-primary-sm { width: 100%; min-height: 44px; }
  .image-comparison-slider { height: 280px; }

  .brand-posters-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .reels-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .quiz-options-grid { grid-template-columns: 1fr; }
  .quiz-opt-btn { min-height: 52px; padding: 16px; font-size: 0.95rem; }

  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-tagline { margin: 16px auto; }
  .footer-socials { justify-content: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form .glass-input { width: 100%; }
  .newsletter-form .btn-primary-sm { width: 100%; min-height: 44px; }

  /* MODAL MOBILE ERGONOMICS */
  .modal-dialog-content {
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
  
  .wizard-header h2 { font-size: 1.5rem; }
  .wizard-progress-bar { overflow-x: auto; gap: 12px; font-size: 0.75rem; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  
  .service-select-grid, .specialist-select-grid { grid-template-columns: 1fr; }
  .date-time-wrapper { grid-template-columns: 1fr; gap: 20px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .time-slot-btn { min-height: 44px; display: flex; align-items: center; justify-content: center; }

  .pass-body { grid-template-columns: 1fr; text-align: center; }
  .pass-qr-box { margin-top: 16px; display: flex; flex-direction: column; align-items: center; }
  .pass-actions { flex-direction: column; gap: 10px; }
  .pass-actions button { width: 100%; min-height: 44px; }

  /* CHATBOT MOBILE OPTIMIZATION */
  .chatbot-window {
    width: calc(100vw - 32px);
    right: -6px;
    bottom: 74px;
    height: 72vh;
  }
}

/* EXTRA SMALL MOBILES (<= 480px) */
@media (max-width: 480px) {
  .nav-container { padding: 0 10px; }
  .brand-logo { font-size: 0.85rem; gap: 8px; }
  .brand-logo-img { width: 34px; height: 34px; }
  .nav-actions { gap: 8px; }
  .btn-primary { padding: 12px 20px; font-size: 0.88rem; }
  .hero-stats-row { grid-template-columns: 1fr; gap: 8px; }
  .pillars-grid-4 { grid-template-columns: 1fr; }
  .brand-posters-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
}

