/* ==========================================================================
   about.css — About Page Sections
   A Perfect Choice Home Care WordPress Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   Our Story Section
   -------------------------------------------------------------------------- */
.apch-about-story {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-about-story::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.apch-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apch-about-story-image-wrap {
  position: relative;
}
.apch-about-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.04),
    0 12px 28px rgba(27, 43, 75, 0.08),
    0 20px 48px rgba(27, 43, 75, 0.06);
}
.apch-about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 43, 75, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.apch-about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-story-image:hover img {
  transform: scale(1.03);
}
.apch-about-story-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-left: 4px solid var(--coral);
  border-top: 4px solid var(--coral);
  border-radius: 12px 0 0 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-story-image-wrap:hover .apch-about-story-image-accent {
  top: -16px;
  left: -16px;
}
.apch-about-story-image-accent-bottom {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-right: 4px solid var(--sage);
  border-bottom: 4px solid var(--sage);
  border-radius: 0 0 12px 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-story-image-wrap:hover .apch-about-story-image-accent-bottom {
  bottom: -16px;
  right: -16px;
}
.apch-about-story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(27, 43, 75, 0.3);
  backdrop-filter: blur(8px);
}
.apch-about-story-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.apch-about-story-tagline {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--coral);
  margin-bottom: 24px;
  line-height: 1.6;
}
.apch-about-story-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
}
.apch-about-story-values {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.apch-about-story-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-story-value:hover {
  transform: translateX(4px);
}
.apch-about-story-value-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.apch-about-story-value-icon--coral { background: var(--coral); }
.apch-about-story-value-icon--sage  { background: var(--sage); }
.apch-about-story-value-icon--navy  { background: var(--navy); }
.apch-about-story-value:hover .apch-about-story-value-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(27, 43, 75, 0.15);
}

@media (max-width: 900px) {
  .apch-about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-about-story {
    padding: 80px 0;
  }
  .apch-about-story-image-accent,
  .apch-about-story-image-accent-bottom {
    display: none;
  }
}
@media (max-width: 768px) {
  .apch-about-story-grid {
    gap: 32px;
  }
  .apch-about-story-values {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .apch-about-story {
    padding: 60px 0;
  }
  .apch-about-story-values {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   Mission & Vision Section
   -------------------------------------------------------------------------- */
.apch-about-mission {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
}
.apch-about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(196, 74, 63, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.apch-about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}
.apch-about-mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(27, 43, 75, 0.08);
}
.apch-about-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--coral), rgba(196, 74, 63, 0.6));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-mission-card:last-child::before {
  background: linear-gradient(180deg, var(--sage), rgba(107, 143, 113, 0.6));
}
.apch-about-mission-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.04),
    0 12px 24px rgba(27, 43, 75, 0.08),
    0 24px 48px rgba(27, 43, 75, 0.06);
  border-color: transparent;
}
.apch-about-mission-card:hover::before {
  width: 6px;
}
.apch-about-mission-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 28px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.apch-about-mission-card:hover .apch-about-mission-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(27, 43, 75, 0.12);
}
.apch-about-mission-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.apch-about-mission-card p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .apch-about-mission-grid {
    grid-template-columns: 1fr;
  }
  .apch-about-mission {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-about-mission-card {
    padding: 36px 32px;
  }
}
@media (max-width: 600px) {
  .apch-about-mission {
    padding: 60px 0;
  }
  .apch-about-mission-card {
    padding: 32px 24px;
  }
}

/* --------------------------------------------------------------------------
   Core Values Section
   -------------------------------------------------------------------------- */
.apch-about-values {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-about-values-header {
  text-align: center;
  margin-bottom: 64px;
}
.apch-about-values-header .apch-section-label {
  justify-content: center;
}
.apch-about-values-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-about-values-header p {
  font-size: 17px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apch-about-value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.apch-about-value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  transform: scaleX(0.3);
  opacity: 0.4;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}
.apch-about-value-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 20px 48px rgba(27, 43, 75, 0.06);
}
.apch-about-value-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.apch-about-value-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.apch-about-value-card:hover .apch-about-value-icon {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(27, 43, 75, 0.12);
}
.apch-about-value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--navy);
  transition: color 0.3s ease;
}
.apch-about-value-card:hover h3 {
  color: var(--coral);
}
.apch-about-value-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .apch-about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-about-values {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-about-values-grid {
    gap: 20px;
  }
  .apch-about-value-card {
    padding: 28px 22px;
  }
  .apch-about-values-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .apch-about-values-grid {
    grid-template-columns: 1fr;
  }
  .apch-about-values {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Our Commitment Section
   -------------------------------------------------------------------------- */
.apch-about-commitment {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.apch-about-commitment::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 74, 63, 0.1), transparent 70%);
  pointer-events: none;
}
.apch-about-commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.apch-about-commitment-content .apch-section-label {
  color: var(--coral);
}
.apch-about-commitment-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.apch-about-commitment-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.85;
}
.apch-about-commitment-list {
  list-style: none;
  margin-top: 32px;
}
.apch-about-commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-commitment-list li:hover {
  transform: translateX(6px);
}
.apch-about-commitment-list li + li {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.apch-about-commitment-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(107, 143, 113, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 12px;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.apch-about-commitment-list li:hover .apch-about-commitment-check {
  background: rgba(107, 143, 113, 0.35);
  transform: scale(1.1);
}
.apch-about-commitment-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.apch-about-commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-commitment-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .apch-about-commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-about-commitment {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-about-commitment-grid {
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .apch-about-commitment {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Meet Brandi Section
   -------------------------------------------------------------------------- */
.apch-about-founder {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
}
.apch-about-founder::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.apch-about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.apch-about-founder-image-wrap {
  position: relative;
}
.apch-about-founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.04),
    0 12px 28px rgba(27, 43, 75, 0.08),
    0 24px 56px rgba(27, 43, 75, 0.06);
}
.apch-about-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-founder-image:hover img {
  transform: scale(1.03);
}
.apch-about-founder-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--coral);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow:
    0 4px 12px rgba(196, 74, 63, 0.3),
    0 8px 24px rgba(196, 74, 63, 0.15);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-founder-badge:hover {
  transform: translateY(-3px);
}
.apch-about-founder-content .apch-section-label {
  color: var(--coral);
}
.apch-about-founder-content h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.apch-about-founder-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.apch-about-founder-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.9;
}
.apch-about-founder-quote {
  background: var(--white);
  border-left: 4px solid var(--coral);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0;
  font-family: 'Lora', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  position: relative;
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.04);
}
.apch-about-founder-quote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 80px;
  color: var(--coral);
  opacity: 0.1;
  position: absolute;
  top: -8px;
  left: 16px;
  line-height: 1;
}

@media (max-width: 900px) {
  .apch-about-founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-about-founder {
    padding: 80px 0;
  }
  .apch-about-founder-badge {
    right: 16px;
  }
}
@media (max-width: 600px) {
  .apch-about-founder {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Team Section
   -------------------------------------------------------------------------- */
.apch-about-team {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.apch-about-team-header {
  text-align: center;
  margin-bottom: 64px;
}
.apch-about-team-header .apch-section-label {
  justify-content: center;
}
.apch-about-team-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-about-team-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.apch-about-team-card {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 28px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-about-team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.apch-about-team-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  background: var(--white);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 12px 24px rgba(27, 43, 75, 0.06),
    0 24px 48px rgba(27, 43, 75, 0.06);
}
.apch-about-team-card:hover::before {
  opacity: 1;
}
.apch-about-team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 4px solid var(--white);
  box-shadow:
    0 2px 8px rgba(27, 43, 75, 0.06),
    0 8px 24px rgba(27, 43, 75, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-team-card:hover .apch-about-team-avatar {
  transform: scale(1.06);
  box-shadow:
    0 4px 12px rgba(27, 43, 75, 0.08),
    0 12px 32px rgba(27, 43, 75, 0.12);
}
.apch-about-team-avatar--letter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}
.apch-about-team-avatar--coral { background: rgba(196,74,63,0.1);  color: var(--coral); }
.apch-about-team-avatar--sage  { background: rgba(107,143,113,0.12); color: var(--sage); }
.apch-about-team-avatar--navy  { background: rgba(27,43,75,0.08);  color: var(--navy); }
.apch-about-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apch-about-team-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.apch-about-team-role {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.apch-about-team-card > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.apch-about-team-card:hover > p {
  opacity: 1;
}

@media (max-width: 900px) {
  .apch-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-about-team {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-about-team-grid {
    gap: 24px;
  }
  .apch-about-team-card {
    padding: 32px 24px;
  }
  .apch-about-team-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .apch-about-team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .apch-about-team {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Licenses & Certifications Section
   -------------------------------------------------------------------------- */
.apch-about-licenses {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.apch-about-licenses-header {
  text-align: center;
  margin-bottom: 48px;
}
.apch-about-licenses-header .apch-section-label {
  justify-content: center;
}
.apch-about-licenses-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.apch-about-licenses-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.apch-about-licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.apch-about-license-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-license-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 8px 20px rgba(27, 43, 75, 0.06);
}
.apch-about-license-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--sage);
  font-size: 22px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-about-license-card:hover .apch-about-license-icon {
  transform: scale(1.1);
}
.apch-about-license-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.apch-about-license-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .apch-about-licenses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .apch-about-licenses-grid {
    gap: 16px;
  }
  .apch-about-license-card {
    padding: 24px 16px;
  }
}
@media (max-width: 600px) {
  .apch-about-licenses-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .apch-about-licenses {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Locations Section (on About page)
   -------------------------------------------------------------------------- */
.apch-about-locations {
  padding: 100px 0;
  background: var(--white);
}
.apch-about-locations-header {
  text-align: center;
  margin-bottom: 56px;
}
.apch-about-locations-header .apch-section-label {
  justify-content: center;
}
.apch-about-locations-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.apch-about-locations-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-about-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.apch-about-location-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-about-location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--coral), var(--sage));
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.apch-about-location-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  background: var(--white);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 20px 48px rgba(27, 43, 75, 0.05);
}
.apch-about-location-card:hover::before {
  opacity: 1;
}
.apch-about-location-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apch-about-location-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-light);
}
.apch-about-location-detail svg {
  color: var(--sage);
  min-width: 18px;
  margin-top: 3px;
}
.apch-about-location-detail a {
  color: var(--coral);
  font-weight: 600;
}
.apch-about-location-detail a:hover {
  color: var(--coral-hover);
}
.apch-about-location-areas {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.apch-about-location-areas-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.apch-about-location-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.apch-about-location-area-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.apch-about-location-area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@media (max-width: 900px) {
  .apch-about-locations-grid {
    grid-template-columns: 1fr;
  }
  .apch-about-locations {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .apch-about-location-card {
    padding: 32px 28px;
  }
  .apch-about-locations-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .apch-about-locations {
    padding: 60px 0;
  }
  .apch-about-location-card {
    padding: 28px 24px;
  }
}
