/* ═══════════════════════════════════════════════════════════════════
   BEDAYA Special Needs Center — Main Stylesheet
   Theme: Warm Cream + Purple/Blue · Soft & Light
   ═══════════════════════════════════════════════════════════════════ */

/* ── Google Fonts already loaded in layout ── */

/* ─────────────────────────────────────────── CSS VARIABLES ── */
:root {
  /* Brand */
  --primary:        #6C3FC4;
  --primary-dark:   #4F2D9E;
  --primary-light:  #E8DEFF;
  --secondary:      #3B7FD4;
  --secondary-dark: #2563AE;
  --secondary-light:#DBEAFE;

  /* Warm neutrals */
  --cream:          #FFFBF5;
  --cream-2:        #FFF6E9;
  --section-alt:    #F5F0FF;
  --white:          #FFFFFF;

  /* Text */
  --text-dark:      #1E1340;
  --text-body:      #3D3660;
  --text-muted:     #7B6FA0;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #6C3FC4, #3B7FD4);
  --grad-warm:      linear-gradient(135deg, #7C3AED, #EC4899);
  --grad-soft:      linear-gradient(135deg, #EDE9FE, #DBEAFE);

  /* Shadows */
  --shadow-sm:      0 2px 12px rgba(108, 63, 196, .08);
  --shadow-md:      0 8px 32px rgba(108, 63, 196, .12);
  --shadow-lg:      0 20px 50px rgba(108, 63, 196, .15);

  /* Radius */
  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Transitions */
  --trans: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ─────────────────────────────────────────── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', sans-serif;
  color: var(--text-dark);
  font-weight: 800;
}

a { transition: var(--trans); }

img { max-width: 100%; }

/* ─────────────────────────────────────────────── HELPERS ── */

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-section-alt  { background: var(--section-alt); }
.section-padding { padding: 96px 0; }

/* ─────────────────────────────────────────────── NAVBAR ── */
.bedaya-navbar {
  background: rgba(255, 251, 245, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108, 63, 196, .1);
  padding: 12px 0;
  transition: var(--trans);
}

.bedaya-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(108, 63, 196, .1);
}

/* Logo */
.navbar-logo-icon {
  width: 44px; height: 44px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Amiri', serif;
  font-size: 20px; font-weight: 900; color: #fff;
  box-shadow: 0 4px 16px rgba(108, 63, 196, .35);
  flex-shrink: 0;
  transition: var(--trans);
}
.navbar-brand:hover .navbar-logo-icon {
  box-shadow: 0 6px 22px rgba(108, 63, 196, .5);
  transform: translateY(-1px);
}

.logo-name {
  font-size: 20px; font-weight: 900; letter-spacing: 2px;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.logo-sub {
  font-size: 9px; letter-spacing: 1.5px;
  color: var(--text-muted); text-transform: uppercase;
}

/* Nav links */
.nav-link {
  color: var(--text-body) !important;
  font-size: 14px; font-weight: 600;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid rgba(108, 63, 196, .12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  background: var(--white);
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-body);
  transition: var(--trans);
}
.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ────────────────────────────────────────────── BUTTONS ── */
.btn-primary {
  background: var(--grad-primary);
  border: none;
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  padding: 11px 28px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(108, 63, 196, .35);
  transition: var(--trans);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--grad-primary);
  box-shadow: 0 8px 28px rgba(108, 63, 196, .5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  padding: 10px 28px;
  background: transparent;
  transition: var(--trans);
}
.btn-outline-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-secondary {
  border: 2px solid rgba(108, 63, 196, .2);
  color: var(--text-body);
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  padding: 10px 28px;
  background: transparent;
  transition: var(--trans);
}
.btn-outline-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────── HERO ── */
.hero-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Decorative BG shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,63,196,.12), transparent);
  top: -100px; right: -80px;
}
.shape-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(59,127,212,.1), transparent);
  bottom: -80px; left: -60px;
}
.shape-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(236,72,153,.08), transparent);
  top: 40%; left: 35%;
  animation: floatShape 8s ease-in-out infinite;
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* Hero text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(108, 63, 196, .2);
  color: var(--primary);
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,63,196,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(108,63,196,0); }
}

.hero-title {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.12; font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px; line-height: 1.85;
  color: var(--text-muted);
  max-width: 500px; margin-bottom: 36px;
}

.btn-hero {
  font-size: 16px !important; padding: 14px 36px !important;
}

/* Stat cards */
.hero-stats { border-top: 1px solid rgba(108,63,196,.1); padding-top: 32px; margin-top: 32px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(108, 63, 196, .1);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
  font-size: 30px; font-weight: 900; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

/* Hero visual */
.hero-visual { padding: 40px 20px 20px; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(108, 63, 196, .1);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}

/* Float badges */
.hero-float {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(108, 63, 196, .12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  white-space: nowrap;
}
.hero-float-top    { top: 10px; left: -10px; animation: floatY 6s ease-in-out infinite; }
.hero-float-bottom { bottom: 16px; left: -10px; animation: floatY 6s ease-in-out -3s infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-icon { font-size: 22px; }
.float-title {
  font-size: 14px; font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.float-sub { font-size: 11px; color: var(--text-muted); }

/* Service pills */
.service-pill {
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: 1px solid transparent;
  transition: var(--trans);
  cursor: default;
}
.service-pill:hover { transform: scale(1.05); }
.service-pill-purple { background: rgba(108,63,196,.1);  color: #6C3FC4; border-color: rgba(108,63,196,.2); }
.service-pill-blue   { background: rgba(59,127,212,.1);  color: #3B7FD4; border-color: rgba(59,127,212,.2); }
.service-pill-orange { background: rgba(234,88,12,.1);   color: #EA580C; border-color: rgba(234,88,12,.2); }
.service-pill-teal   { background: rgba(20,184,166,.1);  color: #0D9488; border-color: rgba(20,184,166,.2); }
.service-pill-pink   { background: rgba(236,72,153,.1);  color: #DB2777; border-color: rgba(236,72,153,.2); }
.service-pill-indigo { background: rgba(99,102,241,.1);  color: #4F46E5; border-color: rgba(99,102,241,.2); }

/* Progress bars */
.progress-bedaya {
  height: 7px; border-radius: 10px;
  background: rgba(108,63,196,.08);
}
.bg-gradient-purple { background: linear-gradient(90deg, #6C3FC4, #3B7FD4) !important; }
.bg-gradient-blue   { background: linear-gradient(90deg, #3B7FD4, #06B6D4) !important; }
.bg-gradient-teal   { background: linear-gradient(90deg, #14B8A6, #3B7FD4) !important; }

/* ────────────────────────────────────── SECTION HEADERS ── */
.section-header { margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  padding: 5px 18px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(108,63,196,.2);
  margin-bottom: 14px;
}

.section-tag-light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.25);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px; color: var(--text-muted);
  max-width: 520px; margin: 0 auto;
  line-height: 1.8;
}

/* ──────────────────────────────────────── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(108,63,196,.08);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Color accent left border */
.service-card::before {
  content: ''; position: absolute;
  top: 0; right: 0;
  width: 4px; height: 60%;
  border-radius: 0 4px 4px 0;
  transition: height .4s;
}
.service-card:hover::before { height: 100%; }

.service-card-purple::before { background: var(--grad-primary); }
.service-card-blue::before   { background: linear-gradient(180deg,#3B7FD4,#06B6D4); }
.service-card-orange::before { background: linear-gradient(180deg,#F59E0B,#EA580C); }
.service-card-teal::before   { background: linear-gradient(180deg,#14B8A6,#3B7FD4); }

.service-number {
  font-size: 56px; font-weight: 900; line-height: 1;
  opacity: .07; position: absolute; top: 16px; left: 28px;
  color: var(--primary);
}
.service-icon {
  font-size: 36px; margin-bottom: 18px;
  width: 64px; height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.service-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.service-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; flex: 1; }

.service-tag {
  padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 600;
  background: var(--section-alt);
  color: var(--primary);
  border: 1px solid rgba(108,63,196,.15);
}

.btn-service {
  border-radius: 50px; font-weight: 700; font-size: 13px;
  background: var(--primary-light); color: var(--primary);
  border: 1px solid rgba(108,63,196,.2);
  padding: 8px 20px;
  transition: var(--trans); align-self: flex-start;
}
.btn-service:hover { background: var(--primary); color: #fff; }

/* ──────────────────────────────────────────── WHY CARDS ── */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(108,63,196,.08);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--trans);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(108,63,196,.2); }

.why-icon {
  font-size: 26px;
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.why-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text-dark); }
.why-text  { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ──────────────────────────────────────── PROCESS STEPS ── */
.process-row { position: relative; }
.process-row::before {
  content: ''; position: absolute;
  top: 38px; right: 15%; left: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: .2; border-radius: 2px;
}

.process-step { padding: 10px; }

.process-circle {
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900;
  margin: 0 auto 22px;
  position: relative; z-index: 2;
  border: 3px solid transparent;
  transition: var(--trans);
}
.process-step:hover .process-circle { transform: scale(1.1); }

.pc-purple { background: rgba(108,63,196,.1); color: var(--primary); border-color: rgba(108,63,196,.3); }
.pc-blue   { background: rgba(59,127,212,.1); color: var(--secondary); border-color: rgba(59,127,212,.3); }
.pc-teal   { background: rgba(20,184,166,.1); color: #0D9488; border-color: rgba(20,184,166,.3); }
.pc-orange { background: rgba(234,88,12,.1);  color: #EA580C; border-color: rgba(234,88,12,.3); }

.process-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.process-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ───────────────────────────────────── TESTIMONIAL CARDS ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(108,63,196,.08);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108,63,196,.18);
}
.tst-stars {
  font-size: 15px; margin-bottom: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tst-quote {
  font-size: 64px; line-height: .7;
  background: var(--grad-primary); opacity: .2;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 8px;
  font-family: 'Amiri', serif;
}
.tst-text   { font-size: 14px; color: var(--text-muted); line-height: 1.85; font-style: italic; flex: 1; margin-bottom: 20px; }
.tst-avatar { font-size: 28px; width: 46px; height: 46px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; }
.tst-name   { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.tst-rel    { font-size: 12px; color: var(--text-muted); }

/* ──────────────────────────────────────────── CTA SECTION ── */
.cta-section {
  background: var(--grad-primary);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(255,255,255,.05), transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: #fff;
  margin: 16px 0 20px;
}
.cta-desc   { font-size: 17px; color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 44px; line-height: 1.75; }

.cta-btn-white {
  background: #fff; color: var(--primary) !important;
  font-weight: 700; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
  border: none; transition: var(--trans);
}
.cta-btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.35);
  color: #fff; border-radius: 50px; font-weight: 700;
  transition: var(--trans);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; transform: translateY(-3px); }

.cta-info-chip {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: 14px;
  background: rgba(255,255,255,.1); border-radius: 50px;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,.15);
}
.cta-info-chip i { font-size: 15px; }

/* ────────────────────────────────────────────── PAGE HERO ── */
.page-hero {
  background: var(--section-alt);
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(108,63,196,.1);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(108,63,196,.06), transparent 70%);
}
.page-hero-title { font-size: clamp(30px, 4vw, 50px); font-weight: 900; color: var(--text-dark); margin: 16px 0 14px; }
.page-hero-desc  { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ─────────────────────────────────────────────── FOOTER ── */
.bedaya-footer {
  background: var(--text-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,.6);
}

.footer-logo-icon {
  width: 48px; height: 48px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.footer-logo-name {
  font-size: 20px; font-weight: 900; letter-spacing: 2px;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; margin: 0; }

.footer-heading {
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: var(--trans); }
.footer-links a:hover { color: #fff; padding-right: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.6); }
.footer-contact a { color: rgba(255,255,255,.6); text-decoration: none; transition: var(--trans); }
.footer-contact a:hover { color: #fff; }

.footer-social { margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6) !important; font-size: 16px;
  text-decoration: none; transition: var(--trans);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff !important; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 13px; color: rgba(255,255,255,.35);
}

/* ─────────────────────────────── CONTACT FORM & INFO ── */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid rgba(108,63,196,.1);
  box-shadow: var(--shadow-md);
}

.form-control, .form-select {
  border: 1.5px solid rgba(108,63,196,.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--trans);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,63,196,.12);
  background: var(--white);
}

.contact-info-side { padding: 10px 0; }
.contact-icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-label { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.contact-info-value { font-size: 15px; font-weight: 700; color: var(--text-dark); }

.cta-box-mini {
  background: var(--section-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(108,63,196,.1);
}

/* ─────────────────────────────────────────── TEAM CARDS ── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(108,63,196,.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(108,63,196,.2); }

.team-avatar {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.team-avatar-purple { background: linear-gradient(135deg, rgba(108,63,196,.15), rgba(108,63,196,.04)); }
.team-avatar-blue   { background: linear-gradient(135deg, rgba(59,127,212,.15), rgba(59,127,212,.04)); }
.team-avatar-teal   { background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(20,184,166,.04)); }
.team-avatar-orange { background: linear-gradient(135deg, rgba(234,88,12,.12),  rgba(234,88,12,.04)); }

.team-name  { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.team-role  { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.team-exp   { font-size: 12px; color: var(--text-muted); margin: 0; }

.team-badge {
  display: inline-block; padding: 4px 14px;
  border-radius: 50px; font-size: 12px; font-weight: 700;
}
.team-badge-purple { background: rgba(108,63,196,.1); color: var(--primary); }
.team-badge-blue   { background: rgba(59,127,212,.1);  color: var(--secondary); }
.team-badge-teal   { background: rgba(20,184,166,.1);  color: #0D9488; }
.team-badge-orange { background: rgba(234,88,12,.1);   color: #EA580C; }

/* ─────────────────────────────────── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff !important;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: var(--trans);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.15);
  animation: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.75); }
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  display: none; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--shadow-md);
  transition: var(--trans); cursor: pointer;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ────────────────────────────────────────── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ──────────────────────────────────────────── RESPONSIVE ── */
@media (max-width: 992px) {
  .section-padding { padding: 70px 0; }
  .process-row::before { display: none; }
  .hero-section .min-vh-100 { min-height: auto !important; padding: 80px 0 40px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .contact-form-card { padding: 28px 20px; }
}
