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

:root {
  --primary: #1a0a2e;
  --primary-light: #2d1b4e;
  --accent: #c9a84c;
  --accent-light: #e6c66e;
  --gold: #d4a843;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --text: #e8e0f0;
  --text-muted: #a89bc2;
  --bg-dark: #0d0618;
  --bg-card: rgba(45, 27, 78, 0.6);
  --bg-card-hover: rgba(60, 38, 100, 0.8);
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #0d0618 0%, #1a0a2e 40%, #2d1b4e 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e6c66e, #c9a84c);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --radius: 12px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title .gold-line {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto 15px;
  border-radius: 2px;
}

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

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

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader .om-symbol {
  font-size: 4rem;
  color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 6, 24, 0.98);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0 30px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-left: 170px;
}

.navbar-brand img {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -15px;
  left: 0;
  border-radius: 0px 0px 12px 12px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-top: none;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
  object-fit: cover;
  transition: all 0.4s ease;
  z-index: 1001;
}

.navbar.scrolled .navbar-brand img {
  width: 120px;
  height: 120px;
  top: -10px;
}

.navbar-brand .logo-aside {
  position: static;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.15);
  object-fit: cover;
  flex-shrink: 0;
}

.navbar-brand .brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-brand .brand-text span {
  display: block;
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
  text-transform: none;
}

.navbar-brand .brand-quote {
  font-size: 12px!important;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(201, 168, 76, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-toggle {
  padding: 8px 16px !important;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.nav-dropdown .dropdown-toggle i {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown .dropdown-toggle:hover,
.nav-dropdown .dropdown-toggle.active {
  color: var(--white);
  background: rgba(201, 168, 76, 0.1);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(13, 6, 24, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.nav-dropdown .dropdown-menu a:hover,
.nav-dropdown .dropdown-menu a.active {
  color: var(--white);
  background: rgba(201, 168, 76, 0.15);
  padding-left: 25px;
}

.nav-dropdown .dropdown-menu a.active {
  color: var(--accent);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.hero-slide .slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(13,6,24,0.9) 0%, rgba(26,10,46,0.7) 50%, rgba(45,27,78,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  margin-left: 10%;
}

.hero-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 30px;
}

.hero-content h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  box-shadow: 0 0 15px var(--gold-glow);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(201, 168, 76, 0.3);
  border-color: var(--accent);
}

/* Floating particles in hero */
.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-gradient {
  background: var(--gradient-hero);
}

/* Light / White sections */
.section-light {
  background: #ffffff;
  color: #2d2d2d;
  position: relative;
}

.section-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../images/bg-pattern-subtle.png') repeat;
  background-size: 150px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.section-light > * {
  position: relative;
  z-index: 1;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--primary);
}

.section-light p,
.section-light .about-text p,
.section-light .stat-item .stat-label {
  color: #555;
}

.section-light .feature-card {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .feature-card:hover {
  background: #f0ece0;
  border-color: rgba(201, 168, 76, 0.4);
}

.section-light .feature-card p {
  color: #666;
}

.section-light .feature-card .icon {
  background: rgba(201, 168, 76, 0.12);
}

.section-light .stat-item {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
  border-right-color: rgba(201, 168, 76, 0.12);
}

.section-light .stat-item:last-child {
  border-right-color: transparent;
}

.section-light .about-text .credentials span {
  background: #f0ece0;
  border-color: rgba(201, 168, 76, 0.25);
  color: #8a6d1b;
}

.section-light .about-text .tagline {
  color: #8a6d1b;
}

.section-light .section-title p {
  color: #777;
}

.section-light .signature-item {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .signature-item:hover {
  background: #f0ece0;
  border-color: rgba(201, 168, 76, 0.4);
}

.section-light .signature-item p {
  color: #666;
}

.section-light .benefit-item {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .benefit-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.08);
}

.section-light .benefit-tab-image {
  border: 3px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
}

.section-light .benefit-item p {
  color: #666;
}

.section-light .tab-btn {
  background: #f0ece0;
  color: #555;
  border-color: rgba(201, 168, 76, 0.2);
}

.section-light .tab-btn:hover,
.section-light .tab-btn.active {
  background: var(--gradient-gold);
  color: var(--primary);
}

.section-light .healing-quote {
  background: #f8f6f0;
  color: #333;
}

.section-light .healing-point {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .healing-point span {
  color: #555;
}

.section-light .step {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .step:hover {
  background: #f0ece0;
  border-color: rgba(201, 168, 76, 0.4);
}

.section-light .step p,
.section-light .step ul li {
  color: #555;
}

.section-light .contact-info-card {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .contact-info-card p {
  color: #555;
}

.section-light .contact-form {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .contact-form input,
.section-light .contact-form textarea {
  background: #ffffff;
  border-color: #ddd;
  color: #333;
}

.section-light .contact-form input:focus,
.section-light .contact-form textarea:focus {
  border-color: var(--accent);
}

.section-light .contact-form label {
  color: #555;
}

.section-cream {
  background: #faf8f3;
  color: #2d2d2d;
}

.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream h4 {
  color: var(--primary);
}

.section-cream p {
  color: #555;
}

.section-cream .section-title p {
  color: #777;
}

.section-cream .feature-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.12);
}

.section-cream .feature-card:hover {
  background: #fff;
  border-color: rgba(201, 168, 76, 0.4);
}

.section-cream .feature-card p {
  color: #666;
}

.section-cream .feature-card .icon {
  background: rgba(201, 168, 76, 0.1);
}

.section-cream .healing-quote {
  background: #ffffff;
  color: #333;
  border-left-color: var(--accent);
}

.section-cream .healing-quote .author {
  color: #8a6d1b;
}

.section-cream .healing-point {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-cream .healing-point span {
  color: #555;
}

.section-cream .step {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-cream .step:hover {
  background: #fff;
  border-color: rgba(201, 168, 76, 0.4);
}

.section-cream .step p,
.section-cream .step ul li {
  color: #555;
}

/* Gold text on light backgrounds needs to stay gold */
.section-light .gold-text,
.section-cream .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About text on light backgrounds */
.section-light .about-text p strong,
.section-cream .about-text p strong {
  color: var(--primary);
}

.section-light .about-text p em,
.section-cream .about-text p em {
  color: #8a6d1b;
}

.section-light .about-image .floating-badge,
.section-cream .about-image .floating-badge {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Timeline on light bg */
.section-light .timeline::before,
.section-cream .timeline::before {
  background: linear-gradient(to bottom, var(--accent), #e0d5c0);
}

.section-light .timeline-content,
.section-cream .timeline-content {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .timeline-content p,
.section-cream .timeline-content p {
  color: #666;
}

.section-light .timeline-item .timeline-dot,
.section-cream .timeline-item .timeline-dot {
  border-color: #fff;
}

/* Practice schedule box on light bg */
.section-light .practice-schedule-box {
  background: #f0ece0;
}

.section-pattern {
  background: var(--bg-dark);
  position: relative;
}

.section-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(45, 27, 78, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== ABOUT PREVIEW (HOME) ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image .img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-image .floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-image .floating-badge .number {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  display: block;
  line-height: 1;
}

.about-image .floating-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text .tagline {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.about-text .credentials span {
  padding: 6px 16px;
  background: var(--bg-card);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ===== FEATURES / CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .icon {
  background: var(--gradient-gold);
  color: var(--primary);
  transform: scale(1.1);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== QUOTE / MESSAGE SECTION ===== */
.quote-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.quote-section .quote-mark {
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.quote-section blockquote {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
}

.quote-section .quote-author {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}

.quote-section .quote-author span {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* ===== TRUTH SIGNATURES ===== */
.signatures-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.signature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.signature-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--bg-card-hover);
}

.signature-item .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
}

.signature-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.signature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CHAKRA TABLE ===== */
.chakra-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.chakra-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.chakra-table thead {
  background: var(--gradient-gold);
}

.chakra-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chakra-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.chakra-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.chakra-table .chakra-name {
  color: var(--white);
  font-weight: 600;
}

.chakra-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: 55%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: 55%;
}

.timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-dark);
  z-index: 2;
  top: 30px;
}

.timeline-content {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.timeline-content .era {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== BENEFITS TABS ===== */
.benefits-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 30px;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gradient-gold);
  color: var(--primary);
  border-color: transparent;
  font-weight: 600;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.3);
}

.benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ===== BENEFIT TAB LAYOUT ===== */
.benefit-tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.benefit-tab-image {
  position: sticky;
  top: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-tab-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.benefit-tab-layout .benefit-list {
  grid-template-columns: 1fr;
}

/* No-image variant: full width grid */
.benefit-tab-full .benefit-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== PRACTICE STEP WITH IMAGE ===== */
.step-with-image {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  margin-bottom: 30px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.step-with-image:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--bg-card-hover);
}

.step-with-image .step-image {
  overflow: hidden;
}

.step-with-image .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-with-image .step-content {
  display: flex;
  gap: 25px;
  padding: 30px;
}

.section-light .step-with-image {
  background: #f8f6f0;
  border-color: rgba(201, 168, 76, 0.15);
}

.section-light .step-with-image:hover {
  background: #f0ece0;
  border-color: rgba(201, 168, 76, 0.4);
}

.section-light .step-with-image p,
.section-light .step-with-image ul li {
  color: #555;
}

/* ===== PRACTICE STEPS ===== */
.practice-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 30px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--bg-card-hover);
}

.step .step-number {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step ul {
  margin-top: 10px;
}

.step ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ===== HEALING SECTION ===== */
.healing-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 30px 40px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
}

.healing-quote .author {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.healing-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.healing-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.healing-point i {
  color: var(--accent);
  font-size: 1.1rem;
}

.healing-point span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-info-card .contact-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-form h3 {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(13, 6, 24, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--gold-glow);
}

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

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

/* ===== STATS BAR ===== */
.stats-section {
  padding: 0 !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.stat-item {
  text-align: center;
  padding: 35px 15px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(13, 6, 24, 0.95) 50%, rgba(201, 168, 76, 0.05) 100%);
  position: relative;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(13, 6, 24, 0.95);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 25px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-header::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: url('../images/pattern-mandala.png') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  margin-bottom: 15px;
}

.page-header .breadcrumb {
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-header .breadcrumb a {
  color: var(--accent);
}

.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

/* ===== OM DECORATIVE ===== */
.om-decoration {
  text-align: center;
  padding: 20px 0;
}

.om-decoration img {
  width: 60px;
  margin: 0 auto;
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .navbar-brand {
    padding-left: 115px;
  }

  .navbar-brand img {
    width: 100px;
    height: 100px;
    left: 0;
  }

  .navbar.scrolled .navbar-brand img {
    width: 75px;
    height: 75px;
  }

  .navbar-brand .logo-aside {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(13, 6, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 5px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  /* Mobile Dropdown */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px !important;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding-left: 20px;
    box-shadow: none;
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown .dropdown-menu.show {
    display: block;
  }

  .nav-dropdown .dropdown-menu a {
    padding: 10px 16px;
  }

  .nav-dropdown .dropdown-menu a:hover,
  .nav-dropdown .dropdown-menu a.active {
    padding-left: 25px;
  }

  .about-preview { grid-template-columns: 1fr; gap: 30px; }

  .contact-grid { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-bottom: 1px solid rgba(201, 168, 76, 0.1); }
  .stat-item:nth-child(2n) { border-right: none; }

  .benefit-tab-layout { grid-template-columns: 1fr; }
  .benefit-tab-image { position: static; max-width: 400px; margin: 0 auto 25px; }
  .benefit-tab-layout .benefit-list { grid-template-columns: 1fr; }

  .step-with-image { grid-template-columns: 1fr; }
  .step-with-image .step-image { max-height: 200px; }

  .healing-intro-grid,
  .healing-science-grid { grid-template-columns: 1fr !important; }

  .hero-content { margin-left: 5%; }

  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-item .timeline-dot { left: 20px; }

  .footer-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .slider-arrows { display: none; }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .page-header { padding: 130px 0 60px; }
  .hero-content h1 { font-size: 2rem; }
  .step { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .navbar-brand {
    padding-left: 90px;
  }

  .navbar-brand img {
    width: 75px;
    height: 75px;
    left: 0;
  }

  .navbar.scrolled .navbar-brand img {
    width: 60px;
    height: 60px;
  }

  .navbar-brand .logo-aside {
    width: 35px;
    height: 35px;
  }

  .navbar-brand .brand-text {
    font-size: 0.6rem;
  }

  .navbar-brand .brand-text span {
    font-size: 0.9rem;
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
  padding: 80px 0 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 10, 46, 0.8) 0%, rgba(26, 10, 46, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

.gallery-icon i {
  font-size: 1.5rem;
  color: var(--bg-dark);
}

/* No Images Message */
.no-images-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-images-message i {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 20px;
}

.no-images-message p {
  font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.8);
  border: none;
  color: var(--bg-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 25px;
  border-radius: 25px;
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .gallery-section {
    padding: 50px 0 70px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
}

/* Gallery Page Header Override */
.gallery-page-header {
  min-height: 40vh;
  padding: 140px 0 60px;
}
