/* ============================================
   KD NUMEROLOGIST — Premium Mobile-First CSS
   Theme: Dark Mystical Celestial with Gold
   Rich Spiritual Backgrounds Throughout
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy: #050a15;
  --navy-light: #0a1128;
  --navy-mid: #0d1730;
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --gold-dark: #B8941E;
  --gold-deep: #C5982A;
  --white: #FFFFFF;
  --cream: #FFF8E7;
  --cream-dark: #F5ECD7;
  --text-light: #C8CDD5;
  --text-muted: #8A93A6;
  --glass-bg: rgba(212, 175, 55, 0.03);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.2);
  --card-radius: 16px;
  --section-padding: 60px 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Outfit', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--white); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); font-weight: 600; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.gold-text { color: var(--gold); }
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  background: #20BD5A;
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Section Base ---------- */
section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

section > * {
  position: relative;
  z-index: 2;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
  background: rgba(5, 10, 21, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.navbar.scrolled {
  background: rgba(5, 10, 21, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(212, 175, 55, 0.1);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--navy) 0%, #030712 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 999;
}

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

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.show { opacity: 1; visibility: visible; }

.nav-link {
  display: block;
  padding: 14px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold); padding-left: 8px; }

.nav-cta {
  margin-top: 20px;
}

/* =============================================
   HERO SECTION — Chakra Background
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Chakra background image — full figure visible */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 10, 21, 0.35) 0%,
      rgba(5, 10, 21, 0.2) 30%,
      rgba(5, 10, 21, 0.2) 60%,
      rgba(5, 10, 21, 0.5) 100%),
    url('photo/chakra-bg.png') center center / contain no-repeat;
  background-color: var(--navy);
  z-index: 1;
  animation: chakraPulse 8s ease-in-out infinite alternate;
}

@keyframes chakraPulse {
  0% { opacity: 0.75; }
  100% { opacity: 1; }
}

/* Stars canvas */
#stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Sacred geometry subtle overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='80' stroke='%23D4AF37' stroke-width='0.3' fill='none' opacity='0.06'/%3E%3Ccircle cx='100' cy='100' r='50' stroke='%23D4AF37' stroke-width='0.3' fill='none' opacity='0.04'/%3E%3Cline x1='20' y1='100' x2='180' y2='100' stroke='%23D4AF37' stroke-width='0.2' opacity='0.04'/%3E%3Cline x1='100' y1='20' x2='100' y2='180' stroke='%23D4AF37' stroke-width='0.2' opacity='0.04'/%3E%3C/svg%3E") repeat;
  opacity: 0.25;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 700px;
}

.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.3),
    0 0 80px rgba(212, 175, 55, 0.12),
    0 0 120px rgba(212, 175, 55, 0.05);
  animation: float 6s ease-in-out infinite;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

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

.hero h1 {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(220, 225, 235, 0.9);
  line-height: 1.8;
  max-width: 550px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 10, 21, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.hero-badge .check { color: #25D366; font-weight: 700; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* =============================================
   TRUST COUNTERS — Diya Background
   ============================================= */
.trust-section {
  background: var(--navy);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.7) 0%, rgba(5, 10, 21, 0.5) 50%, rgba(5, 10, 21, 0.7) 100%),
    url('photo/diya-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.6;
}

.trust-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.trust-card {
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--card-radius);
  padding: 28px 16px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   ABOUT SECTION — Sanskrit Mantra Background
   ============================================= */
.about-section {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.75) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.75) 100%),
    url('photo/mantra-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.about-image {
  width: 180px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

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

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.about-tag {
  background: rgba(5, 10, 21, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  backdrop-filter: blur(6px);
}

/* =============================================
   SERVICES — Sacred Mandala Background
   ============================================= */
.services-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.8) 0%, rgba(5, 10, 21, 0.55) 50%, rgba(5, 10, 21, 0.8) 100%),
    url('photo/mandala-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.service-card h3 { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }

/* =============================================
   TRENDING SERVICES — Cosmic Divination Background
   ============================================= */
.trending-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.trending-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.8) 0%, rgba(5, 10, 21, 0.55) 50%, rgba(5, 10, 21, 0.8) 100%),
    url('photo/cosmic-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.45;
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.trending-card {
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--card-radius);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.trending-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.trending-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.trending-card-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trending-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trending-info { flex: 1; }
.trending-info h3 { font-size: 1rem; margin-bottom: 4px; }
.trending-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.trending-card .btn-small { flex-shrink: 0; }

/* =============================================
   PRODUCTS SECTION — Mantra Background
   ============================================= */
.products-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.8) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.8) 100%),
    url('photo/mantra-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.products-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-category {
  background: rgba(5, 10, 21, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 20px;
  padding: 24px 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.product-category:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.product-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.product-category-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.product-category-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  text-align: left;
}

.product-category-num {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}

.product-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-item {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 14px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition);
  min-height: 0;
}

.product-item:hover {
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.07);
  transform: translateY(-2px);
}

.product-item-photo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
  border: 1px dashed rgba(212, 175, 55, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-item-photo.has-img {
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.1);
}

.product-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-item-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.product-item-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Product Featured Bundles */
.product-bundles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
}

.product-bundle {
  background: rgba(5, 10, 21, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.product-bundle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.product-bundle:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.product-bundle-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.product-bundle-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-bundle-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* =============================================
   PACKAGES — Divine Golden Light Background
   ============================================= */
.packages-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.82) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.82) 100%),
    url('photo/divine-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.package-card {
  background: rgba(5, 10, 21, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.package-card.featured::before {
  content: '★ MOST POPULAR';
  position: absolute;
  top: 16px;
  right: -28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.package-name {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.package-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.package-features {
  text-align: left;
  margin-bottom: 24px;
}

.package-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

/* =============================================
   COURSES — Mandala Background
   ============================================= */
.courses-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.courses-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.82) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.82) 100%),
    url('photo/mandala-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.course-card {
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}

.course-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.08);
}

.course-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.course-info h3 { font-size: 0.9rem; margin-bottom: 2px; }
.course-info p { font-size: 0.75rem; color: var(--text-muted); }

.coming-soon-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

/* =============================================
   WEBINARS — Cosmic Background
   ============================================= */
.webinars-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.webinars-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.82) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.82) 100%),
    url('photo/cosmic-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.webinars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.webinar-card {
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.webinar-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.08);
}

.webinar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.webinar-info h3 { font-size: 0.9rem; margin-bottom: 2px; }
.webinar-info p { font-size: 0.75rem; color: var(--text-muted); }

/* =============================================
   WHY CHOOSE US — Diya Background
   ============================================= */
.why-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.78) 0%, rgba(5, 10, 21, 0.55) 50%, rgba(5, 10, 21, 0.78) 100%),
    url('photo/diya-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.45;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

/* =============================================
   TESTIMONIALS — Divine Light Background
   ============================================= */
.testimonials-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.82) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.82) 100%),
    url('photo/divine-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(5, 10, 21, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--card-radius);
  padding: 24px 20px;
  text-align: left;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   YOUTUBE — Cosmic Background
   ============================================= */
.youtube-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.youtube-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.85) 0%, rgba(5, 10, 21, 0.6) 50%, rgba(5, 10, 21, 0.85) 100%),
    url('photo/cosmic-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.youtube-video-container {
  max-width: 700px;
  margin: 0 auto 30px;
}

.youtube-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
  background: #000;
}

.youtube-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Legacy YouTube embed support */
.youtube-embed {
  max-width: 700px;
  margin: 0 auto 24px;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.youtube-embed .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.youtube-embed .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   FAQ — Mantra Background
   ============================================= */
.faq-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.85) 0%, rgba(5, 10, 21, 0.7) 50%, rgba(5, 10, 21, 0.85) 100%),
    url('photo/mantra-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.35;
}

.faq-list {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 18px 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* =============================================
   CONTACT — Diya Background
   ============================================= */
.contact-section {
  background: var(--navy);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.8) 0%, rgba(5, 10, 21, 0.55) 50%, rgba(5, 10, 21, 0.8) 100%),
    url('photo/diya-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto 30px;
}

.contact-card {
  background: rgba(5, 10, 21, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.08);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-info p { font-size: 0.82rem; color: var(--text-muted); word-break: break-all; }
.contact-info a { color: var(--gold-light); }
.contact-info a:hover { color: var(--gold); }

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* =============================================
   FINAL CTA — Divine Light Background
   ============================================= */
.final-cta {
  background: var(--navy);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.7) 0%, rgba(5, 10, 21, 0.45) 50%, rgba(5, 10, 21, 0.7) 100%),
    url('photo/divine-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* =============================================
   FOOTER — Deep Dark with Mandala
   ============================================= */
.footer {
  background: linear-gradient(180deg, rgba(4, 8, 18, 0.98), #020510);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 16, 0.9) 0%, rgba(2, 5, 16, 0.8) 100%),
    url('photo/mandala-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.2;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-logo img {
  height: 50px;
  margin: 0 auto 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

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

/* ---------- STICKY WHATSAPP ---------- */
.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.sticky-whatsapp a:hover {
  transform: scale(1.1);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- STICKY MOBILE CTA BAR ---------- */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(5, 10, 21, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 10px 16px;
  gap: 10px;
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 0.8rem;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Mid-section CTA ---------- */
.mid-cta {
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 21, 0.9) 0%, rgba(5, 10, 21, 0.75) 50%, rgba(5, 10, 21, 0.9) 100%),
    url('photo/mandala-bg.png') center center / cover no-repeat;
  z-index: 0;
  opacity: 0.25;
}

.mid-cta > * {
  position: relative;
  z-index: 1;
}

.mid-cta-inner {
  background: rgba(5, 10, 21, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.mid-cta-inner p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.mid-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ================================================
   DESKTOP & TABLET RESPONSIVE
   ================================================ */

@media (min-width: 480px) {
  .trending-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-items-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; max-width: 700px; }
  .product-items-grid { grid-template-columns: repeat(3, 1fr); }
  .product-bundles { grid-template-columns: 1fr; max-width: 700px; }
}

@media (min-width: 768px) {
  :root { --section-padding: 80px 40px; }

  .hero { padding: 140px 40px 100px; }

  .about-wrapper { flex-direction: row; text-align: left; gap: 40px; }
  .about-content { text-align: left; }
  .about-highlights { justify-content: flex-start; }
  .about-image { width: 220px; height: 280px; }

  .packages-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
  .courses-grid { grid-template-columns: 1fr 1fr; max-width: 700px; }
  .webinars-grid { grid-template-columns: 1fr 1fr; max-width: 700px; }

  .contact-cards { grid-template-columns: 1fr 1fr; max-width: 600px; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .footer-logo { text-align: left; }
  .footer-logo img { margin: 0 0 12px; }
  .footer-social { justify-content: flex-start; }

  .products-categories { grid-template-columns: 1fr 1fr; }
  .product-items-grid { grid-template-columns: repeat(2, 1fr); }
  .product-item-photo { width: 90px; height: 90px; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0;
    overflow: visible;
  }

  .nav-link {
    padding: 8px 14px;
    font-size: 0.82rem;
    border-bottom: none;
  }

  .nav-link:hover { padding-left: 14px; }

  .nav-cta { margin-top: 0; margin-left: 8px; }

  .nav-overlay { display: none !important; }

  .mobile-cta-bar { display: none; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .trending-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
  .why-grid { grid-template-columns: 1fr 1fr 1fr; max-width: 900px; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }

  .products-categories { grid-template-columns: repeat(2, 1fr); }
  .product-items-grid { grid-template-columns: repeat(4, 1fr); }
  .product-item-photo { width: 100px; height: 100px; }

  /* Hero chakra bg scales better on desktop */
  .hero-bg::before {
    background-size: cover;
  }
}

@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); max-width: 1100px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
