/* ═══════════════════════════════════════════════
   About + Trusted + CTA — about.css
   ═══════════════════════════════════════════════ */

:root {
  --orange:    #f9a826;
  --charcoal:  #2f3542;
  --charcoal2: #1e2330;
  --white:     #ffffff;
  --light-bg:  #f7f8fa;
  --text:      #3d3d3d;
  --muted:     #888;
  --radius:    6px;
}

/* ── Shared section tag ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ════════════════════════════════════════
   SECTION 1 — ABOUT
   ════════════════════════════════════════ */
.about {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Left: image + badge ── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.18);
}

/* orange top-left corner accent */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  border-radius: 2px;
  z-index: 1;
}

/* bottom-right corner accent */
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  border-radius: 2px;
}

/* Experience badge */
.about-badge {
  position: absolute;
  bottom: 40px;
  right: -28px;
  background: var(--charcoal);
  color: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 120px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.about-badge__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.about-badge__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ccc;
  line-height: 1.4;
  text-align: center;
}

.about-badge__icon {
  margin-top: 6px;
}

/* ── Right: body ── */
.about-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  position: relative;
  padding-left: 16px;
}

.about-sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

/* ── 2x2 Service cards grid ── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  padding: 22px 20px;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  border-color: var(--orange);
}

.svc-card__icon {
  margin-bottom: 12px;
}

.svc-card__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.svc-card__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Dark highlighted card */
.svc-card--dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.svc-card--dark:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(47,53,66,0.35);
}

.svc-card--dark .svc-card__title {
  color: var(--white);
}

.svc-card--dark .svc-card__desc {
  color: #aab0be;
}

/* ════════════════════════════════════════
   SECTION 2 — TRUSTED COMPANIES
   ════════════════════════════════════════ */
.trusted {
  background: var(--light-bg);
  padding: 80px 40px;
  text-align: center;
}

.trusted-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trusted-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 52px;
  letter-spacing: -0.3px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.trusted-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  border-radius: var(--radius);
  color: #bbb;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  cursor: default;
  flex: 1;
  min-width: 100px;
}

.trusted-logo:hover {
  color: var(--charcoal);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.trusted-logo span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   SECTION 3 — CTA STRIP
   ════════════════════════════════════════ */
.cta-strip {
  display: flex;
  padding: 0;
  min-height: 200px;
}

/* Left orange panel */
.cta-strip__left {
  flex: 1;
  background: var(--orange);
  position: relative;
  display: flex;
  align-items: center;
  padding: 52px 60px;
  overflow: hidden;
}

/* angled right edge */
.cta-strip__angle {
  position: absolute;
  top: 0;
  right: -40px;
  width: 80px;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 1;
}

/* diagonal texture lines */
.cta-strip__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.06) 18px,
    rgba(255,255,255,0.06) 19px
  );
  pointer-events: none;
}

.cta-strip__left-content {
  position: relative;
  z-index: 2;
}

.cta-strip__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 12px;
}

.cta-strip__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* Right dark panel */
.cta-strip__right {
  flex: 0 0 420px;
  background: var(--charcoal2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 36px;
  position: relative;
}

/* subtle noise texture */
.cta-strip__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 21px
  );
  pointer-events: none;
}

.cta-strip__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(249,168,38,0.35);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.2s;
  white-space: nowrap;
}

.cta-strip__btn svg {
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}

.cta-strip__btn:hover {
  background: #e8971a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(249,168,38,0.5);
}

.cta-strip__btn:hover svg {
  transform: translateX(5px);
}

/* ════════════════════════════════════════
   SCROLL-IN ANIMATION
   ════════════════════════════════════════ */
.about-inner,
.trusted-inner,
.cta-strip__left-content,
.cta-strip__btn {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-inner.in-view,
.trusted-inner.in-view,
.cta-strip__left-content.in-view,
.cta-strip__btn.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cta-strip__btn { transition-delay: 0.15s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner { gap: 48px; }
  .about-badge { right: -10px; }
  .cta-strip__right { flex: 0 0 320px; padding: 36px 24px; }
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-img { height: 400px; }
  .about-badge { right: 20px; bottom: -24px; }
  .cta-strip { flex-direction: column; }
  .cta-strip__left { padding: 48px 32px; }
  .cta-strip__angle { display: none; }
  .cta-strip__right { flex: none; padding: 40px 32px; }
}

@media (max-width: 600px) {
  .about { padding: 64px 0; }
  .about-inner { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .trusted { padding: 60px 20px; }
  .trusted-logos { justify-content: center; }
  .trusted-logo { flex: 0 0 calc(33% - 16px); }
  .cta-strip__left { padding: 40px 24px; }
  .cta-strip__btn { width: 100%; justify-content: center; }
  .cert-card { flex-direction: row; }
}

/* ════════════════════════════════════════
   CERTIFICATIONS & AWARDS CARD
   ════════════════════════════════════════ */
.cert-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cert-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(249,168,38,0.45);
  transform: translateY(-3px);
}

.cert-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(249,168,38,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card__body { flex: 1; }

.cert-card__title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cert-card__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 10px;
}

.cert-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cert-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
}

.cert-badge--gold {
  background: rgba(249,168,38,0.15);
  color: #f9a826;
  border-color: rgba(249,168,38,0.3);
}
