/* ═══════════════════════════════════════════
   FOURESS ANALYTICS — CLEAN AESTHETIC THEME
   Palette: White · Slate #1a1a2e · Accent #4361ee (electric blue)
   Secondary accent: #2a9d8f (teal for data/migration)
═══════════════════════════════════════════ */

:root {
  --dark:    #1a1a2e;
  --accent:  #4361ee;
  --teal:    #2a9d8f;
  --light:   #f7f7f5;
  --mid:     #f0efeb;
  --text:    #2d2d2d;
  --muted:   #6b6b6b;
  --border:  #e5e5e5;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.13);
  --radius:  12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { color: var(--text); font-family: 'Nunito', sans-serif; background: #fff; }
a { text-decoration: none !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.display-3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
  line-height: 1.2 !important;
}
.display-3.light { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* ── HEADING LINE ── */
.heading-line {
  width: 40px !important;
  height: 3px !important;
  background: var(--accent) !important;
  border-radius: 2px !important;
  margin: 14px auto 0 !important;
}
.heading-line.left { margin: 14px 0 0 !important; }

/* ── NAVBAR ── */
.menu {
  background: var(--dark) !important;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  padding: 14px 0;
}
.menu.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.75) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}
.btn-rounded {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
  box-shadow: 0 2px 12px rgba(232,105,42,0.35);
}
.btn-rounded:hover {
  background: #3451d1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(232,105,42,0.45) !important;
}
.btn-rounded span { display: none; }

/* ── HERO ── */
.intro-section {
  background: var(--dark) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,105,42,0.08) 0%, transparent 65%);
  top: -150px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.intro-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.07) 0%, transparent 65%);
  bottom: 0; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.intro-section svg { position: relative; z-index: 1; }
.intro-section > .container { position: relative; z-index: 2; }

.display-2--intro {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px;
}
.display-2--description {
  color: rgba(255,255,255,0.65) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  margin-top: 10px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 3px;
  transition: var(--transition);
}
.hero-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.hero-tag.teal:hover { background: var(--teal); border-color: var(--teal); }
.hero-country {
  display: inline-block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0 6px;
}
.hero-img-wrap img {
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
  max-height: 420px;
  width: 100%;
  object-fit: contain;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,105,42,0.4);
}
.btn-hero-primary:hover {
  background: #3451d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,105,42,0.5);
  color: #fff;
}
.btn-hero-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
/* hero svg wave fill */
.intro-section > svg path { fill: var(--light); }

/* ── STATS BAR ── */
.trust-bar {
  background: var(--light);
  padding: 56px 0 48px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--accent);
}
.stat-card.teal-border:hover { border-bottom-color: var(--teal); }
.stat-icon { font-size: 2rem; margin-bottom: 8px; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 6px; font-weight: 600; }

/* ── SECTIONS BASE ── */
section { padding: 88px 0; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }

/* ── DATA MIGRATION HERO SECTION ── */
.migration-hero {
  background: var(--dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.migration-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,157,143,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.migration-hero > .container { position: relative; z-index: 2; }
.migration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.migration-grid-item {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.migration-grid-item:hover {
  background: rgba(42,157,143,0.12);
  border-color: rgba(42,157,143,0.3);
}
.migration-grid-item .from { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); font-weight: 700; margin-bottom: 8px; }
.migration-grid-item .source { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.migration-grid-item .arrow { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.migration-grid-item .dest { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.migration-what {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}
.migration-what-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}
.migration-what-item:last-child { border-bottom: none; }
.migration-what-item:hover { color: #fff; padding-left: 6px; }
.migration-what-item::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.migration-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.migration-stat {
  background: rgba(42,157,143,0.12);
  border: 1px solid rgba(42,157,143,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  min-width: 160px;
}
.migration-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--teal); font-family: 'Poppins', sans-serif; }
.migration-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; font-weight: 500; }

/* ── SERVICES ── */
.services { background: #fff; }
.services__content h3.display-3--title {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  margin-bottom: 14px;
}
.services__content p { color: var(--muted); line-height: 1.8; }
.services__pic img {
  transition: var(--transition);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
  max-height: 340px;
  width: 100%;
  object-fit: contain;
}
.services__pic img:hover { transform: scale(1.03); }
.service-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 10px; font-size: 1rem; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 0; }
.service-card .sc-icon { font-size: 1.6rem; margin-bottom: 12px; }
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  margin-top: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-service:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,105,42,0.05);
}
.btn-service.teal:hover { border-color: var(--teal); color: var(--teal); background: rgba(42,157,143,0.05); }

/* ── WHY CHOOSE US ── */
.why-us { background: var(--light); }
.choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.choose-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: var(--transition);
}
.choose-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}
.choose-item .ci-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.choose-item.teal-dot .ci-dot { background: var(--teal); }
.choose-item:hover.teal-dot { border-color: var(--teal); }
.choose-item p { margin: 0; font-weight: 600; font-size: 0.92rem; color: var(--dark); }
.choose-item span { font-size: 0.8rem; color: var(--muted); display: block; margin-top: 3px; font-weight: 400; }

/* ── INDUSTRIES ── */
.industries { background: #fff; }
.industry-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 10px; }
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: default;
  transition: var(--transition);
}
.industry-tag:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* ── PROJECTS ── */
.projects-section { background: var(--light); }
.project-card {
  background: #fff !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  padding: 28px 24px !important;
  height: 100%;
  border: 1px solid var(--border) !important;
  border-top: 3px solid var(--accent) !important;
  transition: var(--transition) !important;
  position: relative;
  overflow: hidden;
}
.project-card.teal-top { border-top-color: var(--teal) !important; }
.project-card:hover {
  box-shadow: var(--shadow-hover) !important;
  transform: translateY(-6px) !important;
  border-color: transparent !important;
  border-top-color: var(--accent) !important;
}
.project-card.teal-top:hover { border-top-color: var(--teal) !important; }
.project-flag { font-size: 1.3rem; margin-bottom: 2px; }
.project-country { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.project-card h5 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.project-industry {
  display: inline-block;
  background: var(--light);
  color: var(--muted);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.scope-list { list-style: none; padding: 0; margin: 0 0 16px; }
.scope-list li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.scope-list li:last-child { border-bottom: none; }
.scope-list li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ── METHODOLOGY ── */
.methodology {
  background: var(--dark);
  padding: 88px 0;
}
.step-row { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 0; }
.step-wrap { display: flex; align-items: flex-start; }
.step-item { text-align: center; padding: 0 8px; width: 100px; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 1rem; font-weight: 800; color: #fff;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.step-item:hover .step-num { background: var(--teal); border-color: var(--teal); }
.step-lbl { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.step-desc { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 3px; }
.step-connector { color: rgba(255,255,255,0.15); font-size: 1.2rem; margin-top: 16px; padding: 0 2px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: #fff; }
.testimonial-card {
  background: var(--light) !important;
  border-radius: var(--radius) !important;
  padding: 28px !important;
  border: 1px solid var(--border) !important;
  transition: var(--transition) !important;
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover) !important;
  transform: translateY(-4px) !important;
  border-color: transparent !important;
}
.testimonial-card::before { display: none !important; }
.t-quote { font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.testimonial-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 18px; padding-top: 0 !important; }
.client-name { font-weight: 800 !important; color: var(--dark) !important; font-size: 0.92rem !important; }
.client-role { font-size: 0.78rem !important; color: var(--muted) !important; }
.stars { color: var(--accent) !important; font-size: 0.85rem; letter-spacing: 2px; -webkit-text-fill-color: unset !important; background: none !important; margin-bottom: 12px; }

/* ── FAQ ── */
.faq { background: var(--light); }
.accordion-item {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow); }
.accordion-button {
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: var(--dark) !important;
  background: #fff !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  background: #fff !important;
  box-shadow: none !important;
}
.accordion-button::after { filter: none !important; }
.accordion-body { font-size: 0.88rem; color: var(--muted); line-height: 1.8; padding: 0 22px 18px !important; }

/* ── CONTACT ── */
.get-started { background: var(--light); }
.get-started__box {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.get-started__box--left {
  background: var(--dark) !important;
  padding: 40px !important;
}
.get-started__box--right {
  background: #fff !important;
  padding: 40px !important;
}
.cta-info__list { list-style: none; padding: 0; margin-top: 16px; }
.cta-info__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px;
}
.cta-info__list li::before { content: '→'; color: var(--teal); font-weight: 700; }
.form-control, select.form-control {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  padding: 12px 16px !important;
  transition: var(--transition) !important;
  background: var(--light) !important;
  height: auto !important;
}
.form-control:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(232,105,42,0.1) !important;
  background: #fff !important;
}
.btn.btn-primary {
  background: var(--accent) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  border-radius: 8px !important;
  padding: 14px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(232,105,42,0.35);
}
.btn.btn-primary:hover {
  background: #3451d1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(232,105,42,0.45) !important;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,157,143,0.1) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  border-radius: 50%;
}
.final-cta h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; font-size: 0.95rem; line-height: 1.7; }
.btn-cta-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,105,42,0.4);
  display: inline-block;
  margin: 6px;
}
.btn-cta-primary:hover {
  background: #3451d1; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,105,42,0.5);
}
.btn-cta-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  margin: 6px;
}
.btn-cta-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ── FOOTER ── */
.footer { background: #111122; }
.contact-box { padding: 20px 0; }
.contact-box__icon svg { stroke: rgba(255,255,255,0.4); width: 28px; height: 28px; transition: var(--transition); }
.contact-box:hover .contact-box__icon svg { stroke: var(--teal); transform: scale(1.1); }
.contact-box__info--title { color: rgba(255,255,255,0.85) !important; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.contact-box__info--title:hover { color: var(--teal) !important; }
.contact-box__info--subtitle { color: rgba(255,255,255,0.35) !important; font-size: 0.78rem; margin: 0; }
.company-info { padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.06); }
.company-list { padding: 0; list-style: none; }
.company-list li { margin-bottom: 8px; }
.company-list li a { color: rgba(255,255,255,0.45) !important; font-size: 0.85rem; transition: var(--transition); }
.company-list li a:hover { color: rgba(255,255,255,0.85) !important; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0 !important; }
.footer-bottom__copyright { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom__copyright a { color: rgba(255,255,255,0.5) !important; }

/* ── BACK TO TOP ── */
.back-to-top {
  background: var(--accent) !important;
  width: 42px !important; height: 42px !important;
  display: flex !important; align-items: center; justify-content: center;
  transition: var(--transition) !important;
  box-shadow: 0 4px 14px rgba(232,105,42,0.4) !important;
}
.back-to-top:hover {
  background: #3451d1 !important;
  transform: translateY(-3px) !important;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .intro-section { min-height: auto; padding: 100px 0 40px; }
  .hero-img-wrap { margin-top: 40px; text-align: center; }
  section { padding: 64px 0; }
  .migration-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .display-2--intro { font-size: 2rem !important; }
  .step-connector { display: none; }
  .step-item { width: 80px; }
  .migration-grid { grid-template-columns: 1fr; }
  .get-started__box--left, .get-started__box--right { padding: 28px !important; }
  .migration-stat-row { flex-direction: column; }
}

/* ══════════════════════════════════════════
   PATCH — Hero light mode, WhatsApp btn,
   SVG illustrations, color fixes
══════════════════════════════════════════ */

/* ── HERO LIGHT (inverted) ── */
.intro-light {
  background: #ffffff !important;
}
.intro-light::before {
  background: radial-gradient(circle, rgba(232,105,42,0.06) 0%, transparent 65%) !important;
}
.intro-light::after {
  background: radial-gradient(circle, rgba(42,157,143,0.05) 0%, transparent 65%) !important;
}
.intro-light .display-2--intro {
  color: var(--dark) !important;
  -webkit-text-fill-color: var(--dark) !important;
  background: none !important;
}
.intro-light .display-2--description {
  color: var(--muted) !important;
}
.intro-light .hero-tag {
  background: var(--light);
  border-color: var(--border);
  color: var(--dark);
}
.intro-light .hero-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.intro-light .hero-tag.teal:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.intro-light .hero-country {
  color: var(--muted);
}
.intro-light .section-label {
  color: var(--accent);
}
/* Wave fill for light hero → match next section */
.intro-light > svg path { fill: #f7f7f5; }

/* ── WHATSAPP NAVBAR BUTTON ── */
.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: var(--transition);
  margin-left: 10px;
  box-shadow: 0 2px 12px rgba(232,105,42,0.35);
  text-decoration: none !important;
}
.nav-wa-btn:hover {
  background: #3451d1;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,105,42,0.45);
}
.nav-wa-btn svg { flex-shrink: 0; }
.nav-wa-btn span { white-space: nowrap; }

/* ── HERO SVG ILLUSTRATION ── */
.hero-svg-wrap {
  padding: 10px;
  animation: float 4s ease-in-out infinite;
}
.hero-erp-svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.12));
  border-radius: 14px;
}
.svc-svg {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
  border-radius: 12px;
}

/* ── REMOVE old btn-rounded from navbar (replaced by nav-wa-btn) ── */
.menu .btn-rounded { display: none; }

/* ── STATS BAR bg matches hero light ── */
/* Already #f7f7f5 — no change needed */

/* ── SERVICE section images center on mobile ── */
@media (max-width: 767px) {
  .hero-erp-svg, .svc-svg { max-width: 100%; }
  .nav-wa-btn span { display: inline; }
}

/* ══════════════════════════════════════════
   PATCH 2 — Color swap, centered hero,
   9-item migration grid
══════════════════════════════════════════ */

/* ── ACCENT color updated to electric blue ── */
:root {
  --accent:  #4361ee;
  --accent-hover: #3451d1;
}

/* ── HERO centered ── */
.intro-light .display-2--intro {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  line-height: 1.15 !important;
}
.intro-light .hero-cta-group {
  justify-content: center;
}
.intro-light .hero-tag {
  background: #f0f2ff;
  border-color: #dde1f8;
  color: var(--dark);
}
.intro-light .hero-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.intro-light .hero-tag.teal:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
/* Hero — no min-height forcing scroll on mobile */
@media (max-width: 767px) {
  .intro-section { padding-top: 90px !important; padding-bottom: 20px !important; }
}

/* ── MIGRATION GRID — 3 columns for 9 items ── */
.migration-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 991px) {
  .migration-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
  .migration-grid { grid-template-columns: 1fr !important; }
}

/* ── NAV WhatsApp button uses new accent ── */
.nav-wa-btn {
  background: var(--accent) !important;
}
.nav-wa-btn:hover {
  background: var(--accent-hover) !important;
}

/* ── All buttons use new accent ── */
.btn-hero-primary,
.btn-cta-primary,
.btn.btn-primary {
  background: var(--accent) !important;
  box-shadow: 0 4px 16px rgba(67,97,238,0.35) !important;
}
.btn-hero-primary:hover,
.btn-cta-primary:hover,
.btn.btn-primary:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 8px 24px rgba(67,97,238,0.45) !important;
}
.btn-rounded {
  background: var(--accent) !important;
  box-shadow: 0 2px 12px rgba(67,97,238,0.35) !important;
}
.btn-rounded:hover {
  background: var(--accent-hover) !important;
}

/* ── Stat card accent borders ── */
.stat-card:hover { border-bottom-color: var(--accent) !important; }

/* ── Choose item dot + border ── */
.choose-item:hover { border-color: var(--accent) !important; }
.choose-item .ci-dot { background: var(--accent) !important; }

/* ── Project card top border ── */
.project-card { border-top-color: var(--accent) !important; }
.project-card:hover { border-top-color: var(--accent) !important; }

/* ── Accordion active ── */
.accordion-button:not(.collapsed) { color: var(--accent) !important; }

/* ── Service btn hover ── */
.btn-service:hover { border-color: var(--accent) !important; color: var(--accent) !important; }

/* ── Section label ── */
.section-label { color: var(--accent) !important; }
.intro-light .section-label { color: var(--accent) !important; }

/* ── Testimonial card hover border ── */
.testimonial-card:hover { border-top-color: var(--accent) !important; }

/* ── Discuss migration button (teal - keep) ── */
.migration-hero .btn-hero-primary[style*="teal"],
a.btn-hero-primary[style*="teal"] {
  background: var(--teal) !important;
  box-shadow: 0 4px 16px rgba(42,157,143,0.35) !important;
}

/* ── Back to top ── */
.back-to-top {
  background: var(--accent) !important;
  box-shadow: 0 4px 14px rgba(67,97,238,0.4) !important;
}
.back-to-top:hover { background: var(--accent-hover) !important; }

/* ── Footer contact hover ── */
.contact-box__info--title:hover { color: var(--accent) !important; }

/* ── Heading line ── */
.heading-line { background: var(--accent) !important; }

/* ── Industry tag hover ── */
.industry-tag:hover { background: var(--dark) !important; }

/* ── Migration grid last item (Custom ERP) — subtle highlight ── */
.migration-grid-item:last-child {
  border: 1px solid rgba(42,157,143,0.25) !important;
  background: rgba(42,157,143,0.06) !important;
}

/* ── Reconciliation item — highlight ── */
.migration-what-item:last-child {
  color: rgba(255,255,255,0.95) !important;
  font-weight: 600 !important;
}
.migration-what-item:last-child::before { color: var(--accent) !important; }

/* ══════════════════════════════════════════
   PATCH 3 — Hero compact, back-to-top home,
   nav button teal, no blank space
══════════════════════════════════════════ */

/* ── HERO — no min-height, compact ── */
.intro-section {
  min-height: unset !important;
  padding-top: 80px !important;
  padding-bottom: 0 !important;
}
.intro-light {
  padding-bottom: 0 !important;
}

/* ── NAVBAR WhatsApp — teal color matching migration button ── */
.nav-wa-btn {
  background: var(--teal) !important;
  box-shadow: 0 2px 12px rgba(42,157,143,0.35) !important;
}
.nav-wa-btn:hover {
  background: #228f82 !important;
  box-shadow: 0 6px 18px rgba(42,157,143,0.45) !important;
}

/* ── BACK TO TOP — home icon pill ── */
.back-to-top-arrow {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--teal);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(42,157,143,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top-arrow.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top-arrow:hover {
  background: #228f82;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42,157,143,0.5);
}
/* Hide the old circular back-to-top if still present */
.back-to-top { display: none !important; }

/* ── HERO text — no link color override ── */
.intro-light p a { color: inherit; }
.intro-light .display-2--description { color: #555 !important; }
.intro-light .hero-country { color: #888; margin: 0 5px; }

/* ── SECTION spacing — remove SVG wave gap ── */
.intro-section > svg { display: none !important; }

/* ── STAT BAR — remove top gap ── */
section[style*="background:#f7f7f5"] { margin-top: 0 !important; }

/* ── HERO description — no blue link colors from old style.css override ── */
.intro-light p,
.intro-light .display-2--description {
  -webkit-text-fill-color: unset !important;
  background: none !important;
}

/* ══════════════════════════════════════════
   PATCH 4 — Container width, margins, alignment
══════════════════════════════════════════ */

/* ── Widen container-xl to use more screen width ── */
.container-xl {
  max-width: 1320px !important;
  width: 100% !important;
}

/* ── Reduce Bootstrap default horizontal padding ── */
.container-xl.px-4 { padding-left: 24px !important; padding-right: 24px !important; }
.container-xl.px-lg-5 { padding-left: 40px !important; padding-right: 40px !important; }
@media (min-width: 992px) {
  .container-xl.px-lg-5 { padding-left: 40px !important; padding-right: 40px !important; }
}
@media (min-width: 1400px) {
  .container-xl { max-width: 1400px !important; }
}

/* ── HERO — full width, no side gaps ── */
.intro-section { padding-left: 0 !important; padding-right: 0 !important; }
.intro-light { padding-left: 0 !important; padding-right: 0 !important; }

/* ── HERO tags — centered wrap ── */
.hero-cta-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
  align-items: center !important;
}

/* ── Hero tags row — centered ── */
.intro-light > .container-xl > .row > .col-lg-8 > div:has(.hero-tag) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* ── Stat cards — equal height, no overflow ── */
.stat-card { min-height: 130px; display: flex; flex-direction: column; justify-content: center; }

/* ── Section padding — consistent ── */
section { padding: 72px 0 !important; }
.migration-hero { padding: 72px 0 !important; }

/* ── Navbar container — full width ── */
.menu .container-xl { max-width: 100% !important; padding-left: 32px !important; padding-right: 32px !important; }

/* ── Footer container ── */
.footer .container-xl { max-width: 1320px !important; }

/* ── Remove any leftover max-width constraints on hero text ── */
.display-2--intro { max-width: 100% !important; }

/* ── CTA section box — full width inside container ── */
.get-started__box { width: 100% !important; margin: 0 !important; }

/* ── Migration hero — left col text not clipped ── */
.migration-hero .col-lg-5 { padding-right: 32px; }

/* ── Responsive: mobile padding ── */
@media (max-width: 767px) {
  .container-xl.px-4 { padding-left: 16px !important; padding-right: 16px !important; }
  .migration-hero .col-lg-5 { padding-right: 0; }
  section { padding: 52px 0 !important; }
}

/* ══════════════════════════════════════════
   PATCH 5 — Fix wide margins globally
══════════════════════════════════════════ */

/* ── Container — full width with controlled padding only ── */
.container-xl {
  max-width: 1440px !important;
  width: 100% !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── Navbar container — edge to edge ── */
.menu .container-xl {
  max-width: 100% !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* ── Remove any inherited px classes ── */
.container-xl.px-4,
.container-xl.px-lg-5,
.container-xl.px-5 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

/* ── Row gutters — prevent extra side margins ── */
.container-xl > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Hero CTA button — force center ── */
.intro-light .text-center > div:last-of-type,
.intro-section .text-center > div:last-of-type {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

/* ── Migration section inner padding ── */
.migration-hero .col-lg-5 { padding-right: 24px; }
.migration-hero .col-lg-7 { padding-left: 8px; }

/* ── Stats bar row — no overflow ── */
.stat-card { overflow: hidden; }

/* ── Section rows — consistent ── */
section > .container-xl > .row,
section > .container-xl > .section-header {
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .container-xl { padding-left: 32px !important; padding-right: 32px !important; }
}
@media (max-width: 767px) {
  .container-xl { padding-left: 16px !important; padding-right: 16px !important; }
  .menu .container-xl { padding-left: 16px !important; padding-right: 16px !important; }
}

/* ══════════════════════════════════════════
   PATCH 6 — style.css conflict fixes
   (Do NOT change style.css)
══════════════════════════════════════════ */

/* ── Container: override style.css's BS container max-widths ── */
/* Bootstrap sets container-xl max-width: 1140px at ≥1200px, 1320px at ≥1400px */
/* We override with !important to ensure full-width usage */
.container-xl {
  max-width: 1440px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (min-width: 1400px) {
  .container-xl { max-width: 1440px !important; }
}
@media (max-width: 1199px) {
  .container-xl { padding-left: 24px !important; padding-right: 24px !important; }
}
@media (max-width: 767px) {
  .container-xl { padding-left: 14px !important; padding-right: 14px !important; }
}

/* ── Navbar: style.css sets .menu as full-width already — just fix its container ── */
.menu .container-xl {
  max-width: 100% !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* ── intro-section: style.css forces padding:8rem 0 0 0 — override ── */
.intro-section,
.intro-section.intro-light {
  padding-top: 80px !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── style.css display-2--intro sets font-size via media queries — override ── */
@media (min-width: 992px) {
  .display-2--intro { font-size: 2.8rem !important; }
}
@media (min-width: 1200px) {
  .display-2--intro { font-size: 3rem !important; }
}

/* ── style.css .heading-line uses ::before/::after pseudo-elements
   Our vibrant.css heading-line is a real div — no conflict, both coexist ── */

/* ── style.css sets .back-to-top — hide it, use our back-to-top-arrow ── */
.back-to-top { display: none !important; }

/* ── style.css sets .btn-rounded with complex positioning — our nav-wa-btn overrides ── */
/* nav-wa-btn is a separate class so no conflict */

/* ── Row gutter fix: Bootstrap row has negative margins, offset with container padding ── */
.container-xl > .row {
  margin-left: -12px !important;
  margin-right: -12px !important;
}
.container-xl > .row > * {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* ── Hero section inner row: no negative margin offset needed since we use padding ── */
.intro-light > .container-xl > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Sections: style.css has no padding on section by default — our 72px applies ── */
/* Only reset for sections where style.css explicitly sets padding */
.get-started { padding: 72px 0 !important; }
.faq { padding: 72px 0 !important; }
.services { padding: 72px 0 !important; }

/* ── Fix: style.css .menu li has padding:0.5rem 0.7rem which affects nav spacing ── */
/* Already handled by our .nav-link styles */

/* ── Fix: style.css .contact-box__info--title font-size:1.4rem at lg — override ── */
.contact-box__info--title {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   PATCH 7 — Final margin fix: container-fluid
══════════════════════════════════════════ */

/* ── container-fluid: full width with controlled inner padding ── */
.container-fluid {
  padding-left: 48px !important;
  padding-right: 48px !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ── Navbar gets tighter padding ── */
.menu .container-fluid {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* ── Migration hero inner container — no extra padding ── */
.migration-hero .container-fluid {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* ── Final CTA ── */
.final-cta .container-fluid {
  max-width: 700px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* ── Row gutters — tighter ── */
.container-fluid > .row {
  margin-left: -12px !important;
  margin-right: -12px !important;
}
.container-fluid > .row > * {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* ── Hero row: no negative margin ── */
.intro-light .container-fluid > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .container-fluid { padding-left: 24px !important; padding-right: 24px !important; }
  .menu .container-fluid { padding-left: 16px !important; padding-right: 16px !important; }
}
@media (max-width: 575px) {
  .container-fluid { padding-left: 14px !important; padding-right: 14px !important; }
}

/* ── Also kill old container-xl rules that no longer apply ── */
.container-xl { all: unset !important; }

/* ══════════════════════════════════════════
   PATCH 8 — Hero two-column + bookkeeping
══════════════════════════════════════════ */

/* ── Hero stat boxes ── */
.hero-stat-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid var(--accent);
}
.hero-stat-box.teal-box { border-bottom-color: var(--teal); }
.hero-stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── Hero service mini-cards ── */
.hero-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.hero-service-card.accent-left { border-left-color: var(--accent); }
.hero-service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-left-color: var(--teal);
}
.hsc-icon { font-size: 1.4rem; margin-bottom: 6px; }
.hsc-title { font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 5px; }
.hsc-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Hero left col: left-aligned text ── */
.intro-light .col-lg-6 .display-2--intro { text-align: left !important; }
.intro-light .col-lg-6 .display-2--description { text-align: left !important; margin: 0 0 24px !important; }
.intro-light .col-lg-6 .section-label { text-align: left; }

/* ── Hero right panel ── */
.hero-right-panel { padding-left: 8px; }

/* ── CTA buttons — left-aligned row ── */
.intro-light .btn-hero-primary,
.intro-light .btn-hero-secondary { display: inline-block; }

/* ── Responsive: stack on mobile ── */
@media (max-width: 767px) {
  .intro-light .col-lg-6 { padding-right: 0 !important; margin-bottom: 32px; }
  .hero-right-panel { padding-left: 0; }
  .intro-light .display-2--intro { text-align: center !important; }
  .intro-light .display-2--description { text-align: center !important; }
  .intro-light .section-label { display: block; text-align: center; }
  .intro-light > .container-fluid > .row > .col-lg-6:first-child > div[style*="flex"] {
    justify-content: center !important;
  }
}

/* ══════════════════════════════════════════
   PATCH 9 — Migration labels + teal CTA button
══════════════════════════════════════════ */

/* ── Schedule a Free Consultation button → teal to match WhatsApp button ── */
.btn-teal-override {
  background: var(--teal) !important;
  box-shadow: 0 4px 16px rgba(42,157,143,0.4) !important;
}
.btn-teal-override:hover {
  background: #228f82 !important;
  box-shadow: 0 8px 24px rgba(42,157,143,0.5) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════
   SOCIAL MEDIA — Floating sidebar + footer
══════════════════════════════════════════ */

/* ── Floating sidebar — left edge ── */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
  padding: 13px 14px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 46px;
}
.social-sidebar-link.linkedin { background: #0077b5; border-radius: 0 8px 8px 0; }
.social-sidebar-link.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 0 8px 8px 0;
}
.social-sidebar-link:hover {
  width: 130px;
  padding-right: 16px;
  color: #fff !important;
}
.social-sidebar-label {
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}
.social-sidebar-link:hover .social-sidebar-label {
  opacity: 1;
  width: 80px;
  margin-left: 8px;
}
.social-sidebar-link svg { flex-shrink: 0; }

/* ── Footer social icons ── */
.footer-social-link {
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  text-decoration: none !important;
}
.footer-social-link:hover { color: #fff; transform: translateY(-2px); }
.footer-social-link[title="LinkedIn"]:hover { background: #0077b5; }
.footer-social-link[title="Instagram"]:hover {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

/* ── Hide sidebar on small screens ── */
@media (max-width: 767px) {
  .social-sidebar { display: none; }
}

/* ══════════════════════════════════════════
   CHATBOT WIDGET
══════════════════════════════════════════ */
.chatbot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.chatbot-toggle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(42,157,143,0.45);
  transition: var(--transition);
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(42,157,143,0.55); }
.chatbot-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #e74c3c;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.chatbot-window {
  display: none;
  flex-direction: column;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  margin-bottom: 12px;
  overflow: hidden;
  animation: chatSlideIn 0.25s ease;
}
@keyframes chatSlideIn {
  from { opacity:0; transform:translateY(16px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.chatbot-header {
  background: var(--dark);
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chatbot-avatar {
  width: 34px; height: 34px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff;
}
.chatbot-header div div { color: #fff; }
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f7f5;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: #fff;
  color: var(--dark);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.chat-opt-btn {
  background: #fff;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
}
.chat-opt-btn:hover { background: var(--teal); color: #fff; }
.chatbot-footer {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}
.chatbot-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff !important;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--transition);
}
.chatbot-wa-btn:hover { background: #1eb858; transform: translateY(-1px); }

@media (max-width: 575px) {
  .chatbot-widget { bottom: 16px; right: 16px; }
  .chatbot-window { width: calc(100vw - 32px); }
}
