/* ===================== ROOT – DARK ===================== */
:root,
[data-theme="dark"] {
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #181818;
  --dark-4: #1f1f1f;
  --white: #f4f1ec;
  --muted: #777;
  --purple: #7b4fd4;
  --border: rgba(201, 168, 76, 0.12);

  --bg: var(--dark);
  --bg-2: var(--dark-2);
  --bg-3: var(--dark-3);
  --text: var(--white);
  --text-muted: rgba(244, 241, 236, 0.58);
  --card-bg: var(--dark-3);
  --shadow: rgba(0, 0, 0, 0.5);
}

/* ===================== ROOT – LIGHT (Purple Theme) ===================== */
[data-theme="light"] {
  --gold: #6a3fc7;
  --gold-light: #8b62e0;
  --gold-dim: rgba(106, 63, 199, 0.1);
  --border: rgba(106, 63, 199, 0.2);
  --purple: #9b59b6;

  --bg: #f5f3fc;
  --bg-2: #ede9f8;
  --bg-3: #ffffff;

  --text: #1e1030;
  --text-muted: rgba(30, 16, 48, 0.72);
  --muted: #5b4880;
  --card-bg: #ffffff;
  --shadow: rgba(106, 63, 199, 0.12);
  --white: #1e1030;
}

/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Tajawal", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  direction: rtl;
  transition:
    background 0.45s ease,
    color 0.45s ease;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ===================== THEME TOGGLE ===================== */
.theme-toggle {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.theme-toggle:hover {
  transform: scale(1.12) rotate(15deg);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.55);
}
.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}
[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}
[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] #navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
}
[data-theme="light"] #navbar.scrolled {
  background: rgba(245, 243, 252, 0.96);
  border-bottom-color: rgba(106, 63, 199, 0.15);
}

/* LOGO */
.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  margin-left: 2rem;
}
.logo-text {
  font-family: "Tajawal", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  order: 2;
}
.logo-shapes {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  height: 32px;
  padding-top: 2px;
  order: 1;
}
.logo-bar-1 {
  width: 6px;
  height: 32px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.35);
  border: 1px solid rgba(201, 168, 76, 0.5);
  order: 2;
}
.logo-bar-2 {
  width: 6px;
  height: 32px;
  border-radius: 10px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
  order: 3;
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 10px rgba(232, 201, 107, 0.7),
    0 0 20px rgba(201, 168, 76, 0.3);
  align-self: flex-start;
  order: 1;
}

/* NAV LINKS – DESKTOP */
.nav-link-custom {
  color: var(--text-muted) !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  padding: 6px 0 !important;
  position: relative;
}
.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link-custom:hover {
  color: var(--gold) !important;
}
.nav-link-custom:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.nav-cta::after {
  display: none;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
  position: relative;
  z-index: 10001;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================== NAVBAR MOBILE – DROPDOWN ===================== */
@media (max-width: 991px) {
  #navbar .navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    background: var(--bg);
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px var(--shadow);
    padding: 12px 0 20px !important;
    transform: none !important;
    overflow: visible !important;
  }

  [data-theme="dark"] #navbar .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
  }
  [data-theme="light"] #navbar .navbar-collapse {
    background: rgba(245, 243, 252, 0.98);
  }

  #navbar .navbar-nav {
    flex-direction: column !important;
    align-items: center;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  #navbar .nav-item {
    width: 100%;
  }

  #navbar .nav-link-custom {
    font-size: 16px !important;
    font-weight: 600;
    padding: 14px 24px !important;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
  }

  #navbar .nav-link-custom::after {
    display: none;
  }
  #navbar .nav-link-custom:hover {
    color: var(--gold) !important;
    background: var(--gold-dim);
  }

  /* زر ابدأ مشروعك */
  #navbar .nav-cta-mobile {
    display: inline-block !important;
    margin-top: 16px;
    background: var(--gold);
    color: #fff !important;
    padding: 11px 36px !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
  }

  #navbar .nav-cta-mobile:hover {
    background: var(--gold-light);
  }
  [data-theme="light"] #navbar .nav-cta-mobile {
    background: #6a3fc7;
  }
  [data-theme="light"] #navbar .nav-cta-mobile:hover {
    background: #8b62e0;
  }
}

/* ===================== HERO ===================== */
.hero-section {
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.hero-bg-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123, 79, 212, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}

.hero-title {
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
}
.hero-title .gold {
  color: var(--gold);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 400;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-btns {
  animation: fadeUp 1s 0.2s ease both;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 14px 38px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 15px;
  font-family: "Tajawal", sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201, 168, 76, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  font-family: "Tajawal", sans-serif;
  border: 1px solid rgba(244, 241, 236, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
[data-theme="light"] .btn-ghost {
  border-color: rgba(106, 63, 199, 0.35);
  color: #1e1030;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===================== HERO CARD ===================== */
.hero-card {
  min-height: 350px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px var(--shadow);
  animation: fadeIn 1.1s 0.3s ease both;
  display: flex;
  flex-direction: column;
  transition:
    background 0.45s,
    border-color 0.45s,
    box-shadow 0.45s;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
}

.card-nav-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.card-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(128, 128, 128, 0.25);
  transition: all 0.4s ease;
}
.card-nav-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.card-slider-wrap {
  position: relative;
  flex: 1;
}
.card-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(36px);
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}
.card-slide.exit {
  opacity: 0;
  transform: translateX(-36px);
  pointer-events: none;
  position: absolute;
}

.mini-svc {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 52px 24px 44px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.mini-svc:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--shadow);
}
.mini-svc i {
  font-size: 36px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  transition:
    transform 0.3s,
    color 0.3s;
  position: relative;
}
.mini-svc:hover i {
  color: var(--gold-light);
  transform: scale(1.1) translateY(-2px);
}
.mini-svc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 5px;
}
.mini-svc-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.card-progress-wrap {
  height: 2px;
  background: rgba(128, 128, 128, 0.12);
  border-radius: 1px;
  margin-top: 20px;
  overflow: hidden;
}
.card-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: width 0.1s linear;
}

/* ===================== STATS ===================== */
.stats-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
  transition: background 0.45s;
}
.stat-block {
  text-align: center;
  position: relative;
}
.stat-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  height: 80%;
  width: 1px;
  background: rgba(128, 128, 128, 0.15);
}
.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ===================== ABOUT ===================== */
.about-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background 0.45s;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 500;
}

.vm-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 36px;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}
.vm-card:hover::before {
  width: 100%;
}
.vm-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow);
}
.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 24px;
}
.vm-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.vm-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 400;
}

/* ===================== SERVICES ===================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-2);
  transition: background 0.45s;
}
.acc-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px !important;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.acc-item.open {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px var(--shadow);
}
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}
.acc-header:hover {
  background: var(--gold-dim);
}
.acc-num {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  min-width: 44px;
}
.acc-name {
  font-size: 18px;
  font-weight: 700;
  flex: 1;
  padding: 0 16px;
  color: var(--text);
}
.acc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  transition: all 0.35s;
}
.acc-item.open .acc-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(90deg);
  border-color: var(--gold);
}
.acc-body {
  display: none;
  padding: 0 28px 28px;
  animation: fadeUp 0.3s ease;
}
.acc-body.show {
  display: block;
}
.acc-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}
.acc-sub-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.acc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.acc-tag {
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* ===================== WHY US ===================== */
.why-section {
  padding: 100px 0;
  background: var(--bg);
  transition: background 0.45s;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s;
  height: 100%;
}
.why-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}
.why-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.why-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.why-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

/* ===================== CTA ===================== */
.cta-section {
  padding: 100px 0;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.45s;
}
.cta-section::before {
  content: "رتق";
  position: absolute;
  font-size: 320px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}
.cta-title {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
  color: var(--text);
}
.cta-sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 44px;
  position: relative;
  font-weight: 500;
}

/* ===================== CTA FIX – BUTTONS CLICKABLE ===================== */
.cta-section .reveal {
  position: relative;
  z-index: 2;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  transition: background 0.45s;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 260px;
  font-weight: 500;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s;
  font-weight: 500;
}
.footer-link:hover {
  color: var(--gold);
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-left: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== THEME TRANSITION ===================== */
body.theme-transitioning * {
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    color 0.35s ease,
    box-shadow 0.45s ease !important;
}

/* ===================== LIGHT MODE – PURPLE OVERRIDES ===================== */
[data-theme="light"] .hero-grid-lines {
  background-image:
    linear-gradient(rgba(106, 63, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 63, 199, 0.05) 1px, transparent 1px);
}
[data-theme="light"] .hero-bg-glow-1 {
  background: radial-gradient(
    circle,
    rgba(106, 63, 199, 0.1) 0%,
    transparent 65%
  );
}
[data-theme="light"] .hero-bg-glow-2 {
  background: radial-gradient(
    circle,
    rgba(139, 98, 224, 0.08) 0%,
    transparent 65%
  );
}
[data-theme="light"] .hero-card::before {
  background: linear-gradient(90deg, #6a3fc7, #b06adb);
}
[data-theme="light"] .acc-header:hover {
  background: rgba(106, 63, 199, 0.06);
}
[data-theme="light"] .cta-section::before {
  color: rgba(106, 63, 199, 0.05);
}
[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: #6a3fc7;
}
[data-theme="light"] .theme-toggle {
  background: #6a3fc7;
  box-shadow: 0 6px 28px rgba(106, 63, 199, 0.4);
  color: #fff;
}
[data-theme="light"] .theme-toggle:hover {
  box-shadow: 0 10px 40px rgba(106, 63, 199, 0.55);
}
[data-theme="light"] .nav-cta {
  background: #6a3fc7;
  color: #fff !important;
}
[data-theme="light"] .nav-cta:hover {
  background: #8b62e0 !important;
}
[data-theme="light"] .btn-gold {
  background: #6a3fc7;
  color: #fff;
}
[data-theme="light"] .btn-gold:hover {
  background: #8b62e0;
  color: #fff;
}
[data-theme="light"] .btn-ghost {
  border-color: rgba(106, 63, 199, 0.35);
  color: #1e1030;
}
[data-theme="light"] .btn-ghost:hover {
  border-color: #6a3fc7;
  color: #6a3fc7;
}
[data-theme="light"] .vm-card {
  background: #6a3fc7;
  border-color: #6a3fc7;
}
[data-theme="light"] .vm-card:hover {
  background: #8b62e0;
  border-color: #8b62e0;
  box-shadow: 0 20px 60px rgba(106, 63, 199, 0.35);
}
[data-theme="light"] .vm-card::before {
  background: rgba(255, 255, 255, 0.3);
}
[data-theme="light"] .vm-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
[data-theme="light"] .vm-title {
  color: #ffffff;
}
[data-theme="light"] .vm-text {
  color: rgba(255, 255, 255, 0.82);
}
[data-theme="light"] .social-icon:hover {
  border-color: #6a3fc7;
  color: #6a3fc7;
  background: rgba(106, 63, 199, 0.08);
}
[data-theme="light"] .acc-item.open {
  border-color: #6a3fc7;
}
[data-theme="light"] .acc-item {
  background: #6a3fc7;
  border-color: #6a3fc7;
}
[data-theme="light"] .acc-item.open {
  background: #6a3fc7;
}
[data-theme="light"] .acc-name {
  color: #ffffff;
}
[data-theme="light"] .acc-num {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme="light"] .acc-icon {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
[data-theme="light"] .acc-item.open .acc-icon {
  background: #ffffff;
  color: #6a3fc7;
  border-color: #ffffff;
}
[data-theme="light"] .acc-header:hover {
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .acc-desc {
  color: rgba(255, 255, 255, 0.85);
}
[data-theme="light"] .acc-sub-label {
  color: rgba(255, 255, 255, 0.6);
}
[data-theme="light"] .acc-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ===================== ACC IMAGES ===================== */
.acc-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.acc-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.acc-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 28px;
}
[data-theme="dark"] .acc-img-placeholder {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  color: rgba(201, 168, 76, 0.3);
}
@media (max-width: 576px) {
  .acc-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
[data-theme="light"] .acc-item.open .acc-icon {
  background: #6a3fc7;
  border-color: #6a3fc7;
  color: #fff;
}
[data-theme="light"] .card-nav-dot.active {
  background: #6a3fc7;
  box-shadow: 0 0 10px rgba(106, 63, 199, 0.4);
}
[data-theme="light"] .card-progress-fill {
  background: linear-gradient(90deg, #6a3fc7, #8b62e0);
}
[data-theme="light"] .hero-badge {
  background: rgba(106, 63, 199, 0.1);
  border-color: rgba(106, 63, 199, 0.3);
  color: #6a3fc7;
}
[data-theme="light"] .hero-badge .badge-dot {
  background: #6a3fc7;
}

/* ===================== MINI-SVC CARDS – LIGHT MODE ===================== */
[data-theme="light"] .mini-svc {
  background: #6a3fc7;
  border-color: #6a3fc7;
}
[data-theme="light"] .mini-svc:hover {
  background: #8b62e0;
  border-color: #8b62e0;
  box-shadow: 0 16px 40px rgba(106, 63, 199, 0.35);
}
[data-theme="light"] .mini-svc i {
  color: #ffffff;
}
[data-theme="light"] .mini-svc:hover i {
  color: rgba(255, 255, 255, 0.85);
}
[data-theme="light"] .mini-svc-name {
  color: #ffffff;
}
[data-theme="light"] .mini-svc-sub {
  color: rgba(255, 255, 255, 0.75);
}

/* ===================== WHY CARDS – LIGHT MODE ===================== */
[data-theme="light"] .why-card {
  background: #6a3fc7;
  border-color: #6a3fc7;
}
[data-theme="light"] .why-card:hover {
  background: #8b62e0;
  border-color: #8b62e0;
  box-shadow: 0 16px 48px rgba(106, 63, 199, 0.35);
}
[data-theme="light"] .why-icon {
  color: #ffffff;
}
[data-theme="light"] .why-title {
  color: #ffffff;
}
[data-theme="light"] .why-text {
  color: rgba(255, 255, 255, 0.82);
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 992px) {
  .navbar-collapse {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .hero-card-col {
    display: block;
  }
  .hero-title {
    font-size: clamp(36px, 8vw, 56px);
  }
  .stat-num {
    font-size: 36px;
  }
  .hero-card {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .hero-card {
    padding: 20px 16px 18px;
    min-height: unset;
  }
  .card-slide {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mini-svc {
    padding: 28px 12px 22px;
    border-radius: 10px;
  }
  .mini-svc i {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .mini-svc-name {
    font-size: 14px;
  }
  .mini-svc-sub {
    font-size: 11px;
  }
  .acc-name {
    font-size: 16px;
  }
}

/* ================= HERO MOBILE ================= */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.4;
  }
  .hero-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-card {
    margin-bottom: 30px;
  }
}