/* ---------- About Us page ---------- */

/* Top section: brand intro */
.about-top {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  text-align: center;
}

.about-top-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 36px;
}

.about-top-text p {
  color: #555;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}

.about-top-text p:last-child {
  margin-bottom: 0;
}

/* Photo gallery: clinic environment / certificates / storefront */
.about-gallery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

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

.about-gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.about-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-gallery-item:hover .about-gallery-img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }
}

.about-branches {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  text-align: center;
}

.about-branches-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 48px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.branch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.branch-logo {
  width: 100%;
  max-width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.branch-name {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 16px;
}

.branch-location {
  display: inline-block;
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 1px;
}

.branch-address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.pin-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold);
}

.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--text-dark);
  font-size: 15px;
  text-decoration: none;
}

.branch-phone:hover {
  color: #25d366;
  text-decoration: underline;
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #25d366;
}

@media (max-width: 900px) {
  .branch-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-top {
    padding: 50px 20px 24px;
  }

  .about-top-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .about-top-text p {
    font-size: 14px;
    line-height: 1.9;
  }
}
