/* ==========================================================================
   ADEEL CH - PREMIUM DIGITAL AGENCY LANDING PAGE
   Futuristic Dark Luxury & Purple Glow Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME SETUP
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #020611;
  --bg-secondary: #070d1b;
  --bg-card: rgba(10, 17, 35, 0.78);
  --bg-card-hover: rgba(16, 25, 52, 0.88);
  --bg-glass: rgba(13, 22, 45, 0.65);
  
  --border-subtle: rgba(120, 90, 255, 0.18);
  --border-medium: rgba(140, 100, 255, 0.3);
  --border-bright: rgba(155, 115, 255, 0.65);
  
  --purple-primary: #5b2eff;
  --purple-bright: #7040ff;
  --purple-accent: #8b5cff;
  --purple-glow: #3920b8;
  --purple-soft-bg: rgba(91, 46, 255, 0.12);
  --purple-badge-bg: rgba(112, 64, 255, 0.15);
  
  --text-main: #ffffff;
  --text-secondary: #a8aec0;
  --text-muted: #747b91;
  --text-dim: #4e5569;
  
  --gradient-purple: linear-gradient(135deg, #7040ff 0%, #5b2eff 50%, #431bbb 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 20%, #a78bfa 60%, #7040ff 100%);
  --gradient-purple-text: linear-gradient(135deg, #b794f6 0%, #8b5cff 50%, #5b2eff 100%);
  --gradient-card: linear-gradient(180deg, rgba(16, 26, 54, 0.6) 0%, rgba(7, 13, 27, 0.8) 100%);
  --gradient-cta: linear-gradient(135deg, rgba(57, 32, 184, 0.45) 0%, rgba(112, 64, 255, 0.25) 50%, rgba(10, 17, 35, 0.8) 100%);
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(91, 46, 255, 0.25);
  --shadow-glow-strong: 0 0 35px rgba(112, 64, 255, 0.45);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLING
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Radial Background Glows */
.bg-ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-ambient-glow-1 {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(91, 46, 255, 0.18) 0%, rgba(57, 32, 184, 0.08) 45%, transparent 70%);
  filter: blur(80px);
}

.bg-ambient-glow-2 {
  position: absolute;
  top: 35%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(112, 64, 255, 0.1) 0%, rgba(3, 8, 22, 0) 70%);
  filter: blur(90px);
}

.bg-ambient-glow-3 {
  position: absolute;
  top: 70%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 46, 255, 0.09) 0%, rgba(3, 8, 22, 0) 70%);
  filter: blur(90px);
}

.app-wrapper {
  position: relative;
  z-index: 1;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.02em;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.text-gradient-purple {
  background: var(--gradient-purple-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-gradient-silver {
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted-custom {
  color: var(--text-muted);
}

.text-secondary-custom {
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   3. SECTION CONTAINERS & SPACING
   -------------------------------------------------------------------------- */
.custom-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-spacing {
  padding-top: 95px;
  padding-bottom: 95px;
  position: relative;
}

@media (max-width: 991px) {
  .section-spacing {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

@media (max-width: 767px) {
  .section-spacing {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--purple-badge-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--purple-accent);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--purple-bright);
  box-shadow: 0 0 8px var(--purple-bright);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-header-wrap {
  margin-bottom: 45px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR (FLOATING HEADER)
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: all var(--transition-smooth);
}

.navbar-custom {
  background: rgba(8, 14, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 15px rgba(91, 46, 255, 0.08);
  transition: all var(--transition-smooth);
}

.navbar-scrolled .navbar-custom {
  background: rgba(5, 10, 24, 0.92);
  border-color: rgba(140, 100, 255, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(91, 46, 255, 0.15);
  padding: 6px 16px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-main) !important;
  letter-spacing: -0.02em;
}

.brand-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(112, 64, 255, 0.5);
  position: relative;
}

.brand-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.nav-link-custom {
  color: var(--text-secondary) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link-custom:hover {
  color: #ffffff !important;
}

.nav-link-custom.active {
  color: #ffffff !important;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--purple-bright);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--purple-bright);
}

.navbar-toggler-custom {
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text-main);
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-custom:hover {
  background: rgba(112, 64, 255, 0.2);
  border-color: var(--purple-bright);
}

/* --------------------------------------------------------------------------
   5. BUTTONS & INTERACTIVE CONTROLS
   -------------------------------------------------------------------------- */
.btn-primary-glow {
  background: var(--gradient-purple);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px rgba(91, 46, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(112, 64, 255, 0.55), 0 0 15px rgba(139, 92, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
}

.btn-primary-glow:active {
  transform: translateY(0);
}

.btn-secondary-outline {
  background: transparent;
  color: var(--text-main) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary-outline:hover {
  background: var(--purple-soft-bg);
  border-color: var(--purple-bright);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(91, 46, 255, 0.2);
}

.btn-outline-purple-rounded {
  background: transparent;
  color: var(--purple-accent) !important;
  border: 1px solid var(--border-medium);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
}

.btn-outline-purple-rounded:hover {
  background: var(--purple-soft-bg);
  border-color: var(--purple-bright);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple-accent);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.link-arrow i {
  transition: transform var(--transition-fast);
}

.link-arrow:hover {
  color: #ffffff;
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION & CANVAS PARTICLE WAVE
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 155px;
  padding-bottom: 75px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-canvas-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

@media (max-width: 575px) {
  .hero-btn-group {
    flex-direction: column;
    gap: 12px;
  }
  .hero-btn-group .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   7. HERO STATISTICS CARD
   -------------------------------------------------------------------------- */
.stats-card-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.stats-glass-card {
  background: rgba(10, 17, 36, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(91, 46, 255, 0.1);
  transition: all var(--transition-smooth);
}

.stats-glass-card:hover {
  border-color: var(--border-medium);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(91, 46, 255, 0.16);
}

.stats-item {
  text-align: center;
  position: relative;
  padding: 6px 12px;
}

.stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(120, 90, 255, 0.25), transparent);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stats-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .stats-item:not(:last-child)::after {
    display: none;
  }
  .stats-glass-card {
    padding: 20px 16px;
  }
  .stats-row-mobile > div {
    margin-bottom: 16px;
  }
  .stats-row-mobile > div:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION (8 CARDS IN 4x2 GRID)
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(140, 100, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6), 0 0 25px rgba(91, 46, 255, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 0 16px rgba(91, 46, 255, 0.4);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(112, 64, 255, 0.65);
}

.service-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   9. FEATURED PORTFOLIO SECTION
   -------------------------------------------------------------------------- */
.portfolio-section {
  position: relative;
}

.portfolio-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .portfolio-filter-group {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

.filter-btn {
  background: rgba(13, 22, 45, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  color: #ffffff;
  border-color: var(--border-medium);
  background: rgba(25, 36, 68, 0.7);
}

.filter-btn.active {
  background: var(--gradient-purple);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(91, 46, 255, 0.4);
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 25px rgba(91, 46, 255, 0.25);
}

.portfolio-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #070d1b;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(5, 10, 25, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--purple-accent);
}

.portfolio-info {
  padding: 18px 20px;
  background: rgba(8, 14, 30, 0.9);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.portfolio-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-choose-section {
  position: relative;
}

.workspace-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(91, 46, 255, 0.18);
  height: 100%;
  min-height: 380px;
  background: #070d1b;
}

.workspace-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workspace-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 14, 30, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.workspace-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(112, 64, 255, 0.5);
}

.feature-grid-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--transition-smooth);
  height: 100%;
}

.feature-grid-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(91, 46, 255, 0.15);
}

.feature-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(112, 64, 255, 0.15);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-accent);
  font-size: 16px;
  margin-bottom: 14px;
  transition: all var(--transition-fast);
}

.feature-grid-item:hover .feature-icon-circle {
  background: var(--gradient-purple);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(112, 64, 255, 0.5);
}

.feature-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-item-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. TRUSTED BY LEADING BRANDS SECTION
   -------------------------------------------------------------------------- */
.brands-section {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.brands-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.brands-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.brand-item {
  color: #5d657d;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-item:hover {
  color: #a8aec0;
  transform: translateY(-2px);
}

.brand-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(120, 90, 255, 0.2), transparent);
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   12 & 13. TESTIMONIALS SECTION & SLIDER
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
}

.testimonial-slider-container {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-medium);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(91, 46, 255, 0.15);
}

/* Center card emphasized */
.testimonial-card.emphasized {
  background: rgba(15, 24, 48, 0.85);
  border-color: var(--border-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(91, 46, 255, 0.28);
}

.quote-icon {
  font-size: 28px;
  color: var(--purple-accent);
  opacity: 0.8;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(120, 90, 255, 0.12);
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-bright);
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.author-role {
  font-size: 13px;
  color: var(--purple-accent);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.slider-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 22, 45, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow-btn:hover {
  background: var(--purple-primary);
  border-color: var(--purple-bright);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(91, 46, 255, 0.4);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(120, 90, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--purple-bright);
  box-shadow: 0 0 10px var(--purple-bright);
}

/* --------------------------------------------------------------------------
   14. FINAL CTA BANNER
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}

.cta-banner-card {
  background: var(--gradient-cta);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(91, 46, 255, 0.25);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(112, 64, 255, 0.35) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 35px rgba(91, 46, 255, 0.6);
  flex-shrink: 0;
}

.cta-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-subtitle {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cta-banner-card {
    padding: 35px 25px;
    text-align: center;
  }
  .cta-content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .cta-icon-wrap {
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer-section {
  background: #02050f;
  border-top: 1px solid rgba(120, 90, 255, 0.15);
  padding-top: 75px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 22, 45, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--purple-primary);
  border-color: var(--purple-bright);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(91, 46, 255, 0.4);
}

.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-contact-info i {
  color: var(--purple-accent);
  margin-top: 3px;
}

.footer-bottom-divider {
  height: 1px;
  background: rgba(120, 90, 255, 0.12);
  margin-top: 50px;
  margin-bottom: 25px;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  margin-left: 18px;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   16. MODAL & TOAST COMPONENT STYLING
   -------------------------------------------------------------------------- */
.custom-modal .modal-content {
  background: #080f22;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(91, 46, 255, 0.25);
  color: #ffffff;
}

.custom-modal .modal-header {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 26px;
}

.custom-modal .modal-body {
  padding: 26px;
}

.custom-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.7;
}

.form-control-custom, .form-select-custom {
  background: rgba(10, 18, 38, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.form-control-custom:focus, .form-select-custom:focus {
  background: rgba(15, 26, 54, 0.9);
  border-color: var(--purple-bright);
  box-shadow: 0 0 15px rgba(91, 46, 255, 0.3);
  color: #ffffff;
  outline: none;
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

.custom-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  background: #0a1329;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(91, 46, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.custom-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Back to top button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 990;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 18, 38, 0.85);
  border: 1px solid var(--border-subtle);
  color: var(--purple-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all var(--transition-smooth);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.back-to-top-btn:hover {
  background: var(--purple-primary);
  color: #ffffff;
  border-color: var(--purple-bright);
  box-shadow: 0 0 16px rgba(91, 46, 255, 0.5);
}

/* --------------------------------------------------------------------------
   19. INNER PAGES & AGENCY PAGE DEDICATED STYLES
   -------------------------------------------------------------------------- */
.inner-hero-section {
  padding-top: 150px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.inner-hero-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.inner-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* Agency Hero Section & Particle Wave Canvas Container */
.agency-hero-section {
  padding-top: 140px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.agency-hero-title {
  font-size: clamp(36px, 5.2vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

.agency-hero-canvas-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at 60% 50%, rgba(108, 53, 255, 0.16) 0%, rgba(5, 7, 17, 0.9) 75%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(108, 53, 255, 0.15);
}

.agency-hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.canvas-glow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(108, 53, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* Who We Are Video Style Card */
.about-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #060919;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(108, 53, 255, 0.18);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.about-video-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 40px rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
}

.about-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform var(--transition-slow), opacity var(--transition-smooth);
}

.about-video-card:hover .about-video-img {
  transform: scale(1.05);
  opacity: 0.95;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 17, 0.2) 0%, rgba(2, 6, 17, 0.8) 100%);
  pointer-events: none;
}

.about-play-btn {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-purple);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(108, 53, 255, 0.6);
  transition: all var(--transition-smooth);
  z-index: 2;
  padding-left: 4px;
}

.about-play-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(139, 92, 246, 0.85);
  border-color: #ffffff;
}

/* Statistics Grid Custom Cards */
.stat-card-glass {
  background: rgba(10, 17, 35, 0.78);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-card-glass:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(108, 53, 255, 0.25);
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-soft-bg);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-accent);
  font-size: 20px;
  margin: 0 auto 12px;
}

.stat-number-text {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 30%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.stat-label-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mission & Vision Big Cards */
.mission-vision-card {
  background: rgba(10, 17, 35, 0.78);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(108, 53, 255, 0.25);
}

.mission-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-soft-bg);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(108, 53, 255, 0.35);
  transition: transform var(--transition-smooth);
}

.mission-vision-card:hover .mission-icon-container {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

/* Why Choose Us Cards */
.why-card {
  background: rgba(10, 17, 35, 0.78);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  height: 100%;
  transition: all var(--transition-smooth);
  position: relative;
}

.why-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 25px rgba(108, 53, 255, 0.22);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-soft-bg);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  font-size: 22px;
  margin-bottom: 16px;
  transition: transform var(--transition-fast);
}

.why-card:hover .why-icon-box {
  transform: scale(1.1);
  color: #c4b5fd;
  border-color: var(--border-bright);
}

/* Expertise Pill / Cards */
.expertise-pill-item {
  background: rgba(10, 17, 35, 0.78);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: #ffffff;
}

.expertise-pill-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 53, 255, 0.25);
  color: #ffffff;
}

.expertise-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--purple-soft-bg);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-accent);
  font-size: 16px;
  flex-shrink: 0;
}

/* Horizontal Timeline System */
.timeline-horizontal-track {
  position: relative;
  padding: 40px 0 20px;
}

.timeline-connecting-line {
  position: absolute;
  top: 58px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(108, 53, 255, 0.2) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(108, 53, 255, 0.2) 100%);
  z-index: 0;
  box-shadow: 0 0 10px rgba(108, 53, 255, 0.6);
}

.timeline-node-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.timeline-node-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #060918;
  border: 2px solid var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--purple-accent);
  font-size: 15px;
  box-shadow: 0 0 20px rgba(108, 53, 255, 0.6), inset 0 0 10px rgba(108, 53, 255, 0.4);
  transition: all var(--transition-smooth);
}

.timeline-node-card:hover .timeline-node-dot {
  transform: scale(1.2);
  background: var(--purple-bright);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.9);
}

.timeline-inner-box {
  background: rgba(10, 17, 35, 0.78);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: all var(--transition-smooth);
}

.timeline-node-card:hover .timeline-inner-box {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(108, 53, 255, 0.2);
}

/* Premium 3-Part Founder Card */
.founder-glass-card {
  background: rgba(10, 17, 35, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(108, 53, 255, 0.2);
}

.founder-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4 / 5;
  background: #040816;
}

.founder-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.founder-glass-card:hover .founder-img-box img {
  transform: scale(1.04);
}

.founder-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14.5px;
  color: #e2e8f0;
  font-weight: 500;
}

.founder-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-soft-bg);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(108, 53, 255, 0.4);
}

@media (max-width: 991.98px) {
  .timeline-connecting-line {
    display: none;
  }
  .founder-glass-card {
    padding: 28px 20px;
  }
}

/* Service Deep-Dive Cards */
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(91, 46, 255, 0.22);
}

.service-badge-pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(112, 64, 255, 0.15);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-feature-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.service-feature-checklist li {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-feature-checklist li i {
  color: var(--purple-bright);
  font-size: 14px;
}

/* Working Process Steps */
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  height: 100%;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(91, 46, 255, 0.18);
}

.process-step-badge {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: rgba(140, 100, 255, 0.3);
  margin-bottom: 12px;
}

.process-card:hover .process-step-badge {
  color: var(--purple-accent);
}

/* Custom Accordion for FAQ */
.custom-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 22px;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(112, 64, 255, 0.12);
  color: var(--purple-accent);
  border-bottom: 1px solid var(--border-subtle);
}

.custom-accordion .accordion-button::after {
  filter: invert(1) brightness(150%);
}

.custom-accordion .accordion-body {
  background: transparent;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
  padding: 20px 22px;
}

/* Team Cards */
.team-member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition-smooth);
}

.team-member-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(91, 46, 255, 0.2);
}

.team-avatar-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #070d1b;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-member-card:hover .team-avatar-img {
  transform: scale(1.06);
}

.team-info {
  padding: 20px 16px;
}

.team-name {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--purple-accent);
  margin-bottom: 12px;
}

/* Agency Milestones Timeline */
.timeline-card {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  border-left: 2px solid rgba(120, 90, 255, 0.25);
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 10px var(--purple-bright);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Contact Info Highlight Boxes */
.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-smooth);
  height: 100%;
}

.contact-info-box:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(91, 46, 255, 0.15);
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-soft-bg);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  font-size: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   18. PREFERS-REDUCED-MOTION SUPPORT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
