/* ==========================================================================
   about-modern.css — Clean & minimal redesign for the About page
   Loaded ONLY on about.php, AFTER style.css + about.css, so it overrides
   without affecting any other page. All selectors are scoped to
   `body.about-modern` to keep specificity high and bleed at zero.
   ========================================================================== */

/* ---- Design tokens ---- */
body.about-modern {
  --pp-primary: #2563eb;
  --pp-primary-dark: #1d4ed8;
  --pp-primary-soft: #eff6ff;
  --pp-ink: #0f172a;
  --pp-body: #475569;
  --pp-muted: #64748b;
  --pp-line: #e2e8f0;
  --pp-bg: #ffffff;
  --pp-bg-alt: #f8fafc;
  --pp-radius: 18px;
  --pp-radius-sm: 12px;
  --pp-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 12px 32px -12px rgba(15, 23, 42, 0.12);
  --pp-shadow-hover: 0 18px 48px -16px rgba(37, 99, 235, 0.28);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--pp-body);
  -webkit-font-smoothing: antialiased;
}

body.about-modern h1,
body.about-modern h2,
body.about-modern h3,
body.about-modern h4 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

body.about-modern .title-blue {
  color: var(--pp-primary);
  font-weight: 700;
}

/* Shared container width */
body.about-modern .about-hero-container,
body.about-modern .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Shared "pill" badge styling */
body.about-modern .about-hero-badge,
body.about-modern .story-badge,
body.about-modern .quality-badge,
body.about-modern .choose-badge,
body.about-modern .global-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pp-primary-soft) !important;
  color: var(--pp-primary-dark) !important;
  padding: 8px 16px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
body.about-modern .about-hero-badge {
  margin-left: auto;
  margin-right: auto;
}
body.about-modern .about-hero-badge i,
body.about-modern .story-badge i,
body.about-modern .quality-badge i,
body.about-modern .choose-badge i,
body.about-modern .global-badge i {
  font-size: 13px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
body.about-modern .about-hero {
  background: radial-gradient(1200px 600px at 80% -10%, #eef4ff 0%, rgba(238, 244, 255, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, var(--pp-bg-alt) 100%) !important;
  background-color: #ffffff !important;
  padding: 84px 0 72px;
  min-height: auto;
}
body.about-modern .about-hero-content {
  max-width: 760px;
}
body.about-modern .about-hero-title {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--pp-ink) !important;
  text-shadow: none;
  margin: 0 0 18px;
}
body.about-modern .about-hero-description {
  font-size: 18px;
  color: var(--pp-body) !important;
  line-height: 1.7;
  text-shadow: none;
  margin: 0 0 36px;
}
body.about-modern .about-hero-stats {
  gap: 24px;
  margin-top: 40px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  display: inline-flex;
}
body.about-modern .hero-stat h3 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--pp-primary) !important;
  font-weight: 700;
  margin: 0;
}
body.about-modern .hero-stat p {
  color: var(--pp-muted);
  font-size: 14px;
  margin: 4px 0 0;
}

/* ==========================================================================
   COMPANY STORY
   ========================================================================== */
body.about-modern .company-story {
  background: #fff;
  padding: 88px 0;
}
body.about-modern .story-content {
  gap: 64px;
}
body.about-modern .story-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--pp-ink);
  line-height: 1.15;
  margin: 0 0 18px;
}
body.about-modern .story-text {
  font-size: 16px;
  color: var(--pp-body);
  line-height: 1.7;
  margin: 0 0 16px;
}
body.about-modern .story-highlights {
  margin-top: 32px;
  gap: 18px;
}
body.about-modern .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 20px 22px;
  box-shadow: var(--pp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.about-modern .highlight-item:hover {
  transform: translateY(-6px);
  border-color: #dbeafe;
  box-shadow: var(--pp-shadow-hover);
}
body.about-modern .highlight-icon {
  background: var(--pp-primary-soft) !important;
  color: var(--pp-primary) !important;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 19px;
  flex-shrink: 0;
}
body.about-modern .highlight-content h4 {
  font-size: 17px;
  color: var(--pp-ink);
  margin: 0 0 6px;
  font-weight: 600;
}
body.about-modern .highlight-content p {
  font-size: 14.5px;
  color: var(--pp-muted);
  line-height: 1.6;
  margin: 0;
}
body.about-modern .story-image {
  border-radius: var(--pp-radius);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow);
}

/* ==========================================================================
   QUALITY & STANDARDS
   ========================================================================== */
body.about-modern .quality-standards {
  background: var(--pp-bg-alt);
  padding: 88px 0;
}
body.about-modern .quality-header {
  max-width: 720px;
  margin: 0 auto 56px;
}
body.about-modern .quality-header .quality-badge {
  margin-left: auto;
  margin-right: auto;
}
body.about-modern .quality-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--pp-ink);
  margin: 0 0 16px;
}
body.about-modern .quality-description {
  font-size: 16px;
  color: var(--pp-muted);
  line-height: 1.7;
  margin: 0;
}
body.about-modern .quality-grid {
  gap: 26px;
}
body.about-modern .quality-card {
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--pp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.about-modern .quality-card:hover {
  transform: translateY(-6px);
  border-color: #dbeafe;
  box-shadow: var(--pp-shadow-hover);
}
body.about-modern .quality-icon {
  background: var(--pp-primary-soft) !important;
  color: var(--pp-primary) !important;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 24px;
  margin: 0 auto 20px;
}
body.about-modern .quality-card h3 {
  font-size: 18px;
  color: var(--pp-ink);
  margin: 0 0 10px;
  font-weight: 600;
}
body.about-modern .quality-card p {
  font-size: 14.5px;
  color: var(--pp-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
body.about-modern .why-choose-us {
  background: #fff;
  padding: 88px 0;
}
body.about-modern .choose-content {
  gap: 64px;
}
body.about-modern .choose-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--pp-ink);
  line-height: 1.15;
  margin: 0 0 18px;
}
body.about-modern .choose-description {
  font-size: 16px;
  color: var(--pp-body);
  line-height: 1.7;
  margin: 0 0 32px;
}
body.about-modern .features-list {
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
body.about-modern .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--pp-ink);
}
body.about-modern .check-icon {
  color: var(--pp-primary) !important;
  background: var(--pp-primary-soft) !important;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
body.about-modern .choose-image {
  border-radius: var(--pp-radius);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow);
}

/* ==========================================================================
   GLOBAL PRESENCE
   ========================================================================== */
body.about-modern .global-presence {
  background: var(--pp-bg-alt);
  padding: 88px 0;
}
body.about-modern .global-content {
  gap: 64px;
}
body.about-modern .global-title {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--pp-ink);
  line-height: 1.15;
  margin: 0 0 18px;
}
body.about-modern .global-description {
  font-size: 16px;
  color: var(--pp-body);
  line-height: 1.7;
  margin: 0 0 32px;
}
body.about-modern .presence-stats {
  gap: 18px;
  flex-wrap: wrap;
}
body.about-modern .presence-stat {
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 22px 28px;
  box-shadow: var(--pp-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
body.about-modern .presence-stat:hover {
  transform: translateY(-6px);
  border-color: #dbeafe;
  box-shadow: var(--pp-shadow-hover);
}
body.about-modern .presence-stat h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--pp-primary) !important;
  margin: 0 0 6px;
  font-weight: 700;
}
body.about-modern .presence-stat p {
  font-size: 14px;
  color: var(--pp-muted);
  margin: 0;
}
body.about-modern .global-image {
  border-radius: var(--pp-radius);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow);
  min-height: 0;
}

/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */
body.about-modern .about-cta {
  background: #fff;
  padding: 88px 0;
}
body.about-modern .about-cta .cta-content {
  background: linear-gradient(135deg, var(--pp-primary) 0%, var(--pp-primary-dark) 100%);
  border-radius: 24px;
  padding: 56px 40px;
  max-width: 1240px;
}
body.about-modern .cta-title {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 12px;
  color: #fff;
}
body.about-modern .cta-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
  line-height: 1.6;
}
body.about-modern .cta-buttons {
  gap: 16px;
}

/* Buttons — about.css uses !important, so we match it */
body.about-modern .btn-cta-primary {
  background: #fff !important;
  color: var(--pp-primary-dark) !important;
  padding: 14px 30px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.4) !important;
  border: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
}
body.about-modern .btn-cta-primary:hover {
  background: #f1f5f9 !important;
  color: var(--pp-primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.45) !important;
}
body.about-modern .btn-cta-secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  padding: 14px 30px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease !important;
}
body.about-modern .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  body.about-modern .story-content,
  body.about-modern .choose-content,
  body.about-modern .global-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.about-modern .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  body.about-modern .about-hero-container,
  body.about-modern .container {
    padding: 0 24px;
  }
  body.about-modern .about-hero {
    padding: 60px 0 52px;
  }
  body.about-modern .about-hero-stats {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  body.about-modern .quality-grid,
  body.about-modern .features-list,
  body.about-modern .presence-stats {
    grid-template-columns: 1fr;
  }
  body.about-modern .presence-stats {
    flex-direction: column;
  }
  body.about-modern .company-story,
  body.about-modern .quality-standards,
  body.about-modern .why-choose-us,
  body.about-modern .global-presence,
  body.about-modern .about-cta {
    padding: 56px 0;
  }
  body.about-modern .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
