/* ==========================================================================
   Spot Impact - Master Modern Theme (Dark / Light Mode & RTL / LTR)
   ========================================================================== */

:root {
  --spot-font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  --spot-font-en: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --spot-purple: #8b5cf6;
  --spot-purple-dark: #7c3aed;
  --spot-purple-light: #a78bfa;
  --spot-purple-glow: rgba(139, 92, 246, 0.45);

  /* Primary Default: Dark Mode */
  --spot-bg: #090212;
  --spot-bg-hero: radial-gradient(ellipse at 50% 30%, #1c0e3a 0%, #0d0620 55%, #080314 100%);
  --spot-text-title: #ffffff;
  --spot-text-sub: #ffffff;
  --spot-text-desc: rgba(255, 255, 255, 0.75);
  --spot-nav-bg: rgba(18, 10, 38, 0.92);
  --spot-nav-border: rgba(255, 255, 255, 0.12);
  --spot-nav-link: #ffffff;
  --spot-nav-link-hover: #c084fc;
  --spot-card-border: rgba(255, 255, 255, 0.1);
  --spot-card-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85);
  --spot-partners-bg: #120e27;
  --spot-partners-border: rgba(255, 255, 255, 0.08);
  --spot-pill-bg: rgba(255, 255, 255, 0.08);
  --spot-toggle-bg: #8b5cf6;
  --spot-toggle-icon: #ffffff;
  --spot-counter-num: #ffffff;
  --spot-counter-label: rgba(255, 255, 255, 0.7);
  --spot-card-glow: rgba(139, 92, 246, 0.5);
  color-scheme: dark;
}

/* ==========================================================================
   Dark Theme (Matches Reference Images 1 & 2 Exactly)
   ========================================================================== */
html[data-theme="dark"], 
body[data-theme="dark"], 
[data-theme="dark"] {
  --spot-bg: #090212;
  --spot-bg-hero: radial-gradient(ellipse at 50% 30%, #1c0e3a 0%, #0d0620 55%, #080314 100%);
  --spot-text-title: #ffffff;
  --spot-text-sub: #ffffff;
  --spot-text-desc: rgba(255, 255, 255, 0.75);
  --spot-nav-bg: rgba(18, 10, 38, 0.92);
  --spot-nav-border: rgba(255, 255, 255, 0.12);
  --spot-nav-link: #ffffff;
  --spot-nav-link-hover: #c084fc;
  --spot-card-border: rgba(255, 255, 255, 0.1);
  --spot-card-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85);
  --spot-partners-bg: #120e27;
  --spot-partners-border: rgba(255, 255, 255, 0.08);
  --spot-pill-bg: rgba(255, 255, 255, 0.08);
  --spot-toggle-bg: #8b5cf6;
  --spot-toggle-icon: #ffffff;
  --spot-counter-num: #ffffff;
  --spot-counter-label: rgba(255, 255, 255, 0.7);
  --spot-card-glow: rgba(139, 92, 246, 0.5);
  color-scheme: dark;
}

/* ==========================================================================
   Light Theme (Matches Reference Image 3 Exactly - Soft Lavender)
   ========================================================================== */
html[data-theme="light"], 
body[data-theme="light"], 
[data-theme="light"] {
  --spot-bg: #e5daf3;
  --spot-bg-hero: radial-gradient(ellipse at 50% 30%, #ded0f1 0%, #e5daf3 55%, #ebe1f7 100%);
  --spot-text-title: #1a1033;
  --spot-text-sub: #251647;
  --spot-text-desc: #5a4f73;
  --spot-nav-bg: #ecebf5;
  --spot-nav-border: rgba(139, 92, 246, 0.2);
  --spot-nav-link: #241940;
  --spot-nav-link-hover: #7c3aed;
  --spot-card-border: rgba(255, 255, 255, 0.9);
  --spot-card-shadow: 0 18px 40px -8px rgba(109, 40, 217, 0.16);
  --spot-partners-bg: #e5daf3;
  --spot-partners-border: rgba(215, 205, 235, 0.8);
  --spot-pill-bg: rgba(139, 92, 246, 0.12);
  --spot-toggle-bg: #fbbf24;
  --spot-toggle-icon: #78350f;
  --spot-counter-num: #1a1033;
  --spot-counter-label: #5a4f73;
  --spot-card-glow: rgba(168, 85, 247, 0.35);
}

/* Strong Background Enforcers */
html, 
body {
  background-color: var(--spot-bg) !important;
  color: var(--spot-text-desc);
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

#main {
  background-color: var(--spot-bg) !important;
}

#hero, 
section#hero, 
.spot-hero-section {
  background: var(--spot-bg-hero) !important;
  background-color: var(--spot-bg) !important;
}

/* ==========================================================================
   Floating Navbar Capsule
   ========================================================================== */
.spot-header-fixed,
#header,
header#header,
#header.header-scrolled,
#header.header-inner-pages,
header.header-scrolled {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.spot-nav-capsule {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1220px;
  padding: 8px 18px;
  background: var(--spot-nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--spot-nav-border);
  border-radius: 9999px;
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.spot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: var(--spot-text-title) !important;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.spot-brand:hover {
  transform: translateY(-1px);
}

.spot-brand-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.spot-brand-icon img, .spot-brand-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-brand:hover .spot-brand-icon img,
.spot-brand:hover .spot-brand-icon svg {
  transform: scale(1.08);
}

/* ==========================================================================
   Logo Contrast & Theme Adaptation (Dark / Light Mode)
   ========================================================================== */
/* Dark Mode: Vibrant, high-contrast, glowing purple logo that pops beautifully */
html[data-theme="dark"] .spot-brand-icon img,
[data-theme="dark"] .spot-brand-icon img,
html[data-theme="dark"] .spot-footer-brand img,
[data-theme="dark"] .spot-footer-brand img {
  filter: brightness(4.2) saturate(1.8) contrast(1.2) drop-shadow(0 0 10px rgba(168, 85, 247, 0.65));
}

/* Light Mode: Rich, crisp dark-purple logo with subtle depth */
html[data-theme="light"] .spot-brand-icon img,
[data-theme="light"] .spot-brand-icon img,
html[data-theme="light"] .spot-footer-brand img,
[data-theme="light"] .spot-footer-brand img {
  filter: brightness(1) contrast(1.15) drop-shadow(0 2px 5px rgba(35, 13, 60, 0.2));
}

.spot-brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--spot-text-title);
  font-family: var(--spot-font-en);
}

html[dir="rtl"] .spot-brand-text {
  font-family: var(--spot-font-ar);
  font-weight: 800;
}

@media (max-width: 768px) {
  .spot-brand {
    gap: 10px;
  }
  .spot-brand-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .spot-brand-text {
    font-size: 1.12rem;
  }
}

.spot-nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.spot-nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--spot-nav-link) !important;
  text-decoration: none !important;
  transition: color 0.25s ease, transform 0.2s ease;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

html[dir="rtl"] .spot-nav-link {
  font-family: var(--spot-font-ar);
}

.spot-nav-link:hover, .spot-nav-link.active {
  color: var(--spot-nav-link-hover) !important;
}

.spot-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ==========================================================================
   Start Project Button & Square Action Buttons (Matching Reference Design)
   ========================================================================== */
.spot-btn-start-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.35;
}

.spot-btn-start-project:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.5);
  transform: translateY(-1px);
  color: #ffffff !important;
}

/* Small Square Buttons for Language & Theme Switch (36px x 36px) */
.spot-square-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1 !important;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.spot-square-btn:hover {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.55);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.spot-square-btn i {
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.spot-square-btn:hover i {
  transform: scale(1.12);
}

/* Light Mode Overrides for Action Buttons */
html[data-theme="light"] .spot-btn-start-project {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.28);
  color: #ffffff !important;
}

html[data-theme="light"] .spot-square-btn {
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: #4b5563 !important;
  box-shadow: 0 2px 6px rgba(109, 40, 217, 0.06);
}

html[data-theme="light"] .spot-square-btn:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: #8b5cf6;
  color: #1e1b4b !important;
}

html[data-theme="light"] .spot-square-btn .mobileThemeToggleIcon,
html[data-theme="light"] .spot-square-btn #themeToggleIcon {
  color: #f59e0b !important;
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.spot-hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 125px 20px 40px 20px;
  background: var(--spot-bg-hero) !important;
  overflow: hidden;
  text-align: center;
}

.spot-hero-headings {
  max-width: 820px;
  margin: 0 auto 38px auto;
  z-index: 2;
  position: relative;
}

.spot-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--spot-text-title);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

html[dir="rtl"] .spot-hero-title {
  font-family: var(--spot-font-ar);
}

.spot-highlight-word {
  background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.45);
}

.spot-hero-subtitle {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--spot-text-sub);
  margin-bottom: 12px;
}

html[dir="rtl"] .spot-hero-subtitle {
  font-family: var(--spot-font-ar);
}

.spot-hero-desc {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--spot-text-desc);
  margin: 0 auto;
  max-width: 620px;
}

html[dir="rtl"] .spot-hero-desc {
  font-family: var(--spot-font-ar);
}

/* ==========================================================================
   Showcase Visual Container (Cards + Avatars)
   ========================================================================== */
.spot-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ambient glow orb behind middle card */
.spot-center-glow-orb {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--spot-card-glow);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
}

/* Critical: LTR direction lock to match reference images */
.spot-showcase-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  position: relative;
  z-index: 2;
  direction: ltr !important;
}

/* Left Customer Counter & Avatars */
.spot-customer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-right: 18px;
  flex-shrink: 0;
  direction: ltr !important;
}

.spot-avatars-overlap {
  display: flex;
  align-items: center;
  position: relative;
  direction: ltr !important;
}

.spot-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--spot-purple);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
  overflow: hidden;
  background: #1e1538;
  position: relative;
  margin-left: -14px;
  transition: transform 0.25s ease;
}

.spot-avatar-circle:first-child {
  margin-left: 0;
}

.spot-avatar-circle:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 5;
}

.spot-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-customer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--spot-font-en);
  text-align: center;
}

html[dir="rtl"] .spot-customer-info {
  font-family: var(--spot-font-ar);
}

.spot-customer-count {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--spot-counter-num);
}

.spot-customer-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--spot-counter-label);
}

/* 4 Showcase Cards (Fixed LTR sequence matching reference images) */
.spot-cards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  direction: ltr !important;
}

.spot-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--spot-card-border);
  box-shadow: var(--spot-card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: rgba(18, 11, 36, 0.4);
}

.spot-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spot-card:hover img {
  transform: scale(1.04);
}

/* Card Sizes Matching Reference Images */
.spot-card-1 {
  width: 175px;
  height: 220px;
}

.spot-card-2 {
  width: 185px;
  height: 275px;
  transform: translateY(-22px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 25px 50px -10px var(--spot-purple-glow);
}

.spot-card-2:hover {
  transform: translateY(-28px) scale(1.02);
}

.spot-card-3 {
  width: 175px;
  height: 245px;
  transform: translateY(-8px);
}

.spot-card-4 {
  width: 175px;
  height: 220px;
}

/* CTA Pill Buttons (Centered under cards) */
.spot-cta-container {
  margin-top: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.spot-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 38px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #9333ea 100%);
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

html[dir="rtl"] .spot-cta-btn {
  font-family: var(--spot-font-ar);
}

.spot-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 38px rgba(124, 58, 237, 0.75);
  color: #ffffff !important;
}

/* Secondary Profile CTA Button: "البروفايل الشخصي" */
.spot-profile-cta-btn {
  background: rgba(124, 58, 237, 0.15) !important;
  border: 1.5px solid #a855f7 !important;
  color: #c084fc !important;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html[data-theme="light"] .spot-profile-cta-btn {
  background: rgba(124, 58, 237, 0.08) !important;
  border-color: #7c3aed !important;
  color: #6d28d9 !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.spot-profile-cta-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 38px rgba(124, 58, 237, 0.6);
}

.spot-profile-cta-btn i {
  font-size: 1.15rem;
}

/* ==========================================================================
   Partners / Clients Logos Section - Infinite Smooth Marquee
   ========================================================================== */
.spot-partners-bar {
  width: 100%;
  padding: 8px 0 !important;
  margin: 0 !important;
  transition: background 0.35s ease, border-color 0.35s ease;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

html[data-theme="dark"] .spot-partners-bar {
  background: #0d0822 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .spot-partners-bar {
  background: #ffffff !important;
  border-top: 1px solid rgba(224, 216, 240, 0.7) !important;
  border-bottom: 1px solid rgba(224, 216, 240, 0.7) !important;
  box-shadow: none !important;
}

/* Marquee Container with smooth edge fade masks */
.spot-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  direction: ltr !important;
  padding: 4px 0;
}

/* Continuous Double-Track Animation */
.spot-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: spotMarqueeScroll 34s linear infinite;
  direction: ltr !important;
}

/* Pause smoothly when hovering over the marquee */
.spot-partners-bar:hover .spot-marquee-track {
  animation-play-state: paused;
}

/* Group of items - tight spacing without huge empty margins */
.spot-marquee-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 100%;
  flex-shrink: 0;
  gap: 12px;
  padding: 0 6px;
}

/* Individual Marquee Item - Snug, high-contrast card */
.spot-marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 90px;
  max-width: 160px;
  padding: 4px 14px;
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
  user-select: none;
  cursor: default;
}

/* Clickable Logo Link */
.spot-marquee-link {
  text-decoration: none;
  cursor: pointer;
}

/* Dark Mode Card Styling - High contrast backdrop */
html[data-theme="dark"] .spot-marquee-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

html[data-theme="dark"] .spot-marquee-item:hover,
html[data-theme="dark"] .spot-marquee-link:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Light Mode Card Styling - Clean white elevated card */
html[data-theme="light"] .spot-marquee-item {
  background: #ffffff;
  border: 1px solid rgba(109, 40, 217, 0.13);
  box-shadow: 0 2px 10px rgba(109, 40, 217, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .spot-marquee-item:hover,
html[data-theme="light"] .spot-marquee-link:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: #a855f7;
  box-shadow: 0 6px 18px rgba(109, 40, 217, 0.16);
}

/* Logo Image Inside - Prominently sized on the glass background */
.spot-marquee-item img {
  height: 44px;
  max-height: 46px;
  max-width: 145px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Dark Mode Contrast & Luminance Boost */
html[data-theme="dark"] .spot-marquee-item img {
  filter: brightness(1.4) contrast(1.15) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

html[data-theme="dark"] .spot-marquee-item:hover img,
html[data-theme="dark"] .spot-marquee-link:hover img {
  filter: brightness(1.55) contrast(1.2) drop-shadow(0 3px 10px rgba(168, 85, 247, 0.4));
  transform: scale(1.04);
}

/* Light Mode Contrast */
html[data-theme="light"] .spot-marquee-item img {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06));
}

html[data-theme="light"] .spot-marquee-item:hover img,
html[data-theme="light"] .spot-marquee-link:hover img {
  filter: drop-shadow(0 3px 8px rgba(109, 40, 217, 0.2));
  transform: scale(1.04);
}

/* Smooth Hardware-Accelerated Continuous Scrolling Animation */
@keyframes spotMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Dual Dark/Light Logo Switcher */
html[data-theme="dark"] .spot-logo-light,
html[data-theme="dark"] .aramark-logo-light {
  display: none !important;
}
html[data-theme="dark"] .spot-logo-dark,
html[data-theme="dark"] .aramark-logo-dark {
  display: inline-block !important;
}
html[data-theme="light"] .spot-logo-dark,
html[data-theme="light"] .aramark-logo-dark {
  display: none !important;
}
html[data-theme="light"] .spot-logo-light,
html[data-theme="light"] .aramark-logo-light {
  display: inline-block !important;
}

/* Responsive adjustment for Mobile & Tablets */
@media (max-width: 991px) {
  .spot-partners-bar {
    padding: 6px 0 !important;
  }
  .spot-marquee-group {
    gap: 10px;
    padding: 0 4px;
  }
  .spot-marquee-item {
    height: 44px;
    min-width: 80px;
    max-width: 130px;
    padding: 3px 10px;
    border-radius: 10px;
  }
  .spot-marquee-item img {
    height: 32px;
    max-height: 34px;
    max-width: 100px;
  }
  .spot-marquee-track {
    animation-duration: 26s;
  }
}

@media (max-width: 576px) {
  .spot-partners-bar {
    padding: 4px 0 !important;
  }
  .spot-marquee-group {
    gap: 8px;
    padding: 0 4px;
  }
  .spot-marquee-item {
    height: 38px;
    min-width: 65px;
    max-width: 100px;
    padding: 2px 8px;
    border-radius: 8px;
  }
  .spot-marquee-item img {
    height: 26px;
    max-height: 28px;
    max-width: 75px;
  }
  .spot-marquee-track {
    animation-duration: 20s;
  }
  .spot-marquee-container {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
}

/* ==========================================================================
   Spot Impact - About Us & Why Us Section Styling
   ========================================================================== */
.spot-about-section {
  padding: 100px 0 60px 0;
  background: var(--spot-bg) !important;
  position: relative;
  overflow: hidden;
  transition: background-color 0.35s ease;
}

.spot-about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tag & Indicator */
.spot-about-tag-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.spot-about-bar {
  width: 5px;
  height: 34px;
  background: var(--spot-purple);
  border-radius: 4px;
  box-shadow: 0 0 16px var(--spot-purple);
}

.spot-about-tag {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--spot-text-title);
  letter-spacing: -0.3px;
  margin: 0;
}

html[dir="rtl"] .spot-about-tag {
  font-family: var(--spot-font-ar);
}

.spot-about-headline {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--spot-text-sub);
  margin-bottom: 16px;
}

html[dir="rtl"] .spot-about-headline {
  font-family: var(--spot-font-ar);
}

.spot-about-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--spot-text-desc);
  margin-bottom: 35px;
  max-width: 540px;
}

html[dir="rtl"] .spot-about-desc {
  font-family: var(--spot-font-ar);
}

/* 2x2 Stats Grid */
.spot-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  max-width: 500px;
}

.spot-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease;
}

.spot-stat-item:hover {
  transform: translateY(-2px);
}

.spot-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--spot-purple-light);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

html[data-theme="light"] .spot-stat-icon {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.1);
}

.spot-stat-item:hover .spot-stat-icon {
  background: var(--spot-purple);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--spot-purple-glow);
}

.spot-stat-info {
  display: flex;
  flex-direction: column;
}

.spot-stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--spot-purple-light);
  font-family: var(--spot-font-en);
}

html[data-theme="light"] .spot-stat-number {
  color: #7c3aed;
}

.spot-stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--spot-text-desc);
  margin-top: 3px;
}

html[dir="rtl"] .spot-stat-label {
  font-family: var(--spot-font-ar);
}

/* Image Card (Right in Arabic, Left in English) */
.spot-about-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.spot-about-card {
  width: 100%;
  max-width: 380px;
  height: 480px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--spot-card-border);
  box-shadow: var(--spot-card-shadow);
  background: rgba(18, 10, 38, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spot-about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px -15px var(--spot-purple-glow);
}

.spot-about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spot-about-card:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.spot-why-section {
  padding: 50px 0 90px 0;
  background: var(--spot-bg) !important;
  position: relative;
  transition: background-color 0.35s ease;
}

.spot-why-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--spot-text-title);
  margin-bottom: 45px;
  letter-spacing: -0.3px;
}

html[dir="rtl"] .spot-why-title {
  font-family: var(--spot-font-ar);
}

.spot-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.spot-why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease;
}

.spot-why-item:hover {
  transform: translateY(-4px);
}

.spot-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--spot-purple-light);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

html[data-theme="light"] .spot-why-icon {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.1);
}

.spot-why-item:hover .spot-why-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff !important;
  box-shadow: 0 8px 25px var(--spot-purple-glow);
}

.spot-why-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--spot-text-title);
  margin: 0;
  line-height: 1.35;
}

html[dir="rtl"] .spot-why-heading {
  font-family: var(--spot-font-ar);
}

.spot-why-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--spot-text-desc);
  margin: 0;
}

html[dir="rtl"] .spot-why-desc {
  font-family: var(--spot-font-ar);
}

/* ==========================================================================
   Spot Impact - Services Section
   ========================================================================== */
.spot-services-section {
  padding: 80px 0 90px 0;
  background: var(--spot-bg) !important;
  position: relative;
  transition: background-color 0.35s ease;
}

.spot-services-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.spot-services-headline {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--spot-text-sub);
  margin-bottom: 14px;
  max-width: 840px;
}

html[dir="rtl"] .spot-services-headline {
  font-family: var(--spot-font-ar);
}

.spot-services-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--spot-text-desc);
  margin-bottom: 45px;
  max-width: 740px;
}

html[dir="rtl"] .spot-services-desc {
  font-family: var(--spot-font-ar);
}

/* 2x2 Services Grid */
.spot-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.spot-service-card {
  position: relative;
  border-radius: 20px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Dark Mode Card */
html[data-theme="dark"] .spot-service-card {
  background: rgba(18, 9, 32, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.16);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.65);
}

html[data-theme="dark"] .spot-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 22px 48px -10px var(--spot-purple-glow);
}

/* Light Mode Card */
html[data-theme="light"] .spot-service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 14px 34px -10px rgba(109, 40, 217, 0.12);
}

html[data-theme="light"] .spot-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 20px 45px -8px rgba(124, 58, 237, 0.22);
}

/* Inner 2-column layout matching the screenshots */
.spot-service-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.spot-service-left {
  display: flex;
  flex-direction: column;
}

.spot-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.spot-service-card:hover .spot-service-icon {
  transform: scale(1.08) rotate(2deg);
}

.spot-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--spot-text-title);
  margin-bottom: 12px;
}

html[dir="rtl"] .spot-service-title {
  font-family: var(--spot-font-ar);
}

.spot-service-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--spot-text-desc);
  margin: 0;
}

html[dir="rtl"] .spot-service-desc {
  font-family: var(--spot-font-ar);
}

/* Right Side: Features & CTA */
.spot-service-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.spot-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.spot-service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--spot-text-title);
}

html[dir="rtl"] .spot-service-feature-item {
  font-family: var(--spot-font-ar);
}

.spot-service-check-icon {
  font-size: 1.1rem;
  color: var(--spot-purple);
  flex-shrink: 0;
}

/* Collapsible extra items */
.spot-service-extra-items {
  display: none;
}

.spot-service-extra-items.show {
  display: block;
}

/* See More / Less link */
.spot-service-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px 0;
  margin-bottom: 12px;
  color: #c084fc;
  transition: color 0.2s ease;
}

html[data-theme="light"] .spot-service-more-btn {
  color: #7c3aed;
}

.spot-service-more-btn:hover {
  text-decoration: underline;
}

/* CTA Button (Get an Estimate) */
.spot-service-cta-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

html[dir="rtl"] .spot-service-cta-wrapper {
  justify-content: flex-start;
}

.spot-service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

html[dir="rtl"] .spot-service-cta-btn {
  font-family: var(--spot-font-ar);
}

html[data-theme="dark"] .spot-service-cta-btn {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #ffffff !important;
}

html[data-theme="dark"] .spot-service-cta-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

html[data-theme="light"] .spot-service-cta-btn {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: #6d28d9 !important;
}

html[data-theme="light"] .spot-service-cta-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   Mobile & Responsive Adjustments
   ========================================================================== */
@media (max-width: 991px) {
  .spot-nav-menu {
    display: none;
  }
  
  .spot-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spot-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .spot-about-card {
    max-width: 320px;
    height: 400px;
    margin: 30px auto 0 auto;
  }
}

@media (max-width: 767px) {
  .spot-service-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .spot-service-cta-wrapper {
    margin-top: 15px;
    justify-content: flex-start !important;
  }
}

@media (max-width: 576px) {
  .spot-why-grid {
    grid-template-columns: 1fr;
  }

  .spot-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .spot-partner-item img {
    max-height: 28px;
  }
}

/* ==========================================================================
   Mobile Header & Navigation Capsule Responsive Fix
   ========================================================================== */
@media (max-width: 991px) {
  .spot-header-fixed {
    top: 8px !important;
    padding: 0 8px !important;
  }

  .spot-nav-capsule {
    padding: 5px 8px !important;
    gap: 4px !important;
  }

  .spot-brand {
    gap: 6px !important;
  }

  .spot-brand-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
  }

  .spot-brand-text {
    font-size: 0.84rem !important;
    white-space: nowrap !important;
  }

  .spot-nav-actions {
    gap: 4px !important;
    flex-shrink: 0 !important;
  }

  .spot-btn-start-project {
    padding: 4px 8px !important;
    font-size: 0.72rem !important;
    border-radius: 8px !important;
  }

  .spot-square-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 7px !important;
    font-size: 0.72rem !important;
  }

  .spot-square-btn i {
    font-size: 0.85rem !important;
  }

  .spot-mobile-toggle-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 8px !important;
    font-size: 1.25rem !important;
    flex-shrink: 0 !important;
    background: rgba(168, 85, 247, 0.25) !important;
    border: 1px solid rgba(168, 85, 247, 0.45) !important;
    color: #ffffff !important;
  }
}

/* ==========================================================================
   Mobile Optimized Hero & Showcase (Zero Dead Margin - Instant Above-The-Fold Visibility)
   ========================================================================== */
@media (max-width: 991px) {
  #hero,
  section#hero,
  .spot-hero-section {
    height: auto !important;
    min-height: unset !important;
    display: block !important;
    padding: 68px 12px 6px 12px !important;
  }

  .spot-hero-headings {
    margin: 0 auto 8px auto !important;
    max-width: 100% !important;
  }

  .spot-hero-title {
    font-size: 1.45rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .spot-hero-subtitle {
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
  }

  .spot-hero-desc {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .spot-showcase-wrapper {
    margin: 0 auto !important;
    width: 100% !important;
  }

  .spot-showcase-row {
    gap: 6px !important;
    justify-content: center !important;
  }

  /* On mobile screens, hide horizontal avatar badge and 4th card so 3 centerpiece cards fit with balance */
  .spot-customer-badge {
    display: none !important;
  }

  .spot-card-4 {
    display: none !important;
  }

  .spot-cards-grid {
    gap: 6px !important;
    justify-content: center !important;
  }

  .spot-card-1, .spot-card-3 {
    width: 90px !important;
    height: 118px !important;
    border-radius: 12px !important;
  }

  .spot-card-2 {
    width: 98px !important;
    height: 134px !important;
    transform: translateY(-6px) !important;
    border-radius: 12px !important;
  }

  .spot-cta-container {
    margin-top: 10px !important;
    margin-bottom: 6px !important;
    gap: 6px !important;
  }

  .spot-cta-btn {
    padding: 6px 18px !important;
    font-size: 0.82rem !important;
  }

  .spot-profile-cta-btn {
    padding: 6px 15px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 480px) {
  #hero,
  section#hero,
  .spot-hero-section {
    padding: 64px 8px 4px 8px !important;
  }

  .spot-hero-title {
    font-size: 1.35rem !important;
    line-height: 1.18 !important;
    margin-bottom: 3px !important;
  }

  .spot-hero-subtitle {
    font-size: 0.84rem !important;
    line-height: 1.22 !important;
    margin-bottom: 2px !important;
  }

  .spot-hero-desc {
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
  }

  .spot-card-1, .spot-card-3 {
    width: 84px !important;
    height: 110px !important;
    border-radius: 10px !important;
  }

  .spot-card-2 {
    width: 92px !important;
    height: 124px !important;
    transform: translateY(-4px) !important;
    border-radius: 10px !important;
  }

  .spot-cta-container {
    margin-top: 8px !important;
    gap: 6px !important;
  }

  .spot-cta-btn {
    padding: 5px 14px !important;
    font-size: 0.78rem !important;
  }

  .spot-profile-cta-btn {
    padding: 5px 12px !important;
    font-size: 0.78rem !important;
  }
}

/* ==========================================================================
   Spot Impact - Customer Opinions / Testimonials Section
   ========================================================================== */
.spot-testimonials-section {
  padding: 100px 0 110px 0;
  position: relative;
  background-color: var(--spot-bg) !important;
  overflow: hidden;
  transition: background-color 0.35s ease;
}

/* Header Text Block */
.spot-testimonials-header-content {
  padding: 10px 0;
}

.spot-sec-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.spot-sec-tag-bar {
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--spot-purple);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--spot-purple-glow);
}

.spot-sec-tag-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--spot-purple-light);
  margin: 0;
  letter-spacing: -0.2px;
}

[data-theme="light"] .spot-sec-tag-text {
  color: #7c3aed;
}

.spot-testimonials-main-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.38;
  color: var(--spot-text-title);
  margin-bottom: 18px;
}

[data-theme="light"] .spot-testimonials-main-title {
  color: #1a1033;
}

.spot-testimonials-main-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--spot-text-desc);
  max-width: 520px;
  margin-bottom: 0;
}

/* World Map Component */
.spot-testimonials-map-card {
  position: relative;
  width: 100%;
  height: 310px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spot-map-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.spot-world-map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Dark Mode World Map - High-contrast luminous purple dots with atmospheric glow */
.spot-map-dark {
  display: block;
  opacity: 0.88;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.55));
}

.spot-map-light {
  display: none;
}

html[data-theme="dark"] .spot-map-dark {
  display: block !important;
  opacity: 0.88;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.55));
}

html[data-theme="dark"] .spot-map-light {
  display: none !important;
}

/* Light Mode World Map - Refined purple/indigo dots on bright canvas */
html[data-theme="light"] .spot-map-dark {
  display: none !important;
}

html[data-theme="light"] .spot-map-light {
  display: block !important;
  opacity: 0.6;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.2));
}

/* Pinned Map Avatars */
.spot-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.spot-map-pin:hover {
  transform: translate(-50%, -50%) scale(1.18);
}

.spot-map-pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #8b5cf6;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.6);
  position: relative;
  z-index: 2;
  display: block;
}

.spot-pin-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #a855f7;
  opacity: 0.8;
  animation: spotPulseRing 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes spotPulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.85;
  }
  60% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(0.85);
    opacity: 0;
  }
}

/* Floating Glass Capsule Over Map */
.spot-map-capsule {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  padding: 14px 18px;
  border-radius: 18px;
  z-index: 10;
  background: rgba(18, 9, 32, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease;
}

[data-theme="light"] .spot-map-capsule {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(147, 51, 234, 0.22);
  box-shadow: 0 15px 35px rgba(109, 40, 217, 0.15);
}

.spot-capsule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 0.74rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

[data-theme="light"] .spot-capsule-head {
  border-bottom-color: rgba(139, 92, 246, 0.12);
}

.spot-capsule-title {
  font-weight: 700;
  color: var(--spot-text-title);
}

.spot-capsule-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

[data-theme="light"] .spot-capsule-sep {
  color: rgba(100, 70, 160, 0.4);
}

.spot-capsule-tag {
  color: var(--spot-purple-light);
  font-weight: 500;
}

[data-theme="light"] .spot-capsule-tag {
  color: #7c3aed;
}

.spot-capsule-body {
  padding: 8px 0;
}

.spot-capsule-num {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--spot-text-title);
  line-height: 1.1;
}

.spot-capsule-num-desc {
  font-size: 0.72rem;
  color: var(--spot-text-desc);
  margin-top: 2px;
}

.spot-capsule-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
}

.spot-capsule-avatars {
  display: flex;
  align-items: center;
}

.spot-capsule-avatars img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #140b24;
  margin-inline-end: -6px;
  object-fit: cover;
}

[data-theme="light"] .spot-capsule-avatars img {
  border-color: #ffffff;
}

.spot-capsule-trust {
  background: rgba(139, 92, 246, 0.2);
  border-radius: 30px;
  padding: 3px 8px;
  font-size: 0.7rem;
  color: var(--spot-purple-light);
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

[data-theme="light"] .spot-capsule-trust {
  background: rgba(139, 92, 246, 0.15);
  color: #6d28d9;
  border-color: rgba(147, 51, 234, 0.2);
}

/* Center Testimonial Card Stage */
.spot-testimonial-stage-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.spot-testimonial-card-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Chevron Arrows */
.spot-stage-arrow {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(22, 10, 36, 0.6);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.spot-stage-arrow:hover {
  background: #8b5cf6;
  color: #ffffff;
  border-color: #8b5cf6;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

[data-theme="light"] .spot-stage-arrow {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(139, 92, 246, 0.3);
  color: #6d28d9;
}

[data-theme="light"] .spot-stage-arrow:hover {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
}

/* Glassmorphic Quote Card */
.spot-testimonial-glass-card {
  position: relative;
  flex: 1;
  max-width: 660px;
  min-height: 200px;
  padding: 38px 48px;
  border-radius: 24px;
  background: rgba(18, 9, 32, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
}

[data-theme="light"] .spot-testimonial-glass-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(147, 51, 234, 0.2);
  box-shadow: 0 20px 45px rgba(109, 40, 217, 0.12);
}

/* Quote Symbol */
.spot-quote-symbol {
  position: absolute;
  font-size: 2.8rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: #a855f7;
  opacity: 0.9;
  user-select: none;
  pointer-events: none;
}

.spot-quote-symbol.start {
  top: 18px;
  inset-inline-start: 24px;
}

.spot-quote-symbol.end {
  bottom: 18px;
  inset-inline-end: 24px;
}

[data-theme="light"] .spot-quote-symbol {
  color: #7c3aed;
}

/* Quote Item Animations */
.spot-quote-item {
  display: none;
  text-align: center;
}

.spot-quote-item.active {
  display: block;
  animation: spotFadeScaleIn 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes spotFadeScaleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.spot-quote-body {
  font-size: 1.15rem;
  line-height: 1.85;
  font-weight: 500;
  color: var(--spot-text-title);
  margin-bottom: 22px;
  max-width: 500px;
  margin-inline: auto;
}

[data-theme="light"] .spot-quote-body {
  color: #241442;
}

.spot-author-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--spot-text-title);
  margin: 0 0 4px 0;
}

[data-theme="light"] .spot-author-title {
  color: #1a1033;
}

.spot-author-subtitle {
  font-size: 0.88rem;
  color: var(--spot-purple-light);
  margin: 0;
}

[data-theme="light"] .spot-author-subtitle {
  color: #6d28d9;
}

/* 3-dots Stepper */
.spot-vertical-stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 28px 0 24px 0;
}

.spot-vertical-stepper span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.4);
}

.spot-vertical-stepper span:nth-child(2) {
  background: rgba(168, 85, 247, 0.7);
}

.spot-vertical-stepper span:nth-child(3) {
  background: #a855f7;
}

/* Avatars Selector Row */
.spot-avatars-row-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spot-avatars-selector-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.spot-avatar-node {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.55;
  transform: scale(0.85);
}

.spot-avatar-node:hover {
  opacity: 0.88;
  transform: scale(0.96);
}

.spot-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.spot-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Active Avatar Highlight with Glowing Ring */
.spot-avatar-node.active {
  opacity: 1;
  transform: scale(1.38);
  z-index: 5;
}

.spot-avatar-node.active .spot-avatar-circle {
  border: 2.5px solid #a855f7;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.85), inset 0 0 8px rgba(168, 85, 247, 0.4);
}

[data-theme="light"] .spot-avatar-node.active .spot-avatar-circle {
  border-color: #9333ea;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .spot-testimonials-main-title {
    font-size: 2rem;
  }
  .spot-testimonial-glass-card {
    padding: 30px 28px;
  }
  .spot-quote-body {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .spot-testimonials-section {
    padding: 70px 0 80px 0;
  }
  .spot-testimonials-main-title {
    font-size: 1.7rem;
  }
  .spot-testimonials-map-card {
    height: 270px;
  }
  .spot-map-capsule {
    width: 220px;
    padding: 12px 14px;
  }
  .spot-testimonial-card-outer {
    gap: 10px;
  }
  .spot-stage-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1rem;
  }
  .spot-testimonial-glass-card {
    padding: 24px 20px;
  }
  .spot-quote-symbol {
    font-size: 2rem;
  }
  .spot-avatars-selector-row {
    gap: 10px;
  }
  .spot-avatar-circle {
    width: 36px;
    height: 36px;
  }
  .spot-avatar-node.active {
    transform: scale(1.25);
  }
}

/* ==========================================================================
   Spot Impact - Contact Us Section
   ========================================================================== */
.spot-contact-section {
  padding: 100px 0 110px 0;
  position: relative;
  background-color: var(--spot-bg) !important;
  transition: background-color 0.35s ease;
}

.spot-contact-info-block {
  padding: 10px 0;
}

.spot-contact-main-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.38;
  color: var(--spot-text-title);
  margin-bottom: 18px;
}

[data-theme="light"] .spot-contact-main-title {
  color: #1a1033;
}

.spot-contact-main-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--spot-text-desc);
  max-width: 480px;
  margin-bottom: 0;
}

/* Channels List */
.spot-contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.spot-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spot-contact-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #c084fc;
  transition: all 0.25s ease;
}

[data-theme="light"] .spot-contact-icon-box {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.22);
  color: #7c3aed;
}

.spot-contact-item:hover .spot-contact-icon-box {
  background: #8b5cf6;
  color: #ffffff;
  border-color: #8b5cf6;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.5);
}

.spot-contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--spot-purple-light);
  display: block;
  margin-bottom: 2px;
}

[data-theme="light"] .spot-contact-label {
  color: #7c3aed;
}

.spot-contact-val {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--spot-text-title);
  margin: 0;
  line-height: 1.4;
}

[data-theme="light"] .spot-contact-val {
  color: #1a1033;
}

.spot-contact-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.spot-contact-link:hover {
  color: #c084fc;
}

[data-theme="light"] .spot-contact-link:hover {
  color: #7c3aed;
}

/* Glassmorphic Contact Form Card */
.spot-contact-card-wrapper {
  background: rgba(18, 9, 32, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
  border-radius: 26px;
  padding: 38px 40px;
  transition: all 0.35s ease;
}

[data-theme="light"] .spot-contact-card-wrapper {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(147, 51, 234, 0.22);
  box-shadow: 0 20px 45px rgba(109, 40, 217, 0.14);
}

.spot-form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--spot-text-title);
  margin-bottom: 8px;
  display: block;
}

[data-theme="light"] .spot-form-label {
  color: #1a1033;
}

.spot-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.spot-input-icon {
  position: absolute;
  inset-inline-start: 16px;
  color: rgba(168, 85, 247, 0.7);
  font-size: 1.15rem;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .spot-input-icon {
  color: rgba(124, 58, 237, 0.7);
}

.spot-input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  padding-inline-start: 46px;
  padding-inline-end: 16px;
  font-size: 0.95rem;
  background: rgba(28, 14, 48, 0.6);
  color: #ffffff;
  transition: all 0.25s ease;
}

.spot-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .spot-input {
  background: rgba(245, 240, 252, 0.85);
  border-color: rgba(147, 51, 234, 0.25);
  color: #1a1033;
}

[data-theme="light"] .spot-input::placeholder {
  color: rgba(90, 79, 115, 0.6);
}

.spot-input:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(28, 14, 48, 0.85);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.35);
}

[data-theme="light"] .spot-input:focus {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.25);
}

.spot-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a855f7' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-size: 14px;
}

[dir="rtl"] .spot-select {
  background-position: 16px center;
}

.spot-select option {
  background-color: #160a24;
  color: #ffffff;
}

[data-theme="light"] .spot-select option {
  background-color: #ffffff;
  color: #1a1033;
}

.spot-textarea-group {
  align-items: flex-start;
}

.spot-textarea-group .spot-input-icon {
  top: 14px;
}

.spot-textarea {
  height: auto;
  min-height: 110px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

/* Send Button */
.spot-btn-send {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spot-btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.65);
}

/* Contact Alerts */
.spot-contact-alert {
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.spot-contact-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

[data-theme="light"] .spot-contact-alert.success {
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
}

.spot-contact-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

[data-theme="light"] .spot-contact-alert.error {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
}

/* Map Card */
.spot-map-canvas-card {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .spot-map-canvas-card {
  border-color: rgba(147, 51, 234, 0.2);
  box-shadow: 0 15px 35px rgba(109, 40, 217, 0.12);
}

.spot-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

html[data-theme="dark"] .spot-map-iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(120%);
}

[data-theme="light"] .spot-map-iframe {
  filter: none;
}

.spot-map-pin-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.spot-map-pin-core {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 3px solid #ffffff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.95);
  position: relative;
  z-index: 2;
}

.spot-map-pin-pulse {
  position: absolute;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #a855f7;
  animation: spotPulseRing 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  z-index: 1;
}

.spot-map-pin-label {
  margin-top: 8px;
  background: rgba(18, 9, 32, 0.92);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

[data-theme="light"] .spot-map-pin-label {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1033;
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.15);
}

/* ==========================================================================
   Spot Impact - Floating WhatsApp Button
   ========================================================================== */
.spot-whatsapp-floating-wrap {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 1050;
}

.spot-whatsapp-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-size: 1.9rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.spot-whatsapp-float-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.75);
}

.spot-whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: spotPulseRing 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  pointer-events: none;
}

.spot-whatsapp-tooltip {
  position: absolute;
  inset-inline-end: 72px;
  background: rgba(18, 9, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

[dir="rtl"] .spot-whatsapp-tooltip {
  transform: translateX(-10px);
}

[data-theme="light"] .spot-whatsapp-tooltip {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1033;
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.15);
}

.spot-whatsapp-float-btn:hover .spot-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .spot-contact-card-wrapper {
    padding: 30px 24px;
  }
  .spot-contact-main-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .spot-contact-section {
    padding: 70px 0 80px 0;
  }
  .spot-contact-main-title {
    font-size: 1.7rem;
  }
  .spot-contact-card-wrapper {
    padding: 24px 18px;
  }
  .spot-whatsapp-float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  .spot-whatsapp-floating-wrap {
    bottom: 20px;
    inset-inline-end: 20px;
  }
  .spot-map-canvas-card {
    height: 260px;
  }
}

/* ==========================================================================
   Spot Impact - Master Footer Component (100% Matches Header Capsule & Images)
   ========================================================================== */
.spot-footer-wrapper {
  background: var(--spot-bg) !important;
  position: relative;
  width: 100%;
  padding: 40px 0 0 0;
  transition: background 0.35s ease;
}

.spot-footer-card,
.spot-footer-container {
  border-radius: 40px 40px 0 0;
  position: relative;
  overflow: hidden;
  padding: 55px 48px 45px 48px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Dark Mode Footer - Identical to Header Capsule (#120a26 / rgba(18, 10, 38, 0.95)) */
[data-theme="dark"] .spot-footer-card,
[data-theme="dark"] .spot-footer-container {
  background: rgba(18, 10, 38, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.65);
}

/* Light Mode Footer - Identical to Header Capsule (#ecebf5) */
[data-theme="light"] .spot-footer-card,
[data-theme="light"] .spot-footer-container {
  background: #ecebf5 !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  box-shadow: 0 15px 35px -5px rgba(109, 40, 217, 0.12);
}

/* Subtle ambient glow accent inside footer */
.spot-footer-card::before,
.spot-footer-container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 25%;
  width: 450px;
  height: 180px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

/* Brand Area */
.spot-footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  margin-bottom: 4px;
}

.spot-footer-brand-name {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-footer-brand-name {
  color: #ffffff;
}

[data-theme="light"] .spot-footer-brand-name {
  color: #1a1033;
}

.spot-footer-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 380px;
  margin-top: 18px;
  margin-bottom: 26px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-footer-desc {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .spot-footer-desc {
  color: #5a4f73;
}

/* Social Icons Row */
.spot-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.spot-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .spot-footer-social-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .spot-footer-social-link {
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: #6b21a8;
  background: rgba(139, 92, 246, 0.05);
}

.spot-footer-social-link:hover {
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
  border-color: #a855f7 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.45);
  transform: translateY(-3px);
}

/* Navigation Columns */
.spot-footer-col {
  margin-bottom: 25px;
}

.spot-footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-footer-col-title {
  color: #ffffff;
}

[data-theme="light"] .spot-footer-col-title {
  color: #1a1033;
}

.spot-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.spot-footer-nav-link {
  font-size: 0.96rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
  display: inline-block;
}

[data-theme="dark"] .spot-footer-nav-link {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .spot-footer-nav-link {
  color: #5a4f73;
}

/* Hover effect with directional translation */
[dir="rtl"] .spot-footer-nav-link:hover {
  transform: translateX(-4px);
}

[dir="ltr"] .spot-footer-nav-link:hover {
  transform: translateX(4px);
}

[data-theme="dark"] .spot-footer-nav-link:hover {
  color: #c084fc;
}

[data-theme="light"] .spot-footer-nav-link:hover {
  color: #7c3aed;
  font-weight: 600;
}

/* Bottom Bar / Copyright */
.spot-footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
  transition: border-color 0.35s ease, color 0.35s ease;
}

[data-theme="dark"] .spot-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="light"] .spot-footer-bottom {
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  color: #776991;
}

.spot-footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.spot-footer-bottom a:hover {
  color: var(--spot-purple);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .spot-footer-card,
  .spot-footer-container {
    padding: 45px 30px 35px 30px;
    border-radius: 34px 34px 0 0;
  }
  .spot-footer-brand-col {
    margin-bottom: 35px;
  }
  .spot-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .spot-footer-wrapper {
    padding: 25px 0 0 0;
  }
  .spot-footer-card,
  .spot-footer-container {
    border-radius: 28px 28px 0 0;
    padding: 35px 20px 28px 20px;
  }
  .spot-footer-brand-name {
    font-size: 1.35rem;
  }
  .spot-footer-desc {
    font-size: 0.9rem;
    margin-top: 14px;
    margin-bottom: 20px;
  }
  .spot-footer-col-title {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }
  .spot-footer-nav-link {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Spot Impact - Dedicated Packages Page & Pricing Cards
   ========================================================================== */
.spot-packages-page {
  background: var(--spot-bg) !important;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 70px;
  position: relative;
  transition: background 0.35s ease;
}

/* Breadcrumb Navigation */
.spot-breadcrumb-wrap {
  margin-bottom: 25px;
}

.spot-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
}

.spot-breadcrumb-item a {
  color: var(--spot-purple);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.spot-breadcrumb-item a:hover {
  opacity: 0.8;
}

.spot-breadcrumb-sep {
  color: var(--spot-text-desc);
  font-size: 0.8rem;
  opacity: 0.6;
}

.spot-breadcrumb-item.active {
  color: var(--spot-text-title);
  font-weight: 700;
}

/* Packages Hero Header */
.spot-packages-hero {
  max-width: 850px;
  margin: 0 auto 55px auto;
}

.spot-packages-title {
  font-size: 2.65rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-packages-title {
  color: #ffffff;
}

[data-theme="light"] .spot-packages-title {
  color: #1a1033;
}

.spot-packages-subtitle {
  font-size: 1.18rem;
  line-height: 1.75;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-packages-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .spot-packages-subtitle {
  color: #5a4f73;
}

/* Pricing Grid & Cards */
.spot-pricing-grid {
  margin-bottom: 45px;
}

.spot-pricing-card {
  width: 100%;
  border-radius: 32px;
  padding: 42px 30px 32px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .spot-pricing-card {
  background: rgba(18, 10, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .spot-pricing-card {
  background: #ecebf5;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 15px 35px -5px rgba(109, 40, 217, 0.08);
}

.spot-pricing-card:hover {
  transform: translateY(-6px);
}

[data-theme="dark"] .spot-pricing-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 25px 50px -10px rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .spot-pricing-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 25px 50px -10px rgba(109, 40, 217, 0.16);
}

/* Featured / Most Popular Card */
.spot-pricing-featured {
  border: 2px solid #8b5cf6 !important;
}

[data-theme="dark"] .spot-pricing-featured {
  box-shadow: 0 20px 55px -5px rgba(139, 92, 246, 0.35);
}

[data-theme="light"] .spot-pricing-featured {
  box-shadow: 0 20px 55px -5px rgba(109, 40, 217, 0.2);
}

.spot-pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
  white-space: nowrap;
  z-index: 2;
}

/* Tier Icon */
.spot-pricing-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.spot-pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  transition: all 0.3s ease;
}

.spot-pricing-card:hover .spot-pricing-icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* Card Name & Subtitle */
.spot-pricing-name {
  font-size: 1.85rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-name {
  color: #ffffff;
}

[data-theme="light"] .spot-pricing-name {
  color: #1a1033;
}

.spot-pricing-desc {
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 22px;
  min-height: 24px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .spot-pricing-desc {
  color: #5a4f73;
}

/* Price Display */
.spot-pricing-price-wrap {
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid;
  transition: border-color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-price-wrap {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .spot-pricing-price-wrap {
  border-color: rgba(139, 92, 246, 0.15);
}

.spot-pricing-num {
  font-size: 2.9rem;
  font-weight: 800;
  letter-spacing: -1px;
  display: block;
  line-height: 1;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-num {
  color: #ffffff;
}

[data-theme="light"] .spot-pricing-num {
  color: #1a1033;
}

.spot-pricing-period {
  font-size: 0.92rem;
  margin-top: 6px;
  display: block;
  font-weight: 600;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-period {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .spot-pricing-period {
  color: #5a4f73;
}

/* Old Price Strikethrough Display */
.spot-pricing-old-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  position: relative;
  direction: ltr;
}

[dir="rtl"] .spot-pricing-old-box,
html[lang="ar"] .spot-pricing-old-box {
  direction: rtl;
}

.spot-pricing-old-val {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 3px;
  transition: color 0.35s ease, text-decoration-color 0.35s ease;
}

.spot-pricing-old-unit {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2.5px;
  transition: color 0.35s ease, text-decoration-color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-old-val,
[data-theme="dark"] .spot-pricing-old-unit {
  color: rgba(255, 255, 255, 0.45);
  text-decoration-color: #f87171;
}

[data-theme="light"] .spot-pricing-old-val,
[data-theme="light"] .spot-pricing-old-unit {
  color: #7c728e;
  text-decoration-color: #dc2626;
}

/* Features List */
.spot-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}

.spot-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.55;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .spot-pricing-features li {
  color: #2b1f48;
}

.spot-feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  color: #a855f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom Highlight Tag */
.spot-pricing-highlight {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 22px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-pricing-highlight {
  color: #c084fc;
}

[data-theme="light"] .spot-pricing-highlight {
  color: #6b21a8;
}

/* Action Buttons */
.spot-pricing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.spot-pricing-btn-email,
.spot-pricing-btn-wa {
  flex: 1;
  padding: 11px 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-pricing-btn-email {
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.12);
  color: var(--spot-text-title) !important;
}

.spot-pricing-btn-email:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.spot-pricing-btn-wa {
  background: #10b981;
  border: 1px solid #10b981;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.spot-pricing-btn-wa:hover {
  background: #059669;
  border-color: #059669;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   Notice / Perks Bar (4 items)
   ========================================================================== */
.spot-perks-bar {
  border-radius: 28px;
  padding: 26px 36px;
  margin-top: 60px;
  margin-bottom: 80px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.35s ease;
}

[data-theme="dark"] .spot-perks-bar {
  background: rgba(18, 10, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .spot-perks-bar {
  background: #ecebf5;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 15px 35px -5px rgba(109, 40, 217, 0.08);
}

.spot-perk-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spot-perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.spot-perk-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-perk-title {
  color: #ffffff;
}

[data-theme="light"] .spot-perk-title {
  color: #1a1033;
}

.spot-perk-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-perk-desc {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .spot-perk-desc {
  color: #5a4f73;
}

/* ==========================================================================
   Custom Package Builder Section (صمّم باقتك الخاصة)
   ========================================================================== */
.spot-custom-builder-section {
  margin-bottom: 50px;
}

.spot-builder-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 12px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-builder-heading {
  color: #ffffff;
}

[data-theme="light"] .spot-builder-heading {
  color: #1a1033;
}

.spot-builder-sub {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-builder-sub {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .spot-builder-sub {
  color: #5a4f73;
}

.spot-builder-card {
  border-radius: 36px;
  padding: 48px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 0.35s ease;
}

[data-theme="dark"] .spot-builder-card {
  background: rgba(18, 10, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.55);
}

[data-theme="light"] .spot-builder-card {
  background: #ecebf5;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 50px -10px rgba(109, 40, 217, 0.1);
}

.spot-builder-col-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid;
  transition: all 0.35s ease;
}

[data-theme="dark"] .spot-builder-col-title {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .spot-builder-col-title {
  color: #1a1033;
  border-color: rgba(139, 92, 246, 0.15);
}

/* Services Checklist */
.spot-services-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}

[dir="rtl"] .spot-services-checklist {
  padding-right: 0;
  padding-left: 6px;
}

.spot-services-checklist::-webkit-scrollbar {
  width: 6px;
}

.spot-services-checklist::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 10px;
}

.spot-service-check-card {
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.25s ease;
  user-select: none;
}

[data-theme="dark"] .spot-service-check-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .spot-service-check-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.15);
}

.spot-service-check-card:hover {
  border-color: #8b5cf6;
  transform: translateX(-3px);
}

[dir="ltr"] .spot-service-check-card:hover {
  transform: translateX(3px);
}

.spot-service-check-card.selected {
  border-color: #8b5cf6 !important;
}

[data-theme="dark"] .spot-service-check-card.selected {
  background: rgba(139, 92, 246, 0.12) !important;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .spot-service-check-card.selected {
  background: rgba(139, 92, 246, 0.08) !important;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.12);
}

.spot-service-name {
  font-size: 1.02rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-service-name {
  color: #ffffff;
}

[data-theme="light"] .spot-service-name {
  color: #1a1033;
}

.spot-service-sub {
  font-size: 0.85rem;
  display: block;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-service-sub {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .spot-service-sub {
  color: #6b5e87;
}

/* Custom Checkbox */
.spot-custom-checkbox {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.spot-custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.spot-cb-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: transparent;
  transition: all 0.2s ease;
}

[data-theme="dark"] .spot-cb-box {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .spot-cb-box {
  border-color: rgba(139, 92, 246, 0.4);
  background: #ffffff;
}

.spot-custom-checkbox input:checked ~ .spot-cb-box {
  background: #8b5cf6 !important;
  border-color: #8b5cf6 !important;
  color: #ffffff !important;
}

/* Selected Counter Indicator */
.spot-selected-indicator {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--spot-purple);
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

/* Interactive Budget Slider */
.spot-budget-slider-card {
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid;
  transition: all 0.35s ease;
}

[data-theme="dark"] .spot-budget-slider-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .spot-budget-slider-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.15);
}

.spot-budget-label {
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-budget-label {
  color: #ffffff;
}

[data-theme="light"] .spot-budget-label {
  color: #1a1033;
}

.spot-budget-display {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--spot-purple);
}

.spot-budget-curr {
  font-size: 0.95rem;
  font-weight: 600;
  margin-inline-start: 4px;
}

/* Range Slider Styling */
.spot-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.25);
  outline: none;
  margin: 14px 0 6px 0;
  transition: background 0.2s ease;
}

.spot-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #8b5cf6;
  border: 3px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
  transition: transform 0.2s ease;
}

.spot-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Builder Input Fields */
.spot-field-label {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-field-label {
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .spot-field-label {
  color: #1a1033;
}

.spot-input {
  border-radius: 14px !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  border: 1px solid !important;
  transition: all 0.25s ease !important;
}

[data-theme="dark"] .spot-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .spot-input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25) !important;
}

[data-theme="light"] .spot-input {
  background: #ffffff !important;
  border-color: rgba(139, 92, 246, 0.2) !important;
  color: #1a1033 !important;
}

[data-theme="light"] .spot-input:focus {
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2) !important;
}

/* Builder Submit Buttons */
.spot-btn-submit-email {
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 16px !important;
  padding: 14px 20px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35) !important;
  transition: all 0.3s ease !important;
}

.spot-btn-submit-email:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5) !important;
}

.spot-btn-submit-wa {
  background: #10b981 !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 16px !important;
  padding: 14px 20px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3) !important;
  transition: all 0.3s ease !important;
}

.spot-btn-submit-wa:hover {
  background: #059669 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45) !important;
}

/* Responsive Overrides for Packages */
@media (max-width: 991px) {
  .spot-packages-title {
    font-size: 2.1rem;
  }
  .spot-builder-card {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .spot-packages-page {
    padding-top: 110px;
  }
  .spot-packages-title {
    font-size: 1.75rem;
  }
  .spot-packages-subtitle {
    font-size: 1rem;
  }
  .spot-pricing-card {
    padding: 36px 22px 26px 22px;
  }
  .spot-pricing-num {
    font-size: 2.4rem;
  }
  .spot-perks-bar {
    padding: 22px 20px;
  }
  .spot-builder-heading {
    font-size: 1.7rem;
  }
  .spot-builder-card {
    padding: 24px 16px;
    border-radius: 24px;
  }
}

/* ==========================================================================
   Spot Impact - Dedicated Privacy Policy Page (سياسة الخصوصية)
   ========================================================================== */
.spot-privacy-page {
  background: var(--spot-bg) !important;
  min-height: 100vh;
  padding-top: 135px;
  padding-bottom: 80px;
  position: relative;
  transition: background 0.35s ease;
}

/* Hero Header & Breadcrumbs */
.spot-privacy-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 65px auto;
}

.spot-privacy-breadcrumb {
  margin-bottom: 12px;
}

.spot-privacy-home-link {
  color: var(--spot-purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.spot-privacy-home-link:hover {
  opacity: 0.8;
}

.spot-privacy-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.spot-privacy-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 auto;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-privacy-intro {
  color: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .spot-privacy-intro {
  color: #5a4f73;
}

/* Two-Column Body */
.spot-privacy-body {
  position: relative;
}

/* Sticky Index Sidebar */
.spot-privacy-sticky-sidebar {
  position: sticky;
  top: 120px;
  padding: 10px 0;
}

.spot-privacy-index {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spot-index-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 6px 0;
  transition: all 0.25s ease;
}

[data-theme="dark"] .spot-index-item {
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="light"] .spot-index-item {
  color: #7c7294;
}

.spot-index-item:hover {
  transform: translateX(-4px);
}

[dir="ltr"] .spot-index-item:hover {
  transform: translateX(4px);
}

[data-theme="dark"] .spot-index-item:hover,
[data-theme="dark"] .spot-index-item.active {
  color: #ffffff;
}

[data-theme="light"] .spot-index-item:hover,
[data-theme="light"] .spot-index-item.active {
  color: #1a1033;
}

.spot-index-item.active {
  font-weight: 800;
}

.spot-index-bar {
  width: 3.5px;
  height: 22px;
  border-radius: 4px;
  background: transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.spot-index-item.active .spot-index-bar {
  background: #8b5cf6;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.7);
}

/* Main Content Sections */
.spot-privacy-sec {
  margin-bottom: 46px;
  scroll-margin-top: 140px;
}

.spot-sec-heading {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-sec-heading {
  color: #ffffff;
}

[data-theme="light"] .spot-sec-heading {
  color: #1a1033;
}

/* Bullet Points */
.spot-sec-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spot-sec-bullets li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 1rem;
  line-height: 1.75;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-sec-bullets li {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .spot-sec-bullets li {
  color: #4c3f68;
}

.spot-sec-bullets li::before {
  content: '•';
  position: absolute;
  top: 0;
  color: #8b5cf6;
  font-size: 1.35rem;
  line-height: 1.6;
}

[dir="rtl"] .spot-sec-bullets li::before {
  right: 0;
}

[dir="ltr"] .spot-sec-bullets li::before {
  left: 0;
}

/* Plain Text Paragraphs */
.spot-sec-text p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 0;
  transition: color 0.35s ease;
}

[data-theme="dark"] .spot-sec-text p {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .spot-sec-text p {
  color: #4c3f68;
}

/* Contact Info Section */
.spot-sec-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spot-contact-row a {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

[data-theme="dark"] .spot-contact-row a {
  color: #c084fc;
}

[data-theme="light"] .spot-contact-row a {
  color: #7c3aed;
}

.spot-contact-row a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive Overrides for Privacy Policy */
@media (max-width: 991px) {
  .spot-privacy-title {
    font-size: 2.3rem;
  }
  .spot-privacy-sticky-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 35px;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.08);
  }
  .spot-privacy-index {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .spot-index-item {
    font-size: 0.92rem;
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
  }
  .spot-index-item.active {
    background: #8b5cf6;
    color: #ffffff !important;
  }
  .spot-index-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  .spot-privacy-page {
    padding-top: 110px;
  }
  .spot-privacy-title {
    font-size: 1.9rem;
  }
  .spot-privacy-intro {
    font-size: 0.95rem;
  }
  .spot-sec-heading {
    font-size: 1.3rem;
  }
  .spot-sec-bullets li,
  .spot-sec-text p {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Spot Impact - Our Team Page Styles (فريقنا)
   100% Match to Reference Design (Dark & Light)
   ========================================================================== */

.spot-team-page {
  padding-top: 130px;
  padding-bottom: 120px;
  min-height: 100vh;
  position: relative;
  background: var(--spot-bg, #0B0813);
  transition: background-color 0.3s ease;
}

/* Hero & Breadcrumb */
.spot-team-hero {
  text-align: center;
  margin-bottom: 60px;
}

.spot-team-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.spot-team-breadcrumb:hover {
  color: #c084fc;
}

.spot-team-breadcrumb i {
  font-size: 0.85rem;
}

.spot-team-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

[data-theme="light"] .spot-team-title {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #1e1b4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spot-team-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

[data-theme="light"] .spot-team-subtitle {
  color: #475569;
}

/* Section 1: Leadership Showcase ("قابل فريقنا") */
.spot-leadership-section {
  margin-bottom: 90px;
  position: relative;
}

.spot-leadership-tag-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

[dir="ltr"] .spot-leadership-tag-row {
  justify-content: flex-start;
}

.spot-leadership-tag-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

[data-theme="light"] .spot-leadership-tag-title {
  color: #0f172a;
}

.spot-leadership-composition {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Big Glowing Dark Banner */
.spot-lead-banner {
  background: rgba(18, 13, 33, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 28px;
  padding: 60px 48px;
  width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

[data-theme="light"] .spot-lead-banner {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08);
}

.spot-lead-banner-inner {
  max-width: 48%;
  margin-inline-start: auto; /* In RTL: aligns to the right side of the banner */
}

[dir="ltr"] .spot-lead-banner-inner {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.spot-lead-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 18px;
}

[data-theme="light"] .spot-lead-heading {
  color: #0f172a;
}

.spot-lead-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
}

[data-theme="light"] .spot-lead-desc {
  color: #475569;
}

/* Staggered Leader Cards (Overlapping) */
.spot-leader-cards-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 35px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 3;
}

.spot-leader-card {
  width: 215px;
  background: #140f26;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 22px;
  padding: 20px 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.spot-leader-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.25);
}

.spot-leader-card.stagger-up {
  transform: translateY(-16px);
}

.spot-leader-card.stagger-up:hover {
  transform: translateY(-24px);
}

[data-theme="light"] .spot-leader-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
}

.spot-leader-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4px;
}

[data-theme="light"] .spot-leader-name {
  color: #0f172a;
}

.spot-leader-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #a78bfa;
  text-align: center;
  margin-bottom: 14px;
}

[data-theme="light"] .spot-leader-role {
  color: #7c3aed;
}

.spot-leader-img-box {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #20173b;
  margin-bottom: 14px;
}

.spot-leader-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.spot-leader-bio {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #cbd5e1;
  text-align: center;
  margin: 0;
}

[data-theme="light"] .spot-leader-bio {
  color: #64748b;
}

/* Section 2: Distinguished Team Members ("أعضاء الفريق المتميزين") */
.spot-members-section {
  position: relative;
}

.spot-members-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 28px;
}

[data-theme="light"] .spot-members-title {
  color: #0f172a;
}

/* Category Filter Tabs (Pills) */
.spot-team-filter-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.spot-team-pill-btn {
  background: rgba(22, 17, 39, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.spot-team-pill-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #ffffff;
}

.spot-team-pill-btn.active {
  background: #6d28d9;
  border-color: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
}

[data-theme="light"] .spot-team-pill-btn {
  background: rgba(241, 245, 249, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  color: #475569;
}

[data-theme="light"] .spot-team-pill-btn:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: #a78bfa;
  color: #7c3aed;
}

[data-theme="light"] .spot-team-pill-btn.active {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.3);
}

/* 4-Column Grid */
.spot-members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.spot-member-card {
  background: #140f26;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.spot-member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.22);
}

[data-theme="light"] .spot-member-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08);
}

.spot-member-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #20173b;
  margin-bottom: 16px;
}

.spot-member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.spot-member-card:hover .spot-member-img-wrap img {
  transform: scale(1.06);
}

.spot-member-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4px;
}

[data-theme="light"] .spot-member-name {
  color: #0f172a;
}

.spot-member-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #a78bfa;
  text-align: center;
  margin-bottom: 12px;
}

[data-theme="light"] .spot-member-role {
  color: #7c3aed;
}

.spot-member-bio {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #cbd5e1;
  text-align: center;
  margin: 0;
}

[data-theme="light"] .spot-member-bio {
  color: #64748b;
}

/* Empty department placeholder */
.spot-empty-members {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: rgba(22, 17, 39, 0.5);
  border: 1px dashed rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .spot-leadership-composition {
    flex-direction: column;
    gap: 40px;
  }
  .spot-lead-banner {
    min-height: auto;
    padding: 40px 30px;
  }
  .spot-lead-banner-inner {
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .spot-leader-cards-wrap {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: -30px;
    width: 100%;
  }
  .spot-leader-card.stagger-up {
    transform: none;
  }
  .spot-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .spot-team-page {
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .spot-team-title {
    font-size: 2.2rem;
  }
  .spot-team-subtitle {
    font-size: 0.95rem;
  }
  .spot-lead-heading {
    font-size: 1.6rem;
  }
  .spot-lead-desc {
    font-size: 0.95rem;
  }
  .spot-leader-cards-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .spot-leader-card {
    width: 100%;
    max-width: 280px;
  }
  .spot-members-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Spot Impact - Careers & Hiring Page Styles (التوظيف)
   100% Match to Reference Design (Dark & Light)
   ========================================================================== */

.spot-hiring-page {
  padding-top: 130px;
  padding-bottom: 120px;
  min-height: 100vh;
  position: relative;
  background: var(--spot-bg, #0B0813);
  transition: background-color 0.3s ease;
}

/* Hero & Breadcrumb */
.spot-hiring-hero {
  text-align: center;
  margin-bottom: 45px;
}

.spot-hiring-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.spot-hiring-breadcrumb:hover {
  color: #c084fc;
}

.spot-hiring-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

[data-theme="light"] .spot-hiring-title {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #1e1b4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spot-hiring-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

[data-theme="light"] .spot-hiring-subtitle {
  color: #475569;
}

/* Master Hiring Card */
.spot-hiring-card {
  background: rgba(18, 13, 33, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .spot-hiring-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08);
}

/* Fields & Labels */
.spot-hiring-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

[data-theme="light"] .spot-hiring-label {
  color: #0f172a;
}

.spot-hiring-req {
  color: #a855f7;
  font-weight: 700;
}

/* Input Elements */
.spot-input-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.spot-input-wrap .spot-input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 2;
  transition: color 0.2s ease;
}

[dir="rtl"] .spot-input-wrap .spot-input-icon {
  right: 16px;
  left: auto;
}

[dir="ltr"] .spot-input-wrap .spot-input-icon {
  left: 16px;
  right: auto;
}

.spot-input-wrap .spot-dropdown-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 2;
}

[dir="rtl"] .spot-input-wrap .spot-dropdown-arrow {
  left: 16px;
  right: auto;
}

[dir="ltr"] .spot-input-wrap .spot-dropdown-arrow {
  right: 16px;
  left: auto;
}

.spot-input-field {
  width: 100%;
  background: #140f26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

[dir="rtl"] .spot-input-field {
  padding-right: 48px;
  padding-left: 18px;
  text-align: right;
}

[dir="ltr"] .spot-input-field {
  padding-left: 48px;
  padding-right: 18px;
  text-align: left;
}

[dir="rtl"] .spot-input-field.has-dropdown {
  padding-left: 42px;
}

[dir="ltr"] .spot-input-field.has-dropdown {
  padding-right: 42px;
}

.spot-input-field::placeholder {
  color: #64748b;
  font-size: 0.88rem;
}

.spot-input-field:focus {
  background: #1a1433;
  border-color: #8b5cf6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
  color: #ffffff;
}

.spot-input-field:focus ~ .spot-input-icon {
  color: #a855f7;
}

[data-theme="light"] .spot-input-field {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.3);
  color: #0f172a;
}

[data-theme="light"] .spot-input-field::placeholder {
  color: #94a3b8;
}

[data-theme="light"] .spot-input-field:focus {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  color: #0f172a;
}

/* Native datepicker indicator hidden to prevent duplicate icons */
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

/* Phone input container */
.spot-phone-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.spot-phone-flag-pill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  z-index: 2;
  color: #cbd5e1;
  font-size: 0.9rem;
}

[dir="rtl"] .spot-phone-flag-pill {
  right: 14px;
  left: auto;
}

[dir="ltr"] .spot-phone-flag-pill {
  left: 14px;
  right: auto;
}

.spot-phone-flag-pill .flag-icon {
  font-size: 1.15rem;
}

.spot-phone-flag-pill .flag-arrow {
  font-size: 0.75rem;
  color: #64748b;
}

[dir="rtl"] .spot-input-field.spot-phone-input {
  padding-right: 95px;
  padding-left: 18px;
  direction: ltr;
  text-align: right;
}

[dir="ltr"] .spot-input-field.spot-phone-input {
  padding-left: 95px;
  padding-right: 18px;
  text-align: left;
}

/* Radio Group */
.spot-radio-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 4px 0;
}

.spot-radio-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
  user-select: none;
}

[data-theme="light"] .spot-radio-item {
  color: #334155;
}

.spot-radio-item input[type="radio"] {
  accent-color: #8b5cf6;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

/* Illustration Box */
.spot-hiring-illustration-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.spot-hiring-illustration-box img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(139, 92, 246, 0.15));
}

/* Additional message textarea */
.spot-textarea-wrap {
  position: relative;
  width: 100%;
}

.spot-textarea-wrap textarea {
  width: 100%;
  background: #140f26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 0.92rem;
  resize: vertical;
  min-height: 105px;
  transition: all 0.25s ease;
}

[dir="rtl"] .spot-textarea-wrap textarea {
  padding-right: 48px;
  padding-left: 18px;
  text-align: right;
}

[dir="ltr"] .spot-textarea-wrap textarea {
  padding-left: 48px;
  padding-right: 18px;
  text-align: left;
}

.spot-textarea-wrap textarea::placeholder {
  color: #64748b;
  font-size: 0.88rem;
}

.spot-textarea-wrap textarea:focus {
  background: #1a1433;
  border-color: #8b5cf6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
  color: #ffffff;
}

.spot-textarea-wrap .spot-textarea-icon {
  position: absolute;
  top: 16px;
  color: #64748b;
  font-size: 1.05rem;
  pointer-events: none;
  z-index: 2;
}

[dir="rtl"] .spot-textarea-wrap .spot-textarea-icon {
  right: 16px;
  left: auto;
}

[dir="ltr"] .spot-textarea-wrap .spot-textarea-icon {
  left: 16px;
  right: auto;
}

[data-theme="light"] .spot-textarea-wrap textarea {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.3);
  color: #0f172a;
}

[data-theme="light"] .spot-textarea-wrap textarea::placeholder {
  color: #94a3b8;
}

[data-theme="light"] .spot-textarea-wrap textarea:focus {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  color: #0f172a;
}

/* Resume Upload Zone */
.spot-resume-upload-zone {
  margin-top: 18px;
  margin-bottom: 24px;
}

.spot-upload-box {
  background: rgba(20, 15, 38, 0.6);
  border: 1px dashed rgba(139, 92, 246, 0.4);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
}

.spot-upload-box:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: #a855f7;
}

[data-theme="light"] .spot-upload-box {
  background: rgba(241, 245, 249, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
}

[data-theme="light"] .spot-upload-box:hover {
  background: rgba(124, 58, 237, 0.06);
  border-color: #7c3aed;
}

.spot-upload-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 18px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

[data-theme="light"] .spot-upload-btn-pill {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.3);
  color: #0f172a;
}

.spot-upload-file-name {
  color: #94a3b8;
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

/* Submit Button */
.spot-hiring-submit-btn {
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 14px 44px;
  font-size: 1.15rem;
  font-weight: 800;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spot-hiring-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.65);
  filter: brightness(1.08);
}

.spot-hiring-submit-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   Header Glassmorphism Dropdown Menu
   ========================================================================== */
.spot-dropdown {
  position: relative;
}

/* Invisible bridge under dropdown trigger so cursor never leaves hover zone */
.spot-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
  pointer-events: auto;
}

.spot-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.spot-dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.spot-dropdown:hover .spot-dropdown-arrow,
.spot-dropdown.show .spot-dropdown-arrow {
  transform: rotate(180deg);
}

.spot-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: -50px;
  width: 330px;
  max-width: 90vw;
  background: rgba(16, 10, 28, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(147, 51, 234, 0.15);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.22s ease 0.15s, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, visibility 0.22s 0.15s;
  z-index: 1050;
  pointer-events: none;
}

/* Upward bridge on menu container to seal the gap completely */
.spot-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  pointer-events: auto;
}

html[dir="ltr"] .spot-dropdown-menu {
  right: auto;
  left: -50px;
}

/* Dropdown arrow pointer */
.spot-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 65px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-top: 1px solid rgba(168, 85, 247, 0.28);
  border-left: 1px solid rgba(168, 85, 247, 0.28);
  transform: rotate(45deg);
  z-index: 2;
}

html[dir="ltr"] .spot-dropdown-menu::before {
  right: auto;
  left: 65px;
}

.spot-dropdown:hover .spot-dropdown-menu,
.spot-dropdown.show .spot-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0s;
}

.spot-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #e2e8f0 !important;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.spot-dd-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.spot-dd-title {
  flex-grow: 1;
}

.spot-dropdown-item:hover {
  background: rgba(168, 85, 247, 0.18);
  color: #ffffff !important;
  transform: translateX(-4px);
}

html[dir="ltr"] .spot-dropdown-item:hover {
  transform: translateX(4px);
}

.spot-dropdown-item:hover .spot-dd-icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Light Theme Dropdown */
html[data-theme="light"] .spot-dropdown-menu {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(147, 51, 234, 0.2);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.12), 0 4px 15px rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .spot-dropdown-menu::before {
  border-color: rgba(147, 51, 234, 0.2);
}

html[data-theme="light"] .spot-dropdown-item {
  color: #1e1b4b !important;
}

html[data-theme="light"] .spot-dd-icon {
  background: rgba(147, 51, 234, 0.08);
  border-color: rgba(147, 51, 234, 0.18);
  color: #7c3aed;
}

html[data-theme="light"] .spot-dropdown-item:hover {
  background: rgba(147, 51, 234, 0.08);
  color: #6d28d9 !important;
}

/* ==========================================================================
   Mobile Toggle & Mobile Drawer
   ========================================================================== */
.spot-mobile-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--spot-pill-bg);
  border: 1px solid var(--spot-nav-border);
  color: var(--spot-nav-link);
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.spot-mobile-toggle-btn:hover {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.spot-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  transition: visibility 0.3s;
}

.spot-mobile-drawer.active {
  visibility: visible;
}

.spot-mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spot-mobile-drawer.active .spot-mobile-drawer-backdrop {
  opacity: 1;
}

.spot-mobile-drawer-content {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 86%;
  max-width: 340px;
  background: #0f091c;
  border-left: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

html[dir="rtl"] .spot-mobile-drawer-content {
  right: 0;
  left: auto;
  border-left: 1px solid rgba(168, 85, 247, 0.2);
  border-right: none;
  transform: translateX(100%);
}

html[dir="ltr"] .spot-mobile-drawer-content {
  left: 0;
  right: auto;
  border-right: 1px solid rgba(168, 85, 247, 0.2);
  border-left: none;
  transform: translateX(-100%);
}

.spot-mobile-drawer.active .spot-mobile-drawer-content {
  transform: translateX(0);
}

html[data-theme="light"] .spot-mobile-drawer-content {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.2);
}

.spot-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .spot-mobile-drawer-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spot-mobile-drawer-title {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spot-mobile-drawer-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: color 0.2s;
}

.spot-mobile-drawer-close:hover {
  color: #ffffff;
}

html[data-theme="light"] .spot-mobile-drawer-close:hover {
  color: #0f172a;
}

.spot-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spot-mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

html[data-theme="light"] .spot-mobile-nav-link {
  color: #334155;
}

.spot-mobile-nav-link:hover,
.spot-mobile-nav-link.active {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc !important;
}

html[data-theme="light"] .spot-mobile-nav-link:hover,
html[data-theme="light"] .spot-mobile-nav-link.active {
  background: rgba(147, 51, 234, 0.1);
  color: #7c3aed !important;
}

.spot-mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spot-mobile-acc-arrow {
  background: none;
  border: none;
  color: #94a3b8;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.spot-mobile-acc-arrow.rotated {
  transform: rotate(180deg);
}

.spot-mobile-sub-list {
  list-style: none;
  padding: 0 10px 0 16px;
  margin: 4px 0 0 0;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.spot-mobile-sub-list.open {
  display: flex;
}

.spot-mobile-sub-link {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.spot-mobile-sub-link:hover {
  background: rgba(168, 85, 247, 0.12);
  color: #ffffff !important;
}

html[data-theme="light"] .spot-mobile-sub-link {
  color: #64748b;
}

html[data-theme="light"] .spot-mobile-sub-link:hover {
  background: rgba(147, 51, 234, 0.08);
  color: #7c3aed !important;
}

/* ==========================================================================
   Spot Impact Dedicated Services Page
   ========================================================================== */
.spot-services-page {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
  background-color: var(--spot-bg-primary);
}

/* Glowing Ambient Gradients */
.spot-services-page::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.spot-services-hero {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.spot-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

html[data-theme="light"] .spot-services-badge {
  background: rgba(147, 51, 234, 0.08);
  border-color: rgba(147, 51, 234, 0.25);
  color: #7c3aed;
}

.spot-services-hero-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #94a3b8;
  font-weight: 500;
  margin: 0 auto;
}

html[data-theme="light"] .spot-services-hero-desc {
  color: #475569;
}

/* Services Alternating Cards Container */
.spot-services-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Section Header (Homepage Services) */
.spot-services-header-wrap {
  margin-bottom: 45px;
}

.spot-services-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: #7c3aed;
  margin-bottom: 8px;
  text-align: center;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="dark"] .spot-services-main-title {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spot-services-main-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: #475569;
  text-align: center;
  margin: 0;
}

html[data-theme="dark"] .spot-services-main-subtitle {
  color: #94a3b8;
}

/* Single Service Card - 2 Column CSS Grid */
.spot-service-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 40px;
  padding: 34px 40px;
  background: rgba(18, 12, 34, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  scroll-margin-top: 130px;
}

/* In RTL: Default (Odd Cards) -> Visual on the RIGHT, Content on the LEFT */
html[dir="rtl"] .spot-service-card {
  grid-template-columns: 400px 1fr;
  grid-template-areas: "visual content";
}

/* In RTL: Reversed (Even Cards) -> Visual on the LEFT, Content on the RIGHT */
html[dir="rtl"] .spot-service-card.card-reversed {
  grid-template-columns: 1fr 400px;
  grid-template-areas: "content visual";
}

/* In LTR: Default (Odd Cards) -> Content on the LEFT, Visual on the RIGHT */
html[dir="ltr"] .spot-service-card {
  grid-template-columns: 1fr 400px;
  grid-template-areas: "content visual";
}

/* In LTR: Reversed (Even Cards) -> Visual on the LEFT, Content on the RIGHT */
html[dir="ltr"] .spot-service-card.card-reversed {
  grid-template-columns: 400px 1fr;
  grid-template-areas: "visual content";
}

.spot-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(147, 51, 234, 0.2);
}

html[data-theme="light"] .spot-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .spot-service-card:hover {
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.12);
}

/* Highlight animation on anchor navigation */
@keyframes spotPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.8);
    border-color: #c084fc;
  }
  70% {
    box-shadow: 0 0 0 18px rgba(168, 85, 247, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
  }
}

.spot-service-card.pulse-highlight {
  animation: spotPulseGlow 1.6s ease-out;
  border-color: #a855f7 !important;
}

/* Card Content Column */
.spot-service-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spot-service-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #7c3aed;
  background: linear-gradient(135deg, #7c3aed 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="dark"] .spot-service-title {
  background: linear-gradient(135deg, #ffffff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spot-service-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

html[data-theme="dark"] .spot-service-subtitle {
  color: #a855f7;
}

/* Enclosed Rounded Description Box */
.spot-service-desc-box {
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

html[data-theme="dark"] .spot-service-desc-box {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

.spot-service-desc-text {
  font-size: 0.94rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

html[data-theme="dark"] .spot-service-desc-text {
  color: #cbd5e1;
}

/* Action Buttons Bar */
.spot-service-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spot-service-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.38);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.spot-service-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(147, 51, 234, 0.55);
  filter: brightness(1.08);
}

.spot-service-order-btn:active {
  transform: translateY(0);
}

.spot-service-eye-btn {
  width: 52px;
  height: 42px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.spot-service-eye-btn:hover {
  background: rgba(147, 51, 234, 0.1);
  border-color: rgba(147, 51, 234, 0.4);
  color: #7c3aed;
  transform: translateY(-2px);
}

html[data-theme="dark"] .spot-service-eye-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #c084fc;
}

html[data-theme="dark"] .spot-service-eye-btn:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.4);
  color: #ffffff;
}

/* Card Visual Image Column */
.spot-service-visual {
  grid-area: visual;
  width: 100%;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

html[data-theme="dark"] .spot-service-visual {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.spot-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.spot-service-card:hover .spot-service-img {
  transform: scale(1.04);
}

/* Service Preview Modal */
.spot-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.spot-modal-backdrop.show {
  display: flex;
  opacity: 1;
}

.spot-modal-card {
  width: 100%;
  max-width: 640px;
  background: #110a24;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-modal-backdrop.show .spot-modal-card {
  transform: scale(1);
}

html[data-theme="light"] .spot-modal-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.25);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.2);
}

.spot-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .spot-modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spot-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

html[data-theme="light"] .spot-modal-title {
  color: #1e1b4b;
}

.spot-modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s;
}

.spot-modal-close:hover {
  color: #ffffff;
}

html[data-theme="light"] .spot-modal-close:hover {
  color: #0f172a;
}

.spot-modal-body {
  padding: 24px;
  max-height: 75vh;
  overflow-y: auto;
}

.spot-modal-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme="light"] .spot-modal-img-wrap {
  border-color: rgba(147, 51, 234, 0.15);
}

.spot-modal-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.spot-modal-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #c084fc;
  margin-bottom: 12px;
}

html[data-theme="light"] .spot-modal-subtitle {
  color: #7c3aed;
}

.spot-modal-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 24px;
}

html[data-theme="light"] .spot-modal-desc {
  color: #475569;
}

.spot-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .spot-modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Dynamic Custom Fields & Sections for Services (Spot Impact Modern Glassmorphism)
   ========================================================================== */
.spot-service-custom-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.spot-service-field-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 16px;
  padding: 14px 18px;
  transition: all 0.28s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.spot-service-field-card:hover {
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.12);
}

html[data-theme="light"] .spot-service-field-card {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .spot-service-field-card:hover {
  background: #f1f5f9;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.08);
}

.spot-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.spot-field-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spot-field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  font-size: 1.05rem;
  flex-shrink: 0;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

html[data-theme="light"] .spot-field-icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
}

.spot-field-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #f8fafc;
}

html[data-theme="light"] .spot-field-title {
  color: #1e1b4b;
}

.spot-field-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(168, 85, 247, 0.2));
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.3);
  letter-spacing: 0.2px;
}

html[data-theme="light"] .spot-field-badge {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(147, 51, 234, 0.1));
  color: #6b21a8;
  border-color: rgba(124, 58, 237, 0.25);
}

.spot-field-content {
  font-size: 0.91rem;
  line-height: 1.75;
  color: #94a3b8;
  padding-inline-start: 42px;
}

html[data-theme="light"] .spot-field-content {
  color: #475569;
}

/* Sub-services Checklist Chips */
.spot-sublist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spot-sublist-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: #cbd5e1;
}

html[data-theme="light"] .spot-sublist-chip {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

/* Homepage Mini Highlights */
.spot-service-highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spot-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #c084fc;
}

html[data-theme="light"] .spot-highlight-chip {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
  color: #6b21a8;
}

/* Modal Custom Fields */
.spot-modal-custom-fields {
  margin-top: 16px;
}

.spot-modal-custom-fields .spot-service-field-card {
  margin-bottom: 10px;
}

/* ==========================================================================
   Mobile & Smartphone Web App Optimizations
   Matching Reference Screenshots media_1790121573318.png & media_1790121606370.png
   ========================================================================== */
@media (max-width: 1199px) and (min-width: 992px) {
  html[dir="rtl"] .spot-service-card {
    grid-template-columns: 330px 1fr;
    gap: 26px;
    padding: 28px 30px;
  }
  html[dir="rtl"] .spot-service-card.card-reversed {
    grid-template-columns: 1fr 330px;
    gap: 26px;
    padding: 28px 30px;
  }
  html[dir="ltr"] .spot-service-card {
    grid-template-columns: 1fr 330px;
    gap: 26px;
    padding: 28px 30px;
  }
  html[dir="ltr"] .spot-service-card.card-reversed {
    grid-template-columns: 330px 1fr;
    gap: 26px;
    padding: 28px 30px;
  }
  .spot-service-visual {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .spot-services-section {
    padding: 50px 0;
  }

  .spot-service-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
    gap: 16px !important;
  }

  .spot-service-visual {
    width: 100% !important;
    max-width: 100% !important;
    height: 210px !important;
    border-radius: 18px !important;
    order: -1 !important; /* Image strictly at the TOP on mobile */
  }

  .spot-service-content {
    width: 100% !important;
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .spot-service-title {
    font-size: 1.25rem !important;
    text-align: center !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
  }

  .spot-service-subtitle {
    font-size: 0.9rem !important;
    text-align: center !important;
    margin-bottom: 18px !important;
  }

  /* Description box is hidden on smartphone cards matching reference images */
  .spot-service-desc-box {
    display: none !important;
  }

  .spot-service-actions {
    width: 100% !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .spot-service-order-btn {
    flex: 1 !important;
    max-width: 210px !important;
    height: 44px !important;
    padding: 0 20px !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .spot-service-eye-btn {
    width: 52px !important;
    height: 44px !important;
  }
}

@media (max-width: 576px) {
  .spot-services-main-title {
    font-size: 2.1rem;
  }

  .spot-services-main-subtitle {
    font-size: 0.95rem;
  }

  .spot-service-card {
    padding: 16px 14px 20px 14px !important;
    border-radius: 22px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  }

  .spot-service-visual {
    height: 185px !important;
    border-radius: 16px !important;
  }

  .spot-service-title {
    font-size: 1.15rem !important;
  }

  .spot-service-subtitle {
    font-size: 0.85rem !important;
  }
}

/* ==========================================================================
   Footer Services Showcase Section
   Matching Reference Screenshot media_1790121637459.png
   ========================================================================== */
.spot-footer-services-showcase {
  width: 100%;
  text-align: center;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(147, 51, 234, 0.12);
}

html[data-theme="dark"] .spot-footer-services-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spot-footer-services-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #7c3aed;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-align: center;
}

html[data-theme="dark"] .spot-footer-services-title {
  color: #ffffff;
}

.spot-footer-services-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 960px;
  margin: 0 auto;
}

.spot-footer-services-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}

.spot-footer-service-link {
  color: #334155 !important;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 2px 4px;
}

.spot-footer-service-link:hover {
  color: #7c3aed !important;
  transform: translateY(-1px);
}

html[data-theme="dark"] .spot-footer-service-link {
  color: #cbd5e1 !important;
}

html[data-theme="dark"] .spot-footer-service-link:hover {
  color: #c084fc !important;
  text-shadow: 0 0 12px rgba(192, 132, 252, 0.6);
}

.spot-footer-dot {
  color: #94a3b8;
  font-size: 0.8rem;
  opacity: 0.7;
  user-select: none;
}

html[data-theme="dark"] .spot-footer-dot {
  color: #64748b;
  opacity: 0.6;
}

.spot-footer-copyright-row {
  width: 100%;
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
}

html[data-theme="dark"] .spot-footer-copyright-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spot-footer-copyright-text {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

html[data-theme="dark"] .spot-footer-copyright-text {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .spot-footer-services-showcase {
    padding-top: 16px;
    margin-top: 16px;
  }
  .spot-footer-services-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .spot-footer-services-row {
    gap: 8px 12px;
  }
  .spot-footer-service-link {
    font-size: 0.88rem;
  }
  .spot-footer-dot {
    display: none;
  }
}

/* ==========================================================================
   Global Floating WhatsApp Button (Every Page)
   Matching Reference Screenshots media_1790121573318.png & media_1790121606370.png
   ========================================================================== */
.spot-floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 46px;
  padding: 0 18px 0 14px;
  border-radius: 9999px;
  background: #22c55e;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45);
  z-index: 9999;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

html[dir="rtl"] .spot-floating-wa-btn {
  right: 24px;
  left: auto;
}

html[dir="ltr"] .spot-floating-wa-btn {
  right: 24px;
  left: auto;
}

.spot-floating-wa-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.spot-floating-wa-btn i {
  font-size: 1.35rem;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
}

.spot-floating-wa-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #16a34a;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.6);
  color: #ffffff !important;
}

.spot-floating-wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 9999px;
  border: 2px solid rgba(34, 197, 94, 0.65);
  animation: spotWaRadar 2s infinite ease-out;
  pointer-events: none;
}

@keyframes spotWaRadar {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .spot-floating-wa-btn {
    bottom: 18px;
    right: 16px;
    height: 42px;
    padding: 0 16px 0 12px;
  }
  html[dir="rtl"] .spot-floating-wa-btn {
    right: 16px;
    left: auto;
  }
  html[dir="ltr"] .spot-floating-wa-btn {
    right: 16px;
    left: auto;
  }
  .spot-floating-wa-label {
    font-size: 0.88rem;
  }
  .spot-floating-wa-btn i {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Spot Impact Company Profile Web Page Styles
   Based on the 17-Page Corporate Profile
   ========================================================================== */
.spot-profile-page {
  padding-top: 135px;
  padding-bottom: 90px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.spot-profile-hero {
  max-width: 880px;
  margin: 0 auto 55px auto;
}

.spot-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

html[data-theme="light"] .spot-profile-badge {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
  color: #7c3aed;
}

.spot-profile-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .spot-profile-hero-title {
  background: linear-gradient(135deg, #1e1b4b 30%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spot-profile-hero-desc {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #94a3b8;
  margin-bottom: 30px;
}

html[data-theme="light"] .spot-profile-hero-desc {
  color: #475569;
}

.spot-profile-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.spot-profile-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.45);
  transition: all 0.3s ease;
  border: none;
}

.spot-profile-download-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(168, 85, 247, 0.65);
  filter: brightness(1.08);
}

.spot-profile-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.15);
  border: 1.5px solid #25d366;
  color: #22c55e !important;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.spot-profile-contact-btn:hover {
  background: #22c55e !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

/* Profile Content Card (Philosophy & About) */
.spot-profile-card {
  background: rgba(18, 12, 34, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.spot-profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.45);
}

html[data-theme="light"] .spot-profile-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.16);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.06);
}

.spot-profile-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

html[data-theme="light"] .spot-profile-card-icon {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}

.spot-profile-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

html[data-theme="light"] .spot-profile-card-title {
  color: #1e1b4b;
}

.spot-profile-card-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c084fc;
}

html[data-theme="light"] .spot-profile-card-subtitle {
  color: #7c3aed;
}

.spot-profile-card-text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #cbd5e1;
  margin-bottom: 20px;
}

html[data-theme="light"] .spot-profile-card-text {
  color: #475569;
}

.spot-profile-img-preview {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

html[data-theme="light"] .spot-profile-img-preview {
  border-color: rgba(147, 51, 234, 0.12);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.08);
}

.spot-profile-img-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* Six Pillars Grid */
.spot-pillar-card {
  background: rgba(18, 12, 34, 0.65);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 24px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.spot-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.2);
}

html[data-theme="light"] .spot-pillar-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.14);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.05);
}

html[data-theme="light"] .spot-pillar-card:hover {
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.12);
}

.spot-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

html[data-theme="light"] .spot-pillar-icon {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

.spot-pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

html[data-theme="light"] .spot-pillar-title {
  color: #1e1b4b;
}

.spot-pillar-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0;
}

html[data-theme="light"] .spot-pillar-desc {
  color: #64748b;
}

/* Stats Comparison Card (Before & After) */
.spot-profile-stats-card {
  background: linear-gradient(145deg, rgba(22, 14, 44, 0.95), rgba(12, 7, 26, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 32px;
  padding: 45px 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

html[data-theme="light"] .spot-profile-stats-card {
  background: linear-gradient(145deg, #ffffff, #faf5ff);
  border-color: rgba(147, 51, 234, 0.25);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.spot-stats-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.spot-stats-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

html[data-theme="light"] .spot-stats-main-title {
  color: #1e1b4b;
}

.spot-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  height: 100%;
  transition: all 0.25s ease;
}

.spot-stat-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-3px);
}

html[data-theme="light"] .spot-stat-box {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.spot-stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 12px;
}

html[data-theme="light"] .spot-stat-label {
  color: #475569;
}

.spot-stat-comparison {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.spot-stat-before, .spot-stat-after {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spot-stat-before .val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
}

.spot-stat-after .val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #22c55e;
}

.spot-stat-arrow {
  color: #a855f7;
  font-size: 1.4rem;
}

/* Showcase Sections */
.spot-showcase-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
}

html[data-theme="light"] .spot-showcase-badge {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

.spot-showcase-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.35;
}

html[data-theme="light"] .spot-showcase-title {
  color: #1e1b4b;
}

.spot-showcase-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #cbd5e1;
  margin-bottom: 20px;
}

html[data-theme="light"] .spot-showcase-desc {
  color: #475569;
}

.spot-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spot-showcase-list li {
  font-size: 0.96rem;
  font-weight: 600;
  color: #e2e8f0;
}

html[data-theme="light"] .spot-showcase-list li {
  color: #334155;
}

.spot-showcase-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .spot-showcase-img-wrap img {
  border-color: rgba(147, 51, 234, 0.14);
}

/* Closing Card */
.spot-profile-closing-card {
  background: radial-gradient(circle at center, rgba(35, 18, 70, 0.95), rgba(14, 8, 30, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  margin-top: 60px;
}

html[data-theme="light"] .spot-profile-closing-card {
  background: radial-gradient(circle at center, #faf5ff, #ffffff);
  border-color: rgba(147, 51, 234, 0.25);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.spot-closing-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

html[data-theme="light"] .spot-closing-title {
  color: #1e1b4b;
}

.spot-closing-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
}

html[data-theme="light"] .spot-closing-subtitle {
  color: #475569;
}

@media (max-width: 767px) {
  .spot-profile-page {
    padding-top: 105px;
    padding-bottom: 60px;
  }
  .spot-profile-hero-title {
    font-size: 2rem;
  }
  .spot-profile-hero-desc {
    font-size: 0.95rem;
  }
  .spot-stats-main-title {
    font-size: 1.45rem;
  }
  .spot-showcase-title {
    font-size: 1.4rem;
  }
  .spot-profile-card {
    padding: 24px 20px;
  }
  .spot-profile-stats-card {
    padding: 30px 18px;
  }
}

/* ==========================================================================
   Spot Impact - Portfolio Showcase ("معرض أعمالنا") & Case Studies
   ========================================================================== */

.spot-portfolio-page-wrapper {
  padding-top: 90px;
  background: var(--spot-bg);
  min-height: 100vh;
}

/* 1. Showcase Hero Banner */
.spot-showcase-hero {
  position: relative;
  padding: 85px 0 65px 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(88, 28, 135, 0.45), transparent 70%),
              linear-gradient(180deg, rgba(15, 10, 38, 0.95) 0%, rgba(10, 6, 26, 0.98) 100%);
}

html[data-theme="light"] .spot-showcase-hero {
  background: radial-gradient(circle at 50% 20%, rgba(192, 132, 252, 0.25), transparent 70%),
              linear-gradient(180deg, #f8f6fc 0%, #ffffff 100%);
}

.spot-showcase-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.spot-showcase-hero .spot-showcase-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(168, 85, 247, 0.3);
}

html[data-theme="light"] .spot-showcase-hero .spot-showcase-title {
  color: #1e1040;
  text-shadow: none;
}

.spot-showcase-hero .spot-showcase-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 500;
}

html[data-theme="light"] .spot-showcase-hero .spot-showcase-subtitle {
  color: #4b5563;
}

/* 2. شركاء النجاح Section - Compact and seamless */
.spot-partners-headline-section {
  padding: 20px 0 6px 0;
  background: var(--spot-bg);
}

.spot-partners-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #7c3aed;
  margin-bottom: 6px;
}

html[data-theme="dark"] .spot-partners-title {
  color: #a855f7;
}

.spot-partners-sub {
  font-size: 1.02rem;
  color: var(--spot-text-muted);
  margin-bottom: 10px;
}

.spot-partners-headline-section .spot-partners-bar {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 4px 0 !important;
  margin: 0 !important;
}

/* 3. Filter Pills */
.spot-filters-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.spot-filters-pills {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(12px);
}

html[data-theme="light"] .spot-filters-pills {
  background: #f1edf7;
  border-color: rgba(109, 40, 217, 0.12);
}

.spot-filter-pill {
  border: none;
  background: transparent;
  color: var(--spot-text-muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
  user-select: none;
}

.spot-filter-pill:hover {
  color: var(--spot-text);
  background: rgba(147, 51, 234, 0.1);
}

.spot-filter-pill.active {
  background: #ffffff;
  color: #1e1040 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

html[data-theme="dark"] .spot-filter-pill.active {
  background: #ffffff;
  color: #0f0a26 !important;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

/* 4. Showcase Cards Grid (2 Columns Desktop, 1 Column Mobile) */
.spot-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.spot-project-card {
  display: block;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;
  background: #110d29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

html[data-theme="light"] .spot-project-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.12);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.06);
}

.spot-project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

html[data-theme="light"] .spot-project-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.14);
}

.spot-project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a061a;
}

.spot-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-project-card:hover .spot-project-img {
  transform: scale(1.05);
}

/* Category Badge on Card */
.spot-card-cat-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  background: rgba(15, 10, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 3;
}

html[dir="ltr"] .spot-card-cat-badge {
  right: auto;
  left: 18px;
}

/* Media indicator (Video / Multi photos) */
.spot-media-indicator {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  background: rgba(15, 10, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 3;
}

html[dir="ltr"] .spot-media-indicator {
  left: auto;
  right: 18px;
}

/* Scrim Gradient at Card Bottom */
.spot-project-scrim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 6, 26, 0.75) 40%, rgba(10, 6, 26, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  transition: padding-bottom 0.3s ease;
}

.spot-project-client {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e9d5ff;
  margin-bottom: 4px;
}

.spot-project-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.spot-project-view-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.spot-project-card:hover .spot-project-view-icon {
  transform: scale(1.12);
  background: #7c3aed;
  border-color: #a855f7;
}

/* 5. Client Testimonials Section */
.spot-reviews-section {
  background: var(--spot-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .spot-reviews-section {
  border-top-color: rgba(147, 51, 234, 0.1);
}

.spot-reviews-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #7c3aed;
  margin-bottom: 6px;
}

html[data-theme="dark"] .spot-reviews-title {
  color: #a855f7;
}

.spot-reviews-sub {
  font-size: 1.05rem;
  color: var(--spot-text-muted);
}

.spot-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .spot-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .spot-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.spot-review-card {
  padding: 26px 24px;
  border-radius: 20px;
  background: var(--spot-surface, rgba(22, 16, 43, 0.7));
  border: 1px solid rgba(168, 85, 247, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(12px);
  position: relative;
}

html[data-theme="light"] .spot-review-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.12);
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.05);
}

.spot-review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

html[data-theme="light"] .spot-review-card:hover {
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.12);
}

.spot-review-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

html[data-theme="light"] .spot-review-top {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.spot-review-stars {
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.spot-review-quote {
  font-size: 1.8rem;
  color: #a855f7;
  line-height: 1;
}

.spot-review-text {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--spot-text, #e2e8f0);
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: normal;
}

.spot-review-author {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

html[data-theme="light"] .spot-review-author {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.spot-review-avatar {
  border-color: #8b5cf6 !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
  background-color: var(--spot-surface, #1e1338);
}

.spot-review-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: #a855f7;
}

html[data-theme="light"] .spot-review-name {
  color: #7c3aed;
}

.spot-review-role {
  font-size: 0.82rem;
  color: var(--spot-text-muted, #94a3b8);
  margin-top: 2px;
}

.spot-review-company {
  color: var(--spot-text-muted, #94a3b8);
  font-weight: 500;
}

/* 6. Compact Contact Form Card */
.spot-contact-compact {
  background: var(--spot-bg);
}

.spot-contact-compact-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #7c3aed;
}

html[data-theme="dark"] .spot-contact-compact-title {
  color: #a855f7;
}

.spot-contact-compact-sub {
  font-size: 1.05rem;
  color: var(--spot-text-muted);
}

.spot-compact-form-card {
  padding: 36px 32px;
  border-radius: 28px;
  background: var(--spot-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .spot-compact-form-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.12);
  box-shadow: 0 10px 40px rgba(109, 40, 217, 0.06);
}

.spot-compact-input {
  border-radius: 12px !important;
  padding: 12px 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--spot-text) !important;
}

html[data-theme="light"] .spot-compact-input {
  background: #fbf9ff !important;
  border-color: rgba(147, 51, 234, 0.2) !important;
}

.spot-compact-input:focus {
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18) !important;
}

/* 7. Case Study Details Page Styling */
.spot-case-study-wrapper {
  padding-top: 100px;
  background: var(--spot-bg);
}

.spot-case-header {
  padding: 40px 0 20px 0;
}

.spot-case-breadcrumb .breadcrumb-item a {
  color: var(--spot-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.spot-case-breadcrumb .breadcrumb-item.active {
  color: #a855f7;
  font-weight: 700;
}

.spot-case-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--spot-text);
  line-height: 1.3;
}

.spot-case-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--spot-text-muted);
}

.spot-case-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spot-case-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.spot-case-hero-media-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spot-case-cover-img {
  max-height: 520px;
  object-fit: cover;
}

.spot-case-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.spot-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(147, 51, 234, 0.12);
  color: #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.spot-block-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--spot-text);
  margin: 0;
}

.spot-case-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--spot-text-muted);
}

.spot-solutions-box {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--spot-text);
  background: var(--spot-surface);
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .spot-solutions-box {
  background: #fbf9ff;
  border-color: rgba(147, 51, 234, 0.12);
}

.spot-results-box {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.25), rgba(15, 10, 38, 0.85));
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-size: 1.05rem;
  line-height: 2;
  color: #f1edf7;
}

html[data-theme="light"] .spot-results-box {
  background: linear-gradient(135deg, #f5effe, #ffffff);
  border-color: rgba(147, 51, 234, 0.2);
  color: #1e1040;
}

.spot-case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spot-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.spot-gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 10, 38, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.spot-case-sidebar-card {
  padding: 32px 26px;
  border-radius: 24px;
  background: var(--spot-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .spot-case-sidebar-card {
  background: #ffffff;
  border-color: rgba(147, 51, 234, 0.12);
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.06);
}

.spot-sidebar-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--spot-text);
}

.spot-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .spot-meta-item {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.spot-meta-label {
  font-size: 0.92rem;
  color: var(--spot-text-muted);
}

.spot-meta-val {
  font-size: 0.95rem;
  color: var(--spot-text);
}

.spot-related-projects {
  background: var(--spot-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spot-related-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--spot-text);
}

.spot-link-all {
  color: #a855f7;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Mobile Responsiveness for Portfolio */
@media (max-width: 991px) {
  .spot-projects-grid {
    grid-template-columns: 1fr;
  }
  .spot-reviews-grid {
    grid-template-columns: 1fr;
  }
  .spot-showcase-hero .spot-showcase-title {
    font-size: 2.3rem;
  }
  .spot-showcase-hero .spot-showcase-subtitle {
    font-size: 1rem;
  }
  .spot-case-title {
    font-size: 1.85rem;
  }
  .spot-case-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Spot Impact: AI Capabilities Section (Matches Reference Image 1 Top)
   ========================================================================== */
.spot-ai-section {
  padding: 80px 0;
  position: relative;
  background-color: var(--spot-bg, #090212);
  overflow: hidden;
}

.spot-ai-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.spot-ai-header {
  position: relative;
}

.spot-ai-tag {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.spot-ai-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--spot-text-title, #ffffff);
  line-height: 1.3;
  margin-bottom: 12px;
}

.spot-ai-desc {
  font-size: 1.05rem;
  color: var(--spot-text-desc, rgba(255, 255, 255, 0.72));
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.spot-ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.spot-ai-feature-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: rgba(22, 23, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-ai-feature-card:hover {
  background: rgba(28, 30, 38, 0.9);
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.spot-ai-card-content {
  flex: 1;
}

.spot-ai-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.spot-ai-card-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

.spot-ai-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* AI Visual Canvas */
.spot-ai-canvas-wrapper {
  position: relative;
  width: 100%;
}

.spot-ai-canvas {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: 24px;
  background: #111218;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.spot-ai-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.spot-ai-ambient-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.spot-ai-center-box {
  width: 130px;
  height: 130px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.45), rgba(30, 27, 75, 0.7));
  border: 1px solid rgba(167, 139, 250, 0.35);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.35);
  animation: spotAiPulse 4s ease-in-out infinite alternate;
}

@keyframes spotAiPulse {
  0% { transform: scale(0.98); box-shadow: 0 0 25px rgba(139, 92, 246, 0.25); }
  100% { transform: scale(1.03); box-shadow: 0 0 45px rgba(139, 92, 246, 0.45); }
}

.spot-ai-sparkle-icon {
  font-size: 2.6rem;
  color: #c084fc;
  text-shadow: 0 0 18px rgba(192, 132, 252, 0.85);
}

/* Floating Badges */
.spot-ai-floating-pill {
  position: absolute;
  background: rgba(18, 19, 25, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  animation: spotAiFloat 6s ease-in-out infinite alternate;
}

@keyframes spotAiFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.pill-llm {
  top: 36px;
  right: 40px;
  animation-delay: 0s;
}

.pill-genai {
  bottom: 40px;
  right: 50px;
  animation-delay: 1.5s;
}

.pill-metric {
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
  animation-delay: 3s;
}

.pill-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.3;
}

.pill-badge-emerald {
  background: rgba(16, 185, 129, 0.18);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.pill-badge-pink {
  background: rgba(236, 72, 153, 0.18);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.pill-badge-cyan {
  background: rgba(6, 182, 212, 0.18);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.pill-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Spot Impact: Why Partner With Us Section (Matches Reference Image 1 Bottom)
   ========================================================================== */
.spot-why-partner-section {
  padding: 60px 0 80px;
  position: relative;
  background-color: var(--spot-bg, #090212);
}

.spot-why-partner-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Divider Header */
.spot-partner-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.spot-partner-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.spot-partner-divider-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Featured Hero Card */
.spot-partner-hero-card {
  background: linear-gradient(155deg, #1d1f26 0%, #111216 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.spot-partner-badge-tag {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 12px;
}

.spot-partner-main-heading {
  font-size: 2.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.spot-partner-subheading {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
}

.spot-partner-desc-body {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin: 0;
}

.spot-partner-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spot-partner-stat-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.spot-partner-stat-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.spot-partner-stat-number {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--spot-font-en, sans-serif);
}

/* 7 Reasons List */
.spot-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spot-reason-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-radius: 14px;
  background: rgba(22, 23, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.spot-reason-item:hover {
  background: rgba(30, 32, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(-4px);
}

[dir="ltr"] .spot-reason-item:hover {
  transform: translateX(4px);
}

.spot-reason-badge-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.spot-reason-num {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--spot-font-en, sans-serif);
}

.spot-reason-ico {
  font-size: 0.85rem;
  line-height: 1;
}

.spot-reason-content {
  flex: 1;
}

.spot-reason-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.spot-reason-sub {
  font-size: 0.82rem;
  font-weight: 600;
}

/* ==========================================================================
   Spot Impact: Portfolio Showcase Section (Matches Reference Image 2 Exactly)
   ========================================================================== */
.spot-portfolio-showcase-section {
  padding: 40px 0 80px;
  position: relative;
  background-color: var(--spot-bg, #090212);
}

.spot-portfolio-showcase-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Outer Dark Rounded Card Wrapper */
.spot-portfolio-outer-card {
  background: #111216;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px 36px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  position: relative;
  overflow: hidden;
}

.spot-portfolio-header {
  margin-bottom: 30px;
}

.spot-portfolio-heading {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.3px;
}

/* 3 Cards Grid */
.spot-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.spot-portfolio-card-wrap {
  width: 100%;
}

.spot-portfolio-card {
  display: block;
  text-decoration: none;
  background: #18191e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 12px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.spot-portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

/* Visual / Mockup Container */
.spot-portfolio-visual {
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #0f1013;
}

.spot-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.spot-portfolio-card:hover .spot-portfolio-img {
  transform: scale(1.05);
}

/* Category Pill Badge */
.spot-portfolio-pill-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(18, 19, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 14px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[dir="ltr"] .spot-portfolio-pill-badge {
  right: auto;
  left: 12px;
}

/* Bottom Bar */
.spot-portfolio-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 6px;
}

.spot-portfolio-card-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.spot-portfolio-card:hover .spot-portfolio-card-title {
  color: #c084fc;
}

/* Circular Arrow Action Button */
.spot-portfolio-circle-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #262831;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.spot-portfolio-card:hover .spot-portfolio-circle-btn {
  background: #8b5cf6;
  color: #ffffff;
  transform: scale(1.08);
}

/* Centered View All CTA */
.spot-portfolio-footer-cta {
  text-align: center;
}

.spot-portfolio-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.spot-portfolio-all-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Mobile Responsiveness & Viewports Tuning
   ========================================================================== */
@media (max-width: 991px) {
  .spot-portfolio-outer-card {
    padding: 32px 24px 28px;
    border-radius: 22px;
  }
  .spot-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .spot-ai-title {
    font-size: 1.95rem;
  }
  .spot-ai-canvas {
    min-height: 320px;
    margin-top: 15px;
  }
  .spot-partner-hero-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .spot-ai-section {
    padding: 50px 0;
  }
  .spot-ai-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .spot-ai-canvas {
    min-height: 290px;
  }
  .spot-ai-center-box {
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }
  .spot-ai-sparkle-icon {
    font-size: 2rem;
  }
  .pill-llm {
    top: 20px;
    right: 20px;
  }
  .pill-genai {
    bottom: 20px;
    right: 20px;
  }
  .pill-metric {
    left: 20px;
  }
  .spot-why-partner-section {
    padding: 40px 0 60px;
  }
  .spot-partner-main-heading {
    font-size: 1.65rem;
  }
  .spot-partner-stat-number {
    font-size: 2.8rem;
  }
  .spot-portfolio-showcase-section {
    padding: 20px 0 60px;
  }
  .spot-portfolio-outer-card {
    padding: 24px 16px 24px;
    border-radius: 20px;
  }
  .spot-portfolio-heading {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .spot-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .spot-portfolio-visual {
    height: 210px;
  }
}

/* ==========================================================================
   Light Mode Theme Adaptation
   ========================================================================== */
html[data-theme="light"] .spot-ai-feature-card,
html[data-theme="light"] .spot-reason-item,
html[data-theme="light"] .spot-portfolio-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.15);
  box-shadow: 0 8px 25px rgba(109, 40, 217, 0.08);
}

html[data-theme="light"] .spot-ai-card-title,
html[data-theme="light"] .spot-reason-title,
html[data-theme="light"] .spot-portfolio-card-title,
html[data-theme="light"] .spot-portfolio-heading,
html[data-theme="light"] .spot-partner-stat-title {
  color: #1a1033;
}

html[data-theme="light"] .spot-ai-card-desc {
  color: #5a4f73;
}

html[data-theme="light"] .spot-ai-canvas {
  background: #f5f0fc;
  border-color: rgba(139, 92, 246, 0.2);
}

html[data-theme="light"] .spot-ai-grid-lines {
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
}

html[data-theme="light"] .spot-ai-floating-pill {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(139, 92, 246, 0.2);
}

html[data-theme="light"] .pill-label {
  color: #241940;
}

html[data-theme="light"] .spot-portfolio-outer-card {
  background: #fdfcff;
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 20px 45px rgba(109, 40, 217, 0.1);
}

html[data-theme="light"] .spot-partner-hero-card {
  background: linear-gradient(155deg, #ffffff 0%, #f4edfc 100%);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 18px 40px rgba(109, 40, 217, 0.1);
}

html[data-theme="light"] .spot-partner-main-heading,
html[data-theme="light"] .spot-partner-subheading {
  color: #1a1033;
}

html[data-theme="light"] .spot-partner-desc-body {
  color: #5a4f73;
}

html[data-theme="light"] .spot-partner-card-footer {
  border-color: rgba(139, 92, 246, 0.15);
}

html[data-theme="light"] .spot-portfolio-all-btn {
  background: #8b5cf6;
  border-color: #7c3aed;
  color: #ffffff;
}

html[data-theme="light"] .spot-portfolio-all-btn:hover {
  background: #7c3aed;
  color: #ffffff;
}

html[data-theme="light"] .spot-portfolio-circle-btn {
  background: #ece7f7;
  color: #241940;
}

html[data-theme="light"] .spot-portfolio-card:hover .spot-portfolio-circle-btn {
  background: #8b5cf6;
  color: #ffffff;
}

/* ==========================================================================
   SPOT IMPACT - 1. NAVBAR ADDITIONS (SAS ERP & BLOG)
   ========================================================================== */
.spot-nav-link-erp {
  position: relative;
  font-weight: 700 !important;
  color: #fbbf24 !important;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 4px 14px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.spot-nav-link-erp:hover,
.spot-nav-link-erp.active {
  background: rgba(245, 158, 11, 0.25) !important;
  border-color: #f59e0b !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

.spot-erp-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: spotPulseGlow 2s infinite;
}

@keyframes spotPulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #10b981; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

[data-theme="light"] .spot-nav-link-erp {
  color: #b45309 !important;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
}

[data-theme="light"] .spot-nav-link-erp:hover,
[data-theme="light"] .spot-nav-link-erp.active {
  color: #78350f !important;
  background: rgba(245, 158, 11, 0.25) !important;
}

/* ==========================================================================
   SPOT IMPACT - 2. BLOG SYSTEM STYLES (LISTING & DETAIL)
   ========================================================================== */
.spot-blog-main-wrapper,
.spot-blog-detail-wrapper {
  padding-top: 110px;
  min-height: 80vh;
}

.spot-blog-hero-section {
  padding: 50px 0 35px 0;
  position: relative;
}

.spot-blog-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--spot-text-title, #ffffff);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.spot-blog-hero-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--spot-text-muted, #9ca3af);
}

.spot-blog-search-box {
  max-width: 580px;
  margin: 0 auto;
}

.spot-blog-search-box .input-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 40px;
  padding: 6px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.spot-blog-search-box .input-group:focus-within {
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.spot-blog-search-input {
  background: transparent !important;
  border: none !important;
  color: var(--spot-text-title, #ffffff) !important;
  font-size: 0.95rem;
}

.spot-blog-search-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.spot-search-clear-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
}

.spot-search-clear-btn:hover {
  color: #ef4444;
}

/* Category Pills */
.spot-cat-pill {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--spot-text-muted, #9ca3af);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.25s ease;
}

.spot-cat-pill:hover,
.spot-cat-pill.active {
  background: #8b5cf6;
  color: #ffffff !important;
  border-color: #8b5cf6;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
}

/* Featured Article Card */
.spot-featured-article-card {
  background: linear-gradient(135deg, rgba(28, 18, 54, 0.85) 0%, rgba(18, 12, 36, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.spot-featured-article-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.spot-featured-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.spot-featured-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spot-featured-article-card:hover .spot-featured-img {
  transform: scale(1.04);
}

.spot-featured-tag-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.spot-featured-video-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spot-badge-category {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.spot-featured-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
}

.spot-featured-title a {
  color: var(--spot-text-title, #ffffff);
  text-decoration: none;
  transition: color 0.2s ease;
}

.spot-featured-title a:hover {
  color: #a78bfa;
}

.spot-featured-excerpt {
  color: var(--spot-text-muted, #9ca3af);
  line-height: 1.65;
  font-size: 0.95rem;
}

.spot-btn-read-more {
  display: inline-flex;
  align-items: center;
  color: #8b5cf6;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.spot-btn-read-more:hover {
  color: #c4b5fd;
  transform: translateX(-4px);
}

/* Blog Cards Grid */
.spot-blog-card {
  background: linear-gradient(145deg, rgba(24, 16, 46, 0.75) 0%, rgba(15, 10, 30, 0.85) 100%);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.spot-blog-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.15);
}

.spot-blog-card-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.spot-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.spot-blog-card:hover .spot-blog-card-img {
  transform: scale(1.06);
}

.spot-blog-card-cat {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 8, 27, 0.8);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.spot-blog-video-indicator {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  background: rgba(139, 92, 246, 0.85);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.spot-blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}

.spot-blog-card-title a {
  color: var(--spot-text-title, #ffffff);
  text-decoration: none;
  transition: color 0.2s;
}

.spot-blog-card-title a:hover {
  color: #8b5cf6;
}

.spot-blog-card-desc {
  font-size: 0.9rem;
  line-height: 1.55;
}

.spot-blog-read-link {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s;
}

.spot-blog-read-link:hover {
  color: #c4b5fd;
  transform: translateX(-3px);
}

/* Blog Detail Page Styles */
.spot-blog-detail-title {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--spot-text-title, #ffffff);
}

.spot-article-rich-content {
  color: var(--spot-text-title, #e2e8f0);
  font-size: 1.12rem;
  line-height: 1.85;
}

.spot-article-rich-content h2,
.spot-article-rich-content h3,
.spot-article-rich-content h4 {
  color: var(--spot-text-title, #ffffff);
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 16px;
}

.spot-article-rich-content p {
  margin-bottom: 24px;
}

.spot-article-rich-content blockquote {
  border-right: 4px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  font-style: italic;
  margin: 30px 0;
}

.spot-article-rich-content ul,
.spot-article-rich-content ol {
  padding-right: 24px;
  margin-bottom: 24px;
}

.spot-article-rich-content li {
  margin-bottom: 10px;
}

.spot-article-rich-content img {
  max-width: 100%;
  border-radius: 16px;
  margin: 25px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spot-tag-pill {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Social Share Bar */
.spot-share-bar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spot-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, opacity 0.2s;
  border: none;
}

.spot-share-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.spot-share-btn.wa { background: #25d366; }
.spot-share-btn.tw { background: #000000; border: 1px solid rgba(255, 255, 255, 0.2); }
.spot-share-btn.in { background: #0a66c2; }
.spot-share-btn.fb { background: #1877f2; }
.spot-share-btn.copy { background: #6b7280; }

.spot-author-bio-card {
  background: linear-gradient(135deg, rgba(28, 18, 54, 0.8) 0%, rgba(18, 12, 36, 0.9) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.spot-sidebar-cta-card,
.spot-sidebar-widget {
  background: linear-gradient(145deg, rgba(24, 16, 46, 0.8) 0%, rgba(15, 10, 30, 0.9) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.spot-related-thumb {
  width: 72px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.spot-related-item {
  text-decoration: none;
  transition: transform 0.2s;
}

.spot-related-item:hover {
  transform: translateX(-4px);
}

.spot-related-title {
  color: var(--spot-text-title, #ffffff);
  transition: color 0.2s;
}

.spot-related-item:hover .spot-related-title {
  color: #8b5cf6;
}

/* ==========================================================================
   SPOT IMPACT - 3. SAS ERP SYSTEM PAGE STYLES
   ========================================================================== */
.spot-sas-erp-wrapper {
  padding-top: 110px;
}

.spot-sas-hero-section {
  position: relative;
  min-height: 600px;
}

.spot-sas-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.spot-sas-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--spot-text-title, #ffffff);
}

.spot-sas-highlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.25s;
}

.spot-sas-highlight-card:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
}

.spot-sas-hl-icon {
  width: 42px;
  height: 42px;
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.spot-sas-hl-num {
  font-size: 1.05rem;
  color: var(--spot-text-title, #ffffff);
}

.spot-sas-mockup-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.spot-sas-mockup-img {
  width: 100%;
  object-fit: cover;
}

.spot-sas-floating-badge.zatca-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Features */
.spot-sas-feature-card {
  background: linear-gradient(145deg, rgba(28, 18, 54, 0.75) 0%, rgba(18, 12, 36, 0.85) 100%);
  border: 1px solid rgba(139, 92, 246, 0.18);
  transition: all 0.35s ease;
}

.spot-sas-feature-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.spot-sas-feat-icon-box {
  width: 55px;
  height: 55px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spot-sas-feat-title {
  color: var(--spot-text-title, #ffffff);
  font-size: 1.2rem;
}

/* Modules */
.spot-sas-module-card {
  background: linear-gradient(145deg, rgba(20, 13, 38, 0.85) 0%, rgba(12, 8, 24, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.spot-sas-module-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.spot-sas-mod-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.spot-sas-mod-title {
  color: var(--spot-text-title, #ffffff);
  font-size: 1.1rem;
}

.spot-sas-why-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: all 0.25s;
}

.spot-sas-why-item:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.35);
}

.spot-sas-trust-box {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.spot-sas-cta-card {
  background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%);
  box-shadow: 0 30px 70px rgba(76, 29, 149, 0.4);
}

/* ==========================================================================
   SPOT IMPACT - 4. STANDALONE ABOUT US PAGE STYLES
   ========================================================================== */
.spot-about-page-wrapper {
  padding-top: 110px;
}

.spot-about-hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--spot-text-title, #ffffff);
}

.spot-about-hero-card-frame {
  max-width: 450px;
}

.spot-about-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.spot-about-floating-stat-box {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: rgba(15, 10, 30, 0.92);
  border: 1px solid rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(10px);
}

.spot-mission-card {
  background: linear-gradient(145deg, rgba(28, 18, 54, 0.85) 0%, rgba(18, 12, 36, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.spot-mission-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spot-mission-icon-box.vision-icon {
  background: rgba(245, 158, 11, 0.15);
}

.spot-value-card {
  background: linear-gradient(145deg, rgba(24, 16, 46, 0.75) 0%, rgba(15, 10, 30, 0.85) 100%);
  border: 1px solid rgba(139, 92, 246, 0.18);
  transition: all 0.3s;
}

.spot-value-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.18);
}

.spot-about-stats-banner {
  background: linear-gradient(135deg, rgba(30, 18, 60, 0.95) 0%, rgba(15, 9, 30, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.spot-about-feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.18);
  transition: all 0.3s;
}

.spot-about-feature-box:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.spot-about-cta-card {
  background: linear-gradient(135deg, rgba(28, 18, 54, 0.9) 0%, rgba(18, 12, 36, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* ==========================================================================
   LIGHT MODE OVERRIDES FOR NEW PAGES
   ========================================================================== */
html[data-theme="light"] .spot-blog-hero-title,
html[data-theme="light"] .spot-sas-hero-title,
html[data-theme="light"] .spot-about-hero-title,
html[data-theme="light"] .spot-blog-detail-title,
html[data-theme="light"] .spot-featured-title a,
html[data-theme="light"] .spot-blog-card-title a,
html[data-theme="light"] .spot-sas-feat-title,
html[data-theme="light"] .spot-sas-mod-title,
html[data-theme="light"] .spot-article-rich-content,
html[data-theme="light"] .spot-article-rich-content h2,
html[data-theme="light"] .spot-article-rich-content h3,
html[data-theme="light"] .spot-article-rich-content h4 {
  color: #1e1338 !important;
}

html[data-theme="light"] .spot-blog-hero-desc,
html[data-theme="light"] .spot-sas-hero-desc,
html[data-theme="light"] .spot-about-hero-lead,
html[data-theme="light"] .spot-featured-excerpt,
html[data-theme="light"] .spot-blog-card-desc,
html[data-theme="light"] .spot-sas-feat-desc,
html[data-theme="light"] .spot-sas-mod-desc,
html[data-theme="light"] .spot-story-paragraphs {
  color: #4b455c !important;
}

html[data-theme="light"] .spot-blog-search-box .input-group {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 10px 25px rgba(109, 40, 217, 0.08);
}

html[data-theme="light"] .spot-blog-search-input {
  color: #1e1338 !important;
}

html[data-theme="light"] .spot-cat-pill {
  background: #ffffff;
  color: #4b455c;
  border-color: rgba(139, 92, 246, 0.18);
}

html[data-theme="light"] .spot-featured-article-card {
  background: linear-gradient(135deg, #ffffff 0%, #fbf9ff 100%);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 20px 45px rgba(109, 40, 217, 0.1);
}

html[data-theme="light"] .spot-blog-card,
html[data-theme="light"] .spot-sas-feature-card,
html[data-theme="light"] .spot-sas-module-card,
html[data-theme="light"] .spot-value-card,
html[data-theme="light"] .spot-about-feature-box,
html[data-theme="light"] .spot-sidebar-cta-card,
html[data-theme="light"] .spot-sidebar-widget,
html[data-theme="light"] .spot-author-bio-card {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 12px 30px rgba(109, 40, 217, 0.07);
}

html[data-theme="light"] .spot-sas-highlight-card,
html[data-theme="light"] .spot-sas-why-item {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.15);
}

html[data-theme="light"] .spot-sas-hl-num {
  color: #1e1338;
}

html[data-theme="light"] .spot-mission-card {
  background: linear-gradient(145deg, #241442 0%, #170d2c 100%);
}

html[data-theme="light"] .spot-about-stats-banner {
  background: linear-gradient(135deg, #30175c 0%, #1f0f3c 100%);
}

html[data-theme="light"] .spot-about-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7f2fc 100%);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 20px 45px rgba(109, 40, 217, 0.1);
}

html[data-theme="light"] .spot-about-cta-card h3 {
  color: #1e1338 !important;
}

html[data-theme="light"] .spot-about-floating-stat-box {
  background: #1e1338;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .spot-blog-hero-title,
  .spot-sas-hero-title,
  .spot-about-hero-title {
    font-size: 2.2rem;
  }
  .spot-blog-detail-title {
    font-size: 2rem;
  }
  .spot-featured-img-wrap,
  .spot-featured-img {
    min-height: 250px;
  }
  .spot-about-floating-stat-box {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 767px) {
  .spot-blog-hero-title,
  .spot-sas-hero-title,
  .spot-about-hero-title {
    font-size: 1.85rem;
  }
  .spot-blog-detail-title {
    font-size: 1.6rem;
  }
  .spot-featured-article-card {
    border-radius: 16px;
  }
}











