@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --purple-deep: #0d0020;
  --purple-dark: #1a0533;
  --purple-mid: #2d0b5a;
  --purple-light: #5a1a8a;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a07820;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-15: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(212,175,55,0.25);
  --text-light: #c8b8e8;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Cinzel', serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.5px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--purple-deep); transform: translateY(-2px); }

/* ── PARTICLES ── */
#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13,0,32,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav-logo span:first-child {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}
.nav-logo span:last-child {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--white-80);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.3s;
}
.nav-wa::after { display: none !important; }
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); display: block; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  background: url('assets/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,0,32,0.88) 0%, rgba(26,5,51,0.75) 50%, rgba(13,0,32,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.hero h1 .gold-text { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}
.hero-desc {
  font-size: 1rem;
  color: var(--white-80);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stars {
  display: flex; align-items: center; gap: 8px;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.hero-stars .stars { color: var(--gold); font-size: 1rem; }

/* ── STATS ── */
.stats {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 0;
  position: relative; z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

/* ── ABOUT ── */
.about { padding: 100px 0; position: relative; z-index: 2; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-badge {
  position: absolute;
  bottom: 20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep);
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.about-badge .num { font-size: 2rem; display: block; line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { font-size: 2.2rem; color: var(--gold); margin-bottom: 0.5rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.98rem; }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem;
}
.tag {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold-light);
}
.about-contact { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── SERVICES ── */
.services { padding: 100px 0; position: relative; z-index: 2; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.05);
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── WHY CHOOSE ── */
.why { padding: 100px 0; position: relative; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(45,11,90,0.3), transparent);
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  text-align: center; padding: 2rem 1rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; position: relative; z-index: 2; }
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-slider { display: flex; gap: 1.5rem; transition: transform 0.5s ease; }
.testi-card {
  min-width: calc(33.33% - 1rem);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.92rem; color: var(--white-80); font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-loc { font-size: 0.78rem; color: var(--text-light); }
.testi-nav {
  display: flex; justify-content: center; gap: 10px; margin-top: 2rem;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer; transition: all 0.3s; border: none;
}
.testi-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ── FORM ── */
.consultation { padding: 100px 0; position: relative; z-index: 2; }
.form-wrap {
  max-width: 800px; margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; color: var(--gold-light); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.07);
}
.form-group select option { background: var(--purple-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 1.5rem; }
.form-submit .btn { padding: 16px 48px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 10px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 16px;
  margin-top: 1rem;
  color: #4ade80;
  font-size: 1.1rem;
}
.form-success.show { display: block; }

/* ── FAQ ── */
.faq { padding: 100px 0; position: relative; z-index: 2; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--glass);
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .arrow { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-light); font-size: 0.9rem;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ── FOOTER ── */
footer {
  background: var(--purple-deep);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-light); max-width: 280px; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; margin-top: 1.2rem; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-light); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-light);
  flex-wrap: wrap; gap: 0.5rem;
}

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite;
  cursor: pointer;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.8); }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── PRODUCTS / CRYSTAL SHOP ── */
.products { padding: 100px 0; position: relative; z-index: 2; }
.products-intro { text-align: center; color: var(--text-light); font-size: 0.95rem; max-width: 600px; margin: 0 auto 2.5rem; }

/* Filter Tabs */
.product-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 3rem;
}
.filter-btn {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-light); padding: 10px 22px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep); border-color: transparent; font-weight: 600;
}

/* Product Grid */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.product-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden; cursor: pointer;
  transition: all 0.35s ease; position: relative;
}
.product-card:hover {
  transform: translateY(-10px); border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(212,175,55,0.22);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative; overflow: hidden; height: 200px;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep); font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.product-badge.new { background: linear-gradient(135deg, #4ade80, #22c55e); color: #fff; }
.product-badge.hot { background: linear-gradient(135deg, #f97316, #ef4444); color: #fff; }

.product-body { padding: 1.2rem; }
.product-category {
  font-size: 0.72rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 0.4rem; font-weight: 600;
}
.product-name {
  font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white);
  margin-bottom: 0.4rem; line-height: 1.3;
}
.product-benefits {
  font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.8rem; line-height: 1.5;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.product-price {
  font-family: 'Cinzel', serif; font-size: 1.1rem;
  color: var(--gold-light); font-weight: 700;
}
.product-enquire {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white; border: none; padding: 8px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; font-family: 'Poppins', sans-serif;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.product-enquire:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Product Modal */
.product-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  padding: 20px;
}
.product-modal-overlay.open { opacity: 1; pointer-events: all; }
.product-modal {
  background: linear-gradient(145deg, var(--purple-dark), var(--purple-mid));
  border: 1px solid var(--glass-border); border-radius: 28px;
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9); transition: transform 0.35s ease;
  position: relative;
}
.product-modal-overlay.open .product-modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 20px; background: var(--glass);
  border: 1px solid var(--glass-border); color: var(--gold);
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 10;
}
.modal-close:hover { background: var(--gold); color: var(--purple-deep); }
.modal-img { width: 100%; height: 280px; object-fit: cover; border-radius: 28px 28px 0 0; }
.modal-body { padding: 2rem; }
.modal-category { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.4rem; }
.modal-name { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.8rem; }
.modal-desc { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.7; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.modal-tag {
  background: rgba(212,175,55,0.1); border: 1px solid var(--glass-border);
  color: var(--gold-light); font-size: 0.78rem; padding: 5px 14px; border-radius: 50px;
}
.modal-price { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 1.5rem; }
.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.modal-wa-btn {
  background: linear-gradient(135deg, #25d366, #128c7e); color: white;
  border: none; padding: 14px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; flex: 1; text-align: center;
}
.modal-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.modal-consult-btn {
  background: transparent; border: 2px solid var(--gold); color: var(--gold);
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; flex: 1; text-align: center;
}
.modal-consult-btn:hover { background: var(--gold); color: var(--purple-deep); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,0,32,0.98); padding: 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { min-width: 85%; }
  .form-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .form-wrap { padding: 1.5rem; }
}
