/* C:\xampp\htdocs\techsolution\css\how-we-help.css */
/* Dark theme with red accents – all cards now use semi-transparent background */

:root {
  --red       : #e00707;
  --red-dark  : #c50303;
  --red-light : #c5050f;
  --red-mid   : #da0303;
  --red-soft  : rgba(208,2,27,0.15);
  --black     : #0d0d0d;
  --white     : #ffffff;
  --bg-main   : #130508;
  --bg-card   : rgba(255,255,255,0.15);   /* ← updated to match contact card style */
  --muted     : #cbd5e1;
  --gray-bg   : #1a1a1f;
  --font-main : 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* === FIX: force dark background ONLY on this page === */
body.page-how-we-help {
    background: #0d0d0d !important;
}

/* ── HERO (unchanged) ─────────────────────────────────────────────────── */
.hwh-hero {
  position: relative;
  background: #0d0d0d;
  padding: 110px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hwh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(208,2,27,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,2,27,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hwh-hero::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 420px;
  background: radial-gradient(ellipse, rgba(208,2,27,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.hwh-hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto; padding: 0 2rem;
}
.hwh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(208,2,27,0.15);
  border: 1px solid rgba(208,2,27,0.30);
  color: #e00606;
  font-family: 'Sora', sans-serif;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 1.6rem;
}
.hwh-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
.hwh-hero h1 span { color: #D0021B; }
.hwh-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hwh-hero-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hwh-btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: #D0021B; color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}
.hwh-btn-red:hover { box-shadow: 0 8px 28px rgba(208,2,27,.40); transform: translateY(-2px); color: #fff; text-decoration: none; }
.hwh-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.70);
  border: 1.5px solid rgba(255,255,255,.30);
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .15s;
}
.hwh-btn-ghost:hover { border-color: #fff; color: #fff; transform: translateY(-2px); text-decoration: none; }

/* ── SECTION SHELL ────────────────────────────────────────── */
.hwh-section { padding: 80px 0; }
.hwh-section-alt { background: var(--gray-bg); }
.hwh-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hwh-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #D0021B; margin-bottom: .5rem;
}
.hwh-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2; margin-bottom: .9rem;
  letter-spacing: -.3px;
}
.hwh-title span { color: var(--red-mid); }
.hwh-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #ddd0d4;
  line-height: 1.7;
  max-width: 560px;
}

/* ── WHAT WE DO — image cards (semi-transparent background) ── */
.hwh-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.hwh-do-card {
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border: 1px solid rgba(208,2,27,0.2);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.hwh-do-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.4); border-color: rgba(208,2,27,0.5); background: rgba(255,255,255,0.2); }
.hwh-do-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #2a0a0f 0%, #1a0709 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hwh-do-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  z-index: 0;
  pointer-events: none;
}
.hwh-do-img-placeholder i { font-size: 32px; opacity: .3; }
.hwh-do-img-placeholder span {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  opacity: .4;
}
.hwh-do-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}
.hwh-do-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s; z-index: 2;
}
.hwh-do-card:hover::before { transform: scaleX(1); }
.hwh-do-body { padding: 1.2rem 1.2rem 1.5rem; }
.hwh-do-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(208,2,27,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red-mid);
  margin-bottom: 1rem;
  transition: background .2s, color .2s;
}
.hwh-do-card:hover .hwh-do-icon { background: var(--red); color: #fff; }
.hwh-do-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-mid);
  margin-bottom: .45rem;
}
.hwh-do-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #ddd0d4;
  line-height: 1.65;
  margin: 0;
}
.hwh-do-tag {
  display: inline-block; margin-top: .85rem;
  font-family: 'Sora', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--red-mid); background: rgba(208,2,27,0.2);
  padding: 3px 10px; border-radius: 50px;
}

/* ── HOW WE WORK — steps (semi-transparent circle background) ── */
.hwh-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.hwh-steps::before {
  content: '';
  position: absolute;
  top: 35px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(208,2,27,.2) 100%);
  z-index: 0;
}
.hwh-step { text-align: center; position: relative; z-index: 1; }
.hwh-step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem; font-weight: 800; color: var(--red-mid);
  margin: 0 auto 1.3rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  transition: background .2s, color .2s;
}
.hwh-step:hover .hwh-step-num { background: var(--red); color: #fff; }
.hwh-step h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .45rem;
}
.hwh-step p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #ddd0d4;
  line-height: 1.6;
  margin: 0;
}

/* ── SHOWCASE CAROUSEL (unchanged) ────────────────────────────────────── */
.hwh-carousel-wrap {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}
.hwh-carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.hwh-carousel-slide {
  min-width: 100%;
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hwh-slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.2);
  z-index: 0;
  pointer-events: none;
}
.hwh-slide-placeholder i { font-size: 48px; }
.hwh-slide-placeholder span {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
}
.hwh-carousel-slide .hwh-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 1;
}
.hwh-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 1.5rem 1.5rem 1rem;
  color: #fff;
  z-index: 2;
}
.hwh-slide-caption h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.hwh-slide-caption p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
}
.hwh-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.20);
  color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.hwh-carousel-btn:hover { background: #D0021B; border-color: #D0021B; }
.hwh-carousel-btn.prev { left: 0.8rem; }
.hwh-carousel-btn.next { right: 0.8rem; }
.hwh-carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 1rem;
}
.hwh-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: background .2s, transform .2s;
}
.hwh-dot.active { background: #D0021B; transform: scale(1.3); }

/* ── WHAT MAKES US DIFFERENT (semi-transparent cards) ─────────────────────────────── */
.hwh-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.hwh-diff-card {
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(208,2,27,0.2);
  transition: all 0.25s;
}
.hwh-diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: var(--red);
  background: rgba(255,255,255,0.2);
}
.hwh-diff-icon {
  width: 46px; height: 46px;
  background: rgba(208,2,27,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-mid);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.hwh-diff-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red-mid);
  margin-bottom: 0.6rem;
}
.hwh-diff-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #ddd0d4;
  line-height: 1.65;
  margin: 0;
}

/* ── WHY US (semi-transparent stats box) ─────────────────────────────── */
.hwh-why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hwh-why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.hwh-why-item { display: flex; align-items: flex-start; gap: 1rem; }
.hwh-why-check {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; margin-top: 2px;
}
.hwh-why-item h5 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.hwh-why-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #ddd0d4;
  margin: 0; line-height: 1.65;
}
.hwh-stats-box {
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border-radius: 20px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208,2,27,0.2);
  transition: all 0.25s;
}
.hwh-stats-box:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--red);
  transform: translateY(-2px);
}
.hwh-stats-box::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(208,2,27,.2), transparent 70%);
  pointer-events: none;
}
.hwh-stat { padding: 1rem 0; border-bottom: 1px solid rgba(208,2,27,0.15); position: relative; z-index: 1; }
.hwh-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hwh-stat:first-child { padding-top: 0; }
.hwh-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red-mid);
  line-height: 1; margin-bottom: .15rem;
}
.hwh-stat-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #ddd0d4;
}

/* ── CTA STRIP (unchanged) ────────────────────────────────────────────── */
.hwh-cta {
  background: #D0021B; padding: 60px 0;
  text-align: center; position: relative; overflow: hidden;
}
.hwh-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hwh-cta-inner { position: relative; z-index: 1; padding: 0 1.5rem; }
.hwh-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800; color: #fff;
  margin-bottom: .8rem;
  letter-spacing: -.3px;
}
.hwh-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,.72);
  margin: 0 auto 2rem;
  max-width: 500px; line-height: 1.7;
}
.hwh-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hwh-cta-btn-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #D0021B;
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 10px 24px; border-radius: 50px;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}
.hwh-cta-btn-w:hover { box-shadow: 0 8px 24px rgba(0,0,0,.20); transform: translateY(-2px); color: #D0021B; text-decoration: none; }
.hwh-cta-btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.45);
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 10px 24px; border-radius: 50px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}
.hwh-cta-btn-o:hover { border-color: #fff; background: rgba(255,255,255,.10); transform: translateY(-2px); color: #fff; text-decoration: none; }

/* ── SCROLL REVEAL (unchanged) ───────────────────────────────────────── */
.hwh-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.hwh-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hwh-why-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .hwh-diff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hwh-section { padding: 60px 0; }
  .hwh-hero { padding: 70px 0 60px; }
  .hwh-steps { gap: 1.5rem; }
  .hwh-steps::before { display: none; }
  .hwh-step { padding: 0; }
  .hwh-carousel-btn { width: 32px; height: 32px; font-size: 12px; }
  .hwh-carousel-btn.prev { left: 0.5rem; }
  .hwh-carousel-btn.next { right: 0.5rem; }
  .hwh-slide-caption { padding: 1rem; }
  .hwh-slide-caption h3 { font-size: 0.9rem; }
  .hwh-slide-caption p { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .hwh-steps { grid-template-columns: 1fr; }
  .hwh-hero h1 { font-size: 1.8rem; }
  .hwh-hero p { font-size: 0.9rem; }
  .hwh-container { padding: 0 1rem; }
  .hwh-do-grid { gap: 1rem; }
  .hwh-do-body { padding: 1rem; }
  .hwh-do-body h3 { font-size: 0.9rem; }
  .hwh-do-body p { font-size: 0.8rem; }
  .hwh-diff-card { padding: 1.2rem; }
  .hwh-stats-box { padding: 1.5rem; }
  .hwh-stat-num { font-size: 1.5rem; }
}