@import 'about-team.css';

/* ============================================================
   SERVICES PAGE — PREMIUM REDESIGN
   ============================================================ */
:root {
  --s-o1: #fe9402;
  --s-o2: #fd5f24;
  --s-red: #f53548;
  --s-pur: #cd3576;
  --s-navy: #0A1628;
  --s-text: #1e293b;
  --s-mute: #64748b;
  --s-bg: #fafbff;
  --s-bgw: #ffffff;
  --s-bord: rgba(254, 148, 2, .12);
  --s-grad: linear-gradient(135deg, #fe9402 0%, #fd5f24 33%, #f53548 66%, #cd3576 100%);
  --s-gradr: linear-gradient(to right, #fe9402, #fd5f24, #f53548, #cd3576);
  --s-soft: linear-gradient(135deg, rgba(254, 148, 2, .08) 0%, rgba(245, 53, 72, .06) 60%, rgba(205, 53, 118, .05) 100%);
  --s-sha: 0 8px 30px rgba(10, 22, 40, .06);
  --s-sha2: 0 20px 60px rgba(10, 22, 40, .09);
  --s-rad: 16px;
  --s-rad2: 24px;
  --s-tr: .3s cubic-bezier(.25, .46, .45, .94);
}

body {
  background: var(--s-bg);
  color: var(--s-text);
  overflow-x: hidden;
}

/* ── Reveal Animations ── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  transition: all .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ── Gradient text utility ── */
.grad {
  background: var(--s-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-light {
  background: linear-gradient(to right, #fff 0%, rgba(254, 148, 2, .9) 60%, rgba(253, 95, 36, .8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Override CTA outline button with gradient ── */
.svc-why-section .au-btn--outline,
.au-cta .au-btn--outline {
  background: var(--s-grad);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 18px rgba(254, 148, 2, .3);
}

.svc-why-section .au-btn--outline:hover,
.au-cta .au-btn--outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245, 53, 72, .4);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

/* ============================================================
   INTRO SECTION
   ============================================================ */
.svc-intro-section {
  padding: 90px 0;
  background: var(--s-bg);
}

.svc-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.svc-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--s-navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.svc-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--s-mute);
}

/* Highlight card */
.svc-highlight-card {
  background: var(--s-bgw);
  border: 1px solid var(--s-bord);
  border-radius: var(--s-rad2);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.svc-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--s-grad);
}

.svc-highlight-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--s-soft);
  color: var(--s-o2);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.svc-highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--s-navy);
  margin-bottom: 10px;
}

.svc-highlight-card p {
  font-size: .95rem;
  color: var(--s-mute);
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--s-text);
}

.svc-check-list li i {
  background: var(--s-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.svc-cards-section {
  padding: 100px 0;
  background: var(--s-bgw);
  border-top: 1px solid var(--s-bord);
  border-bottom: 1px solid var(--s-bord);
}

.svc-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.svc-section-header .svc-label {
  justify-content: center;
}

.svc-section-header .svc-label::before {
  display: none;
}

.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--s-bg);
  border: 1px solid var(--s-bord);
  border-radius: var(--s-rad2);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--s-grad);
  opacity: 0;
  transition: opacity .3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-sha2);
  border-color: rgba(254, 148, 2, .25);
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--s-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .15;
  line-height: 1;
  transition: opacity .3s ease;
}

.svc-card:hover .svc-card__num {
  opacity: .3;
}

.svc-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--s-soft);
  color: var(--s-o2);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: background .3s ease, color .3s ease;
}

.svc-card:hover .svc-card__icon {
  background: var(--s-grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(254, 148, 2, .3);
}

.svc-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--s-navy);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--s-mute);
  margin: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.svc-process-section {
  padding: 100px 0;
  background: var(--s-bg);
}

.svc-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.svc-step {
  display: grid;
  grid-template-columns: 56px 24px 1fr;
  gap: 0 20px;
  align-items: start;
  min-height: 90px;
}

.svc-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--s-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(254, 148, 2, .3);
  flex-shrink: 0;
}

.svc-step__line {
  width: 3px;
  background: linear-gradient(to bottom, var(--s-o1), var(--s-pur));
  margin: 56px auto 0;
  height: calc(100% - 56px);
  border-radius: 4px;
  min-height: 40px;
}
.svc-step__line--last {
  opacity: 0;
  visibility: hidden;
}
.svc-step__content {
  padding: 12px 0 30px 0;
}

.svc-step__content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--s-navy);
  margin-bottom: 6px;
}

.svc-step__content p {
  font-size: .92rem;
  color: var(--s-mute);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   WHY GEANY SECTION
   ============================================================ */
.svc-why-section {
  background: var(--s-navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.svc-why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 148, 2, .15) 0%, transparent 70%);
  pointer-events: none;
}

.svc-why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 53, 118, .12) 0%, transparent 70%);
  pointer-events: none;
}

.svc-why__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.svc-why-section .svc-label {
  color: rgba(254, 148, 2, .9);
}

.svc-why-section .svc-label::before {
  background: linear-gradient(to right, #fe9402, #cd3576);
}

.svc-why__title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.svc-why__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 28px;
}

.svc-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.svc-why__list li i {
  background: var(--s-gradr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
}

/* Stat cards */
.svc-why__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 4px solid transparent;
  border-image: var(--s-gradr) 1;
  border-radius: 12px;
  padding: 18px 22px;
  transition: var(--s-tr);
}

.svc-stat-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateX(4px);
}

.svc-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--s-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(254, 148, 2, .3);
}

.svc-stat-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.svc-stat-card span {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  .svc-hero__layout,
  .svc-intro__grid,
  .svc-why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .svc-hero__actions {
    justify-content: center;
  }

  /* Left-aligned lists in centered blocks for neat mobile alignment */
  .svc-check-list,
  .svc-why__list {
    max-width: 380px;
    margin: 0 auto;
    text-align: left;
  }

  .svc-check-list li,
  .svc-why__list li {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .svc-check-list li i,
  .svc-why__list li i {
    margin-top: 4px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .svc-cards-grid {
    grid-template-columns: 1fr;
  }

  .svc-step {
    grid-template-columns: 48px 18px 1fr;
  }
}