/* ============================================
   Artharogyam - Main Stylesheet
   ============================================ */

:root {
  --primary: #265D66;
  --primary-dark: #1a454c;
  --primary-light: #3a7a85;
  --accent: #B87333;
  --accent-light: #d4924f;
  --accent-dark: #8f5a28;
  --leaf: #4a7c59;
  --leaf-light: #6b9b78;
  --gold: #C9A227;
  --cream: #F8F6F0;
  --cream-dark: #EDE8DC;
  --white: #ffffff;
  --text: #1a2629;
  --text-muted: #5a6c72;
  --border: #e8e4dc;
  --shadow: 0 4px 24px rgba(38, 93, 102, 0.08);
  --shadow-lg: 0 16px 48px rgba(38, 93, 102, 0.14);
  --shadow-premium: 0 20px 60px rgba(38, 93, 102, 0.12);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --header-h: 118px;
}

[data-theme="dark"] {
  --cream: #12181a;
  --cream-dark: #1a2326;
  --white: #1e282b;
  --text: #e8ece9;
  --text-muted: #a0aaa8;
  --border: #2a3538;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --glass: rgba(38, 93, 102, 0.25);
  --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .site-header-wrap { background: #12181a; }
[data-theme="dark"] .site-header { background: rgba(18, 24, 26, 0.98); }
[data-theme="dark"] .product-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .plan-card,
[data-theme="dark"] .mv-card,
[data-theme="dark"] .leader-card,
[data-theme="dark"] .stats-section,
[data-theme="dark"] .contact-form-wrap,
[data-theme="dark"] .form-card,
[data-theme="dark"] .legal-content { background: var(--white); }
[data-theme="dark"] .section-block.bg-white { background: var(--cream-dark); }
[data-theme="dark"] .section-block.bg-cream { background: var(--cream); }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

/* Typography */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.text-accent { color: var(--accent); }
.text-primary-brand { color: var(--primary); }

/* Buttons */
.btn-brand {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1.25;
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.28);
}

.btn-brand:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  transition: var(--transition);
}

.site-header-wrap.scrolled {
  box-shadow: var(--shadow);
}

.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 0;
  line-height: 1.4;
}

.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--accent-light); }

.top-bar .tb-company {
  font-weight: 600;
  color: var(--gold);
  margin-right: 1rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  line-height: 1.2;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 1.5rem;
  padding-right: 0.5rem;
  flex-shrink: 0;
}

.mobile-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
  padding: 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 992px) {
  .site-header .navbar-brand {
    margin-right: 2.75rem;
  }

  .site-header .navbar-nav .nav-link {
    padding: 6px 10px !important;
  }
}

.navbar-brand img,
.footer-brand img,
.preloader-logo,
.logo-circle {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(184, 115, 51, 0.25);
}

.navbar-brand img {
  width: 46px;
  height: 46px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
}

.preloader-logo {
  width: 88px;
  height: 88px;
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 6px 12px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Mega Menu */
.mega-dropdown .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  min-width: 520px;
  margin-top: 0;
  z-index: 1060;
}

.mega-menu-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-size: 0.875rem;
  transition: var(--transition);
}

.mega-menu-link i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

.mega-menu-link:hover {
  color: var(--primary);
  padding-left: 5px;
}

.mega-menu-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  color: var(--white);
  height: 100%;
}

.mega-menu-banner h6 {
  color: var(--white);
  font-size: 1rem;
}

.mega-menu-banner p {
  font-size: 0.8125rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.nav-cta .btn-brand,
.nav-cta .btn-gold {
  padding: 7px 14px;
  font-size: 0.8125rem;
  line-height: 1.2;
  white-space: nowrap;
  gap: 6px;
}

/* Mobile menu */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus { box-shadow: none; }

.mobile-mega-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.mobile-mega-section:last-child { border-bottom: none; }

.mobile-mega-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Page spacing */
.page-wrapper { padding-top: var(--header-h); }
.page-wrapper.no-top-bar { padding-top: 64px; }

/* Breadcrumb */
.page-breadcrumb {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 3rem 0 2.5rem;
  color: var(--white);
  margin-bottom: 0;
}

.page-breadcrumb.page-breadcrumb-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(38, 93, 102, 0.93), rgba(26, 58, 64, 0.9));
}

.page-breadcrumb.page-breadcrumb-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--page-banner);
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  z-index: 0;
}

.page-breadcrumb.page-breadcrumb-photo .container {
  position: relative;
  z-index: 1;
}

/* Page content visuals */
.page-visual-banner img,
.page-side-visual img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.page-visual-banner img {
  max-height: 300px;
}

.page-side-visual img {
  min-height: 420px;
  max-height: 520px;
}

.page-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.page-photo-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
  .page-photo-strip { grid-template-columns: 1fr; }
  .page-photo-strip img { height: 200px; }
  .page-side-visual img { min-height: 260px; }
}

.page-breadcrumb h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-item.active { color: var(--accent-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================
   Hero Section — Clean Slider
   ============================================ */
.hero-section {
  margin-top: var(--header-h);
  padding: 0;
  position: relative;
  height: min(560px, calc(100vh - var(--header-h)));
  min-height: 400px;
  overflow: hidden;
}

.hero-swiper,
.hero-section .hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide--teal .hero-slide-overlay {
  background: linear-gradient(115deg,
    rgba(15, 46, 51, 0.93) 0%,
    rgba(38, 93, 102, 0.82) 45%,
    rgba(184, 115, 51, 0.45) 100%);
}

.hero-slide--gold .hero-slide-overlay {
  background: linear-gradient(115deg,
    rgba(26, 69, 76, 0.9) 0%,
    rgba(143, 90, 40, 0.75) 50%,
    rgba(38, 93, 102, 0.85) 100%);
}

.hero-slide--green .hero-slide-overlay {
  background: linear-gradient(115deg,
    rgba(26, 69, 76, 0.92) 0%,
    rgba(74, 124, 89, 0.55) 40%,
    rgba(15, 46, 51, 0.88) 100%);
}

.hero-slide--cream .hero-slide-overlay {
  background: linear-gradient(115deg,
    rgba(15, 46, 51, 0.9) 0%,
    rgba(38, 93, 102, 0.78) 50%,
    rgba(201, 162, 39, 0.35) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.5rem 0 2rem;
}

.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.875rem;
}

.hero-brand-row img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.45);
}

.hero-brand-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: var(--white);
  line-height: 1.25;
}

.hero-brand-text em {
  display: block;
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-brand-text small {
  display: block;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.625rem;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 4vw, 2.625rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.625rem;
}

.hero-slide-title span { color: var(--gold); }

.hero-slide-text {
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 480px;
}

.hero-slide-meta {
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  margin-top: 1rem;
}

.hero-products-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
}

.hero-prod {
  text-align: center;
}

.hero-prod img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 2px solid rgba(255,255,255,0.92);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.hero-prod.featured img {
  width: 112px;
  height: 112px;
  border-color: var(--gold);
  padding: 5px;
}

.hero-prod span {
  display: block;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.95);
  margin-top: 6px;
  font-weight: 600;
}

.hero-logo-big {
  width: min(220px, 70%);
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 50px rgba(184, 115, 51, 0.35);
  margin: 0 auto;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-cta-group .btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.hero-swiper .swiper-pagination {
  bottom: 14px !important;
}

.hero-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.45;
  width: 8px;
  height: 8px;
}

.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 1rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.0625rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(184, 115, 51, 0.9);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  background: var(--white);
  padding: 3rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ============================================
   Section Blocks
   ============================================ */
.section-block {
  padding: 5rem 0;
}

.section-block.bg-white { background: var(--white); }
.section-block.bg-cream { background: var(--cream); }
.section-block.bg-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.section-block.bg-primary h2,
.section-block.bg-primary h3 { color: var(--white); }

/* About preview */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge .years {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge span { font-size: 0.75rem; }

.feature-list { list-style: none; padding: 0; margin: 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.feature-list li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   Product Cards
   ============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(165deg, #faf9f6 0%, #ffffff 55%, #f3f1eb 100%);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h5 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}

.product-price del {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}

.product-card-footer {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 8px;
}

.product-card-footer .btn {
  flex: 1;
  font-size: 0.8125rem;
  padding: 8px 12px;
  border-radius: 50px;
}

/* Product Slider */
.product-slider-section .swiper { padding-bottom: 3rem; }

.product-slider-section .swiper-button-next,
.product-slider-section .swiper-button-next {
  color: var(--primary);
}

/* ============================================
   Testimonial Cards
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.testimonial-author h6 {
  margin-bottom: 2px;
  font-size: 0.9375rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-rating {
  color: #f5a623;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ============================================
   Leader Cards
   ============================================ */
.leader-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.leader-img {
  position: relative;
  overflow: hidden;
}

.leader-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-img img { transform: scale(1.05); }

.leader-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(38,93,102,0.9));
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.leader-card:hover .leader-social { opacity: 1; }

.leader-social a {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.leader-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.leader-info { padding: 1.25rem; }

.leader-info h5 { font-size: 1.0625rem; margin-bottom: 4px; }

.leader-rank {
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem 1.25rem;
  background: var(--cream);
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form-wrap,
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(38, 93, 102, 0.15);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}

.contact-info-item h6 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.contact-info-item a:hover { color: var(--accent-light); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* ============================================
   Events
   ============================================ */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-body { padding: 1.25rem; flex: 1; }

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(38, 93, 102, 0.1);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.event-body h5 { font-size: 1.0625rem; margin-bottom: 0.5rem; }

.event-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.event-footer {
  padding: 0 1.25rem 1.25rem;
}

/* ============================================
   Gallery
   ============================================ */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 93, 102, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* ============================================
   Downloads
   ============================================ */
.download-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  height: 100%;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.download-icon {
  width: 56px;
  height: 56px;
  background: rgba(38, 93, 102, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.download-info { flex: 1; }

.download-info h6 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.download-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   Business / Income Plan
   ============================================ */
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.plan-card.featured {
  border-top-color: var(--accent);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.plan-icon {
  width: 70px;
  height: 70px;
  background: rgba(38, 93, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--primary);
}

.plan-card.featured .plan-icon {
  background: rgba(184, 115, 51, 0.15);
  color: var(--accent);
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  text-align: left;
}

.plan-list li {
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-list li i { color: var(--accent); }

.calculator-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.calculator-result {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
  text-align: center;
  margin-top: 1.5rem;
}

.calculator-result .result-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* ============================================
   Product Details
   ============================================ */
.product-detail-gallery .swiper { border-radius: var(--radius); }

.product-detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-detail-info h2 { margin-bottom: 0.75rem; }

.product-rating {
  color: #f5a623;
  margin-bottom: 1rem;
}

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.product-tabs .nav-link {
  color: var(--text);
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.product-tabs .nav-link.active {
  background: var(--primary);
  color: var(--white);
}

.qty-input {
  width: 80px;
  text-align: center;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 4rem 0;
  color: var(--white);
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }

.cta-section p {
  opacity: 0.92;
  max-width: 550px;
  margin: 0 auto 1.75rem;
}

.cta-section .btn-brand {
  background: var(--white);
  color: var(--accent-dark);
}

.cta-section .btn-brand:hover {
  background: var(--cream);
  color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 4rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  opacity: 0.85;
}

.footer-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-links a i { font-size: 0.625rem; color: var(--accent); }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: 0.8125rem;
}

.footer-bottom a { color: var(--accent-light); }

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.newsletter-form button {
  border: none;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--accent-light); }

/* ============================================
   Modal
   ============================================ */
.modal-content {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
}

.modal-header {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
}

.modal-header .btn-close { filter: brightness(0) invert(1); }

.modal-title {
  font-family: var(--font-heading);
  color: var(--white);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1040;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 100px;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

/* Legal pages */
.legal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.legal-content ul { padding-left: 1.25rem; }

/* Filter tabs */
.filter-tabs .nav-link {
  color: var(--text);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 4px;
  border: 1px solid var(--border);
}

.filter-tabs .nav-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Vision mission cards */
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  border-bottom: 4px solid var(--accent);
}

.mv-card .mv-icon {
  width: 80px;
  height: 80px;
  background: rgba(38, 93, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

/* Timeline */
.timeline { position: relative; padding-left: 30px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}

.timeline-item h5 { font-size: 1rem; margin: 4px 0; }

.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Process steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h5 { font-size: 1rem; }

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* Glassmorphism */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.hero-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--white);
  border: none;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1.25;
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.35);
}

.btn-gold.btn-sm {
  padding: 7px 14px;
  font-size: 0.8125rem;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184, 115, 51, 0.45);
  color: var(--white);
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-logo-showcase {
  max-width: 320px;
  border-radius: 50%;
  border: 4px solid rgba(184, 115, 51, 0.5);
  box-shadow: 0 0 60px rgba(184, 115, 51, 0.3), 0 0 120px rgba(38, 93, 102, 0.2);
  margin: 0 auto;
}

.hero-mandala-ring {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation: rotate-slow 60s linear infinite;
  pointer-events: none;
}

.hero-mandala-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: 50%;
}

/* Floating leaves container */
.floating-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-leaf {
  position: absolute;
  font-size: 1.5rem;
  color: var(--leaf);
  opacity: 0.25;
  animation: leaf-float 8s ease-in-out infinite;
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-top: -1px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}

.trust-item i { color: var(--accent); font-size: 1.125rem; }

/* Premium product card */
.product-card-premium {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.product-card-premium .product-card-img {
  background: linear-gradient(165deg, #faf9f6 0%, #ffffff 55%, #f3f1eb 100%);
  padding: 1.25rem;
}

.product-card-premium .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-premium .product-card-img img[src$=".svg"] {
  object-fit: contain;
  padding: 1.5rem;
}

.product-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(184, 115, 51, 0.2);
}

.product-detail-gallery .product-detail-gallery img,
.product-detail-gallery > .rounded img {
  object-fit: contain !important;
  background: linear-gradient(165deg, #faf9f6, #fff);
}

.product-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.75rem 0;
}

.price-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-mrp { background: rgba(43,43,43,0.08); color: var(--text-muted); text-decoration: line-through; }
.price-dp { background: rgba(38, 93, 102, 0.12); color: var(--primary); }
.price-bv { background: rgba(74, 124, 89, 0.15); color: var(--leaf); }

/* Category pills */
.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
  height: 100%;
}

.category-pill:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.category-pill .cat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(38,93,102,0.1), rgba(74,124,89,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.category-pill:hover .cat-icon {
  background: linear-gradient(135deg, var(--primary), var(--leaf));
  color: var(--white);
}

.category-pill h6 { font-size: 0.875rem; margin: 0; color: var(--primary); }

/* Mission Vision split */
.mv-split {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
}

.mv-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(26,69,76,0.95));
  z-index: 1;
}

.mv-split img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-split-content { position: relative; z-index: 2; }

.mv-split-content h3 { color: var(--white); }

/* Income overview cards */
.income-card {
  background: linear-gradient(145deg, var(--white), var(--cream));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
  height: 100%;
}

.income-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.income-card .income-icon {
  width: 52px;
  height: 52px;
  background: rgba(184, 115, 51, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.income-card h5 { font-size: 1rem; margin-bottom: 0.5rem; }

.income-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

.income-percent {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

/* Rewards grid */
.reward-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.reward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.reward-card:hover { transform: scale(1.03); box-shadow: var(--shadow-premium); }

.reward-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Achievement badges */
.achievement-item {
  text-align: center;
  padding: 1.5rem;
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(38, 93, 102, 0.25);
}

/* Leader rank badges */
.rank-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rank-crown { background: linear-gradient(135deg, #FFD700, #B8860B); color: #fff; }
.rank-royal { background: linear-gradient(135deg, #9b59b6, #6c3483); color: #fff; }
.rank-diamond { background: linear-gradient(135deg, #3498db, #2980b9); color: #fff; }
.rank-platinum { background: linear-gradient(135deg, #bdc3c7, #7f8c8d); color: #fff; }
.rank-gold { background: linear-gradient(135deg, var(--gold), var(--accent)); color: #fff; }

/* Event gallery mini */
.event-mini {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.event-mini img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.event-mini:hover img { transform: scale(1.08); }

.event-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26,69,76,0.9));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--white);
}

.event-mini-overlay h6 { color: var(--white); font-size: 0.875rem; margin: 0; }

/* Home FAQ compact */
.home-faq .accordion-button { font-size: 0.875rem; padding: 1rem; }

/* Contact CTA banner */
.contact-cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--leaf) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,115,51,0.2), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.contact-cta-banner h2 { color: var(--white); position: relative; }
.contact-cta-banner p { opacity: 0.92; position: relative; max-width: 550px; margin: 0 auto 1.5rem; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 1035;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* Dark mode toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(38, 93, 102, 0.1);
  border-radius: 50%;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover { background: var(--primary); color: var(--white); }

/* Login buttons nav */
.nav-login .btn-login {
  font-size: 0.8125rem;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  transition: var(--transition);
}

.nav-login .btn-login:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-login .btn-login-distributor {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.nav-login .btn-login-distributor:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Mouse glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* MLM tree preview */
.mlm-tree-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.tree-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--leaf));
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(38, 93, 102, 0.3);
}

.tree-node.root { width: 64px; height: 64px; background: linear-gradient(135deg, var(--accent), var(--gold)); font-size: 1rem; }

.tree-line { width: 2px; height: 30px; background: var(--accent); margin: 0 auto; opacity: 0.4; }

.tree-row { display: flex; justify-content: center; gap: 2rem; }

/* Company info strip */
.company-strip { display: none; }

/* Success story card */
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
}

.success-card:hover { box-shadow: var(--shadow-lg); }

.success-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}

.success-income {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}

/* Section premium header */
.section-header-premium { text-align: center; margin-bottom: 3.5rem; }

.section-header-premium .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38, 93, 102, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header-premium .section-label::before,
.section-header-premium .section-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* Luxury card & gradient border */
.luxury-card {
  position: relative;
  transition: var(--transition);
}

.gradient-border-wrap {
  position: relative;
}

.gradient-border-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--leaf), var(--primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.luxury-card:hover .gradient-border-wrap::after { opacity: 1; }

.product-quick-view {
  position: absolute;
  inset: 0;
  background: rgba(26, 69, 76, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card-premium:hover .product-quick-view { opacity: 1; }

.product-rating-sm {
  color: #f5a623;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-rating-sm span { color: var(--text-muted); }

/* Certificates */
.certificates-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--accent);
}

.cert-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.cert-card h6 { font-size: 0.875rem; margin: 0; color: var(--primary); }

/* Video testimonial */
.video-testimonial {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-testimonial img { width: 100%; height: 100%; object-fit: cover; }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(184, 115, 51, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.video-testimonial:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}

/* MLM tree animated */
.mlm-tree-animated .tree-node {
  animation: scaleIn 0.6s ease forwards;
  opacity: 0;
}

.mlm-tree-animated .tree-node:nth-child(1) { animation-delay: 0.2s; }
.mlm-tree-animated .tree-row .tree-node { animation-delay: 0.5s; }

/* Calculator tabs */
.calc-tabs .nav-link {
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  margin: 4px;
}

.calc-tabs .nav-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.rank-progress {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.rank-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 4px;
  transition: width 1s ease;
}

/* Hero overlay premium — handled by .hero-slide-overlay */
.hero-slide .hero-content h1 {
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

/* Business plan income types */
.income-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--leaf);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.income-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bv-pv-info {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}

.bv-pv-info h4 { color: var(--white); }

.bv-pv-box {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.bv-pv-box .bv-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
