/* ==========================================================================
   ABOUT US SECTION - STYLES
   Minimal Premium Agency Aesthetic
   ========================================================================== */

:root {
  --about-accent: #00d2ff;
  --about-text-dark: #111317;
  --about-text-muted: #B4B9C3;
  --about-text-desc: #747985;
  --about-line-gray: #E5E7EB;
  --about-bg: #FFFFFF;
  --about-font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --about-radius: 34px;
}

/* Standalone container & section */
.about-section {
  width: 100%;
  background-color: var(--about-bg);
  font-family: var(--about-font-family);
  color: var(--about-text-dark);
  box-sizing: border-box;
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}

.about-section *,
.about-section *::before,
.about-section *::after {
  box-sizing: border-box;
}

/* Centered content wrapper */
.about-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Main 2-column layout */
.about-grid {
  display: grid;
  grid-template-columns: 63% 37%;
  gap: 56px;
  align-items: start;
}

/* ==========================================================================
   LEFT COLUMN CONTENT
   ========================================================================== */
.about-left-col {
  display: flex;
  flex-direction: column;
}

/* 1. About Us Label */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.about-badge-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--about-accent);
}

.about-badge-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--about-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* 2. Main Headline */
.about-headline {
  margin: 0 0 54px 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--about-text-dark);
}

.about-headline .headline-dark {
  color: var(--about-text-dark);
  font-weight: 800;
}

.about-headline .headline-muted {
  color: var(--about-text-muted);
  font-weight: 750;
  transition: color 0.3s ease;
}

/* 3. Statistics Grid (Cascading Stepped Arrangement) */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
  margin-bottom: 60px;
  align-items: start;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

/* Cascading steps matching reference hierarchy */
.about-stat-item:nth-child(1) {
  margin-top: 0px;
}

.about-stat-item:nth-child(2) {
  margin-top: 60px;
}

.about-stat-item:nth-child(3) {
  margin-top: 120px;
}

/* Thin horizontal rule above statistic */
.about-stat-line {
  width: 88px;
  height: 2px;
  background-color: var(--about-line-gray);
  margin-bottom: 22px;
}

.about-stat-line.accent-line {
  background-color: var(--about-accent);
}

/* Stat numbers */
.about-stat-number {
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--about-text-dark);
  margin-bottom: 12px;
}

/* Stat label descriptions */
.about-stat-label {
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--about-text-desc);
  letter-spacing: -0.01em;
}

/* 4. Bottom Information Row */
.about-bottom-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Item: Testimonial text */
.about-testimonial-item {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--about-text-dark);
}

.about-testimonial-item .highlight-orange {
  color: var(--about-accent);
  font-weight: 800;
}

/* Vertical Divider */
.about-info-divider {
  width: 1.5px;
  height: 38px;
  background-color: var(--about-line-gray);
  margin: 0 16px;
  flex-shrink: 0;
}

/* Right Item: Experience badge & text */
.about-experience-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-exp-number-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
}

.about-exp-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--about-text-dark);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.about-exp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  background-color: var(--about-accent);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  margin-left: 2px;
  margin-top: 3px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 74, 34, 0.25);
}

.about-exp-label {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--about-text-dark);
}

/* ==========================================================================
   RIGHT COLUMN: PORTRAIT IMAGE
   ========================================================================== */
.about-right-col {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-portrait-wrapper {
  width: 100%;
  max-width: 520px;
  border-radius: var(--about-radius);
  overflow: hidden;
  background-color: #F3F4F6;
  aspect-ratio: 1 / 1.18;
  position: relative;
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: var(--about-radius);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-portrait-wrapper:hover .about-portrait-img {
  transform: scale(1.02);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Medium Screens */
@media (max-width: 1200px) {
  .about-container {
    padding: 0 36px;
  }

  .about-grid {
    grid-template-columns: 60% 40%;
    gap: 40px;
  }

  .about-headline {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .about-stats-row {
    column-gap: 24px;
  }

  .about-stat-number {
    font-size: 58px;
  }

  .about-stat-item:nth-child(2) {
    margin-top: 40px;
  }

  .about-stat-item:nth-child(3) {
    margin-top: 80px;
  }
}

/* Tablet (Stacked or Compact 2-column) */
@media (max-width: 992px) {
  .about-section {
    padding: 70px 0 90px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-portrait-wrapper {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.15;
  }

  .about-stat-item:nth-child(2),
  .about-stat-item:nth-child(3) {
    margin-top: 0px;
  }

  .about-stats-row {
    margin-bottom: 48px;
  }
}

/* Mobile Devices */
@media (max-width: 640px) {
  .about-section {
    padding: 50px 0 70px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-badge {
    margin-bottom: 18px;
    gap: 10px;
  }

  .about-badge-text {
    font-size: 16px;
  }

  .about-headline {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 36px;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    row-gap: 32px;
    margin-bottom: 40px;
  }

  .about-stat-item {
    margin-top: 0 !important;
  }

  .about-stat-line {
    width: 60px;
    margin-bottom: 14px;
  }

  .about-stat-number {
    font-size: 52px;
  }

  .about-stat-label {
    font-size: 18px;
  }

  .about-bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-info-divider {
    display: none;
  }

  .about-portrait-wrapper {
    max-width: 100%;
    border-radius: 24px;
  }

  .about-portrait-img {
    border-radius: 24px;
  }
}