/* ══════════════════════════════════════════════
   SERVICE HERO SECTION
   All classes prefixed with ser_hero to avoid
   conflicts with navbar / other page sections.
══════════════════════════════════════════════ */

.ser_hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--bg-dark)      0%,
    #0D2B4E             40%,
    #0F3D5A             70%,
    #0D3348             100%
  );
  padding: 0;
}

/* ── Decorative mesh background ─────────────── */
.ser_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(42,181,160,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(27,79,138,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 90% 10%, rgba(33,150,168,0.15) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Animated floating orbs ─────────────────── */
.ser_hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: ser_hero_float 8s ease-in-out infinite;
}
.ser_hero__orb--1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(42,181,160,0.18) 0%, transparent 70%);
  top: -80px; right: 20%;
  animation-duration: 9s;
}
.ser_hero__orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(27,79,138,0.25) 0%, transparent 70%);
  bottom: 40px; left: 5%;
  animation-duration: 11s;
  animation-delay: -4s;
}
.ser_hero__orb--3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(61,212,188,0.12) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation-duration: 7s;
  animation-delay: -2s;
}

@keyframes ser_hero_float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

/* ── Grid pattern overlay ───────────────────── */
.ser_hero__grid {
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(42,181,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,181,160,0.04) 1px, transparent 1px); */
    background-color: #16436B;
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}

/* ── Inner container ────────────────────────── */
.ser_hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ══════════════════════════════════════════════
   LEFT — CONTENT
══════════════════════════════════════════════ */
.ser_hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: ser_hero_slideIn 0.75s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes ser_hero_slideIn {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Breadcrumb / tag */
.ser_hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,181,160,0.12);
  border: 1px solid rgba(42,181,160,0.30);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  width: fit-content;
}
.ser_hero__tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: ser_hero_pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ser_hero_pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,181,160,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(42,181,160,0); }
}
.ser_hero__tag span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* Heading */
.ser_hero__heading {
  font-family: 'Gotham', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
}
.ser_hero__heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal-light), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.ser_hero__desc {
  font-family: 'Gotham', sans-serif;
  font-size: 1.025rem;
  line-height: 1.72;
  color: rgba(240,248,255,0.78);
  max-width: 520px;
  margin: 0;
}

/* Feature pills */
.ser_hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.ser_hero__feat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(240,248,255,0.88);
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}
.ser_hero__feat:hover {
  background: rgba(42,181,160,0.14);
  border-color: rgba(42,181,160,0.35);
  color: var(--teal-light);
}
.ser_hero__feat-icon {
  width: 14px; height: 14px;
  color: var(--teal);
  flex-shrink: 0;
}

/* CTA */
.ser_hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ser_hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Gotham', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 8px 28px rgba(27,79,138,0.40), 0 2px 8px rgba(42,181,160,0.20);
  transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.ser_hero__btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity 0.25s;
}
.ser_hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(27,79,138,0.50), 0 4px 14px rgba(42,181,160,0.30);
}
.ser_hero__btn-primary:hover::after { opacity: 1; }

.ser_hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Gotham', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(240,248,255,0.85);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(240,248,255,0.20);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.ser_hero__btn-secondary:hover {
  background: rgba(42,181,160,0.12);
  border-color: rgba(42,181,160,0.40);
  color: var(--teal-light);
}

/* Trust badges */
.ser_hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.ser_hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ser_hero__stat-num {
  font-family: 'Gotham', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.ser_hero__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(240,248,255,0.55);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ser_hero__stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   RIGHT — IMAGE PANEL
══════════════════════════════════════════════ */
.ser_hero__visual {
  position: relative;
  animation: ser_hero_fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
@keyframes ser_hero_fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Main image wrapper */
.ser_hero__img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(10,30,53,0.55),
    0 8px 24px rgba(27,79,138,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  /* aspect-ratio: 4 / 5; */
  max-height: 560px;
}

/* Gradient border effect */
.ser_hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-light), var(--teal));
  z-index: -1;
}

.ser_hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.ser_hero__img-wrap:hover .ser_hero__img {
  transform: scale(1.03);
}

/* Subtle overlay on image */
.ser_hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10,30,53,0.50) 100%
  );
  pointer-events: none;
}

/* Floating badge — Safe & Certified */
.ser_hero__badge {
  position: absolute;
  top: 22px;
  right: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(10,30,53,0.28);
  animation: ser_hero_float 6s ease-in-out infinite;
}
.ser_hero__badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ser_hero__badge-icon svg { width: 18px; height: 18px; }
.ser_hero__badge-text { line-height: 1.25; }
.ser_hero__badge-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
}
.ser_hero__badge-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Floating card — success rate */
.ser_hero__card {
  position: absolute;
  bottom: 22px;
  left: -20px;
  background: rgba(10,30,53,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(42,181,160,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(10,30,53,0.40);
  animation: ser_hero_float 7s ease-in-out infinite;
  animation-delay: -3s;
}
.ser_hero__card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.ser_hero__card-val {
  font-family: 'Gotham', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.ser_hero__card-desc {
  font-size: 0.72rem;
  color: rgba(240,248,255,0.58);
  margin-top: 3px;
  display: block;
}

/* Decorative dots pattern */
.ser_hero__dots {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  opacity: 0.25;
  background-image: radial-gradient(var(--teal) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ser_hero__inner {
    gap: 40px;
    padding: 80px 28px 60px;
  }
  .ser_hero__badge { right: -8px; }
  .ser_hero__card  { left: -8px; }
}

@media (max-width: 860px) {
  .ser_hero {
    min-height: auto;
  }
  .ser_hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 20px 48px;
    gap: 40px;
    text-align: center;
  }
  .ser_hero__tag    { margin: 0 auto; }
  .ser_hero__desc   { margin: 0 auto; }
  .ser_hero__cta    { justify-content: center; }
  .ser_hero__trust  { justify-content: center; }
  .ser_hero__features { justify-content: center; }

  .ser_hero__visual { max-width: 440px; margin: 0 auto; }
  .ser_hero__img-wrap { 
    /* aspect-ratio: 16 / 11; */
     max-height: 340px; }

  .ser_hero__badge {
    top: 14px; right: 10px;
    padding: 9px 12px;
  }
  .ser_hero__card {
    bottom: 14px; left: 10px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .ser_hero__inner { padding: 48px 16px 36px; gap: 32px; }
  .ser_hero__heading { font-size: 1.75rem; }
  .ser_hero__desc { font-size: 0.925rem; }
  .ser_hero__btn-primary,
  .ser_hero__btn-secondary { font-size: 0.84rem; padding: 12px 20px; }
  .ser_hero__badge { display: none; }
  .ser_hero__card  { display: none; }
}


/* ══════════════════════════════════════════════
   SECTION: sec_ser
   All classes prefixed with sec_ser
══════════════════════════════════════════════ */

.sec_ser {
  position: relative;
  background: var(--bg-soft);
  padding: 96px 0 88px;
  overflow: hidden;
}

/* ── Subtle background decoration ───────────── */
.sec_ser::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,181,160,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sec_ser::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,138,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Container ───────────────────────────────── */
.sec_ser__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section header (centered top) ──────────── */
.sec_ser__header {
  text-align: center;
  margin-bottom: 60px;
}
.sec_ser__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.sec_ser__eyebrow::before,
.sec_ser__eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--teal));
  border-radius: 2px;
}
.sec_ser__eyebrow::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.sec_ser__title {
  font-family: 'Gotham', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.sec_ser__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec_ser__subtitle {
  font-family: 'Gotham', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px;
}
.sec_ser__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Divider ─────────────────────────────────── */
.sec_ser__divider {
  width: 60px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  margin: 20px auto 0;
}

/* ── Body grid (image + content) ─────────────── */
.sec_ser__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ══════════════════════════════════════════════
   LEFT — IMAGE COLUMN
══════════════════════════════════════════════ */
.sec_ser__img-col {
  position: relative;
}

/* Image frame */
.sec_ser__img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(27,79,138,0.14),
    0 4px 16px rgba(27,79,138,0.08);
  /* Gradient border */
  padding: 3px;
  background: linear-gradient(135deg, var(--primary-light), var(--teal));
}
.sec_ser__img-inner {
  border-radius: 17px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}
.sec_ser__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 4.5;
  transition: transform 0.5s ease;
}
.sec_ser__img-frame:hover .sec_ser__img {
  transform: scale(1.03);
}

/* Corner accent */
.sec_ser__img-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 88px; height: 88px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

/* Chips row below image */
.sec_ser__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.sec_ser__chip {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(42,181,160,0.10);
  border: 1px solid rgba(42,181,160,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.sec_ser__chip:hover {
  background: rgba(42,181,160,0.18);
  border-color: rgba(42,181,160,0.45);
}

/* ══════════════════════════════════════════════
   RIGHT — CONTENT COLUMN
══════════════════════════════════════════════ */
.sec_ser__content-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

/* Paragraphs */
.sec_ser__para {
  font-family: 'Gotham', sans-serif;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  margin: 0;
  position: relative;
  padding-left: 16px;
}
.sec_ser__para::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 3px;
  height: calc(100% - 16px);
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--primary-light), var(--teal));
  opacity: 0.35;
}
.sec_ser__para:first-of-type::before { opacity: 0.70; }

/* CTA block */
.sec_ser__cta-block {
  margin-top: 10px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec_ser__cta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}
.sec_ser__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Gotham', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 6px 22px rgba(27,79,138,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}
.sec_ser__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27,79,138,0.40);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .sec_ser { padding: 72px 0 64px; }
  .sec_ser__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sec_ser__header { margin-bottom: 44px; }
}

@media (max-width: 600px) {
  .sec_ser  { padding: 56px 0 48px; }
  .sec_ser__wrap { padding: 0 18px; }
  .sec_ser__title    { font-size: 1.6rem; }
  .sec_ser__subtitle { font-size: 0.975rem; }
  .sec_ser__tagline  { font-size: 0.925rem; }
  .sec_ser__para     { font-size: 0.94rem; }
  .sec_ser__cta-block { padding: 18px; }
  .sec_ser__cta-btn  { width: 100%; justify-content: center; font-size: 0.86rem; }
}


/* ══════════════════════════════════════════════
   FAQ SECTION  —  ser_faq
══════════════════════════════════════════════ */

.ser_faq {
  position: relative;
  background: var(--bg-primary);
  padding: 96px 0 88px;
  overflow: hidden;
}

/* ── Subtle background accents ───────────────── */
.ser_faq::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,138,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ser_faq::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,181,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Wrapper ──────────────────────────────────── */
.ser_faq__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section header ───────────────────────────── */
.ser_faq__header {
  text-align: center;
  margin-bottom: 60px;
}
.ser_faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.ser_faq__eyebrow::before,
.ser_faq__eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--teal));
  border-radius: 2px;
}
.ser_faq__eyebrow::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.ser_faq__title {
  font-family: 'Gotham', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.ser_faq__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ser_faq__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.ser_faq__divider {
  width: 56px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  margin: 18px auto 0;
}

/* ── Body grid ────────────────────────────────── */
.ser_faq__body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════════════
   LEFT — IMAGE
══════════════════════════════════════════════ */
.ser_faq__img-col {
  position: relative;
}

.ser_faq__img-frame {
  position: relative;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(145deg, var(--primary-light), var(--teal));
  box-shadow:
    0 24px 64px rgba(27,79,138,0.15),
    0 4px 16px rgba(27,79,138,0.08);
}
.ser_faq__img-inner {
  border-radius: 19px;
  overflow: hidden;
  line-height: 0;
  background: #fff;
}
.ser_faq__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}
.ser_faq__img-frame:hover .ser_faq__img {
  transform: scale(1.04);
}

/* Dot grid decoration */
.ser_faq__dots {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 90px; height: 90px;
  background-image: radial-gradient(var(--primary-light) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}

/* Floating card */
.ser_faq__img-card {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 36px rgba(27,79,138,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: ser_faq_float 6s ease-in-out infinite;
}
@keyframes ser_faq_float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.ser_faq__img-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ser_faq__img-card-text strong {
  display: block;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.ser_faq__img-card-text span {
  font-size: 0.70rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   RIGHT — ACCORDION
══════════════════════════════════════════════ */
.ser_faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Single item */
.ser_faq__item {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ser_faq__item.ser_faq--open {
  border-color: rgba(42,181,160,0.40);
  box-shadow: 0 6px 28px rgba(42,181,160,0.10);
  background: #fff;
}

/* Question button */
.ser_faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Gotham', sans-serif;
  font-size: 0.955rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  transition: color 0.2s;
}
.ser_faq__item.ser_faq--open .ser_faq__q {
  color: var(--primary);
}
.ser_faq__q:hover { color: var(--primary); }

/* Number badge */
.ser_faq__num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.ser_faq__item.ser_faq--open .ser_faq__num {
  transform: scale(1.08);
}

/* Question text */
.ser_faq__q-text { flex: 1; }

/* Toggle icon */
.ser_faq__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}
.ser_faq__item.ser_faq--open .ser_faq__icon {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-color: transparent;
  transform: rotate(45deg);
}
.ser_faq__icon svg {
  width: 14px; height: 14px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.ser_faq__item.ser_faq--open .ser_faq__icon svg { color: #fff; }

/* Answer panel */
.ser_faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              padding   0.28s ease;
  padding: 0 20px;
}
.ser_faq__item.ser_faq--open .ser_faq__a {
  max-height: 320px;
  padding: 0 20px 20px;
}
.ser_faq__a-inner {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--text-body);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── Bottom CTA row ───────────────────────────── */
.ser_faq__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.ser_faq__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Gotham', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 6px 20px rgba(27,79,138,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.ser_faq__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27,79,138,0.38);
}
.ser_faq__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Gotham', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(27,79,138,0.25);
  background: #fff;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ser_faq__btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .ser_faq__body {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .ser_faq__img-col {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .ser_faq__img-card { right: 10px; bottom: 16px; }
}

@media (max-width: 600px) {
  .ser_faq { padding: 60px 0 52px; }
  .ser_faq__wrap { padding: 0 18px; }
  .ser_faq__header { margin-bottom: 40px; }
  .ser_faq__q { font-size: 0.895rem; padding: 15px 16px; }
  .ser_faq__a { padding: 0 16px; }
  .ser_faq__item.ser_faq--open .ser_faq__a { padding: 0 16px 16px; }
  .ser_faq__img-card { display: none; }
  .ser_faq__footer { flex-direction: column; align-items: stretch; }
  .ser_faq__btn-primary,
  .ser_faq__btn-ghost { justify-content: center; }
}