:root {
  --green-dark: #146c43;
  --green: #198754;
  --bg: #f4f8f4;
  --text: #2b2b2b;
  --card: #ffffff;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* LAYOUT */
.about-layout {
  flex: 1;
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  align-items: flex-start;
}

/* SIDEBAR */
.about-sidebar {
  width: 240px;
  background: var(--card);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
}

.about-btn {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: none;
  border-radius: 10px;
  background: #f3f5f3;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.about-btn:hover {
  background: var(--green);
  color: white;
  transform: translateX(2px);
}

.about-btn.active {
  background: var(--green);
  color: white;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.tab {
  display: none;
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tab.active {
  display: block;
}

.tab h2 {
  color: var(--green-dark);
  margin-bottom: 12px;
}

/* IMAGE */
.tab img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 15px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
  }

  .about-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.mv-box {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #198754;
  transition: 0.2s;
}

.mv-box:hover {
  transform: translateY(-3px);
}

.mv-box h3 {
  color: #146c43;
  margin-bottom: 10px;
  font-size: 18px;
}

/* responsive */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.section-intro {
  margin-bottom: 18px;
  line-height: 1.6;
  color: #444;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.ph-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #198754;
  transition: 0.2s;
}

.ph-card:hover {
  transform: translateY(-4px);
}

.ph-card h3 {
  color: #146c43;
  margin-bottom: 10px;
}

.ph-card ul {
  padding-left: 18px;
}

.ph-card li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

/* responsive */
@media (max-width: 900px) {
  .ph-grid {
    grid-template-columns: 1fr;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.client-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #198754;
  transition: 0.2s;
}

.client-card:hover {
  transform: translateY(-4px);
}

.client-card h3 {
  color: #146c43;
  margin-bottom: 10px;
}

.client-card ul {
  padding-left: 18px;
}

.client-card li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* responsive */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.contact-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #198754;
  transition: 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card h3 {
  color: #146c43;
  margin-bottom: 10px;
}

.contact-card ul {
  padding-left: 18px;
}

.contact-card li {
  margin-bottom: 6px;
}

/* responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: #198754;
  color: #fff;
  text-decoration: none; /* removes underline */
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.map-btn:hover {
  background: #146c43;
  transform: translateY(-2px);
  text-decoration: none; /* keeps it clean on hover too */
}

/* Embedded Google Map styling */
.map-embed {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(25, 135, 84, 0.06);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 200px;
  }
}

.profile-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #198754;
}

.profile-card h3 {
  color: #146c43;
  margin-bottom: 6px;
  font-size: 18px;
}

.profile-card p {
  color: #444;
  font-size: 14px;
}

.hours-card {
  width: 100%;
}

.status-indicator {
  margin: 10px 0 20px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}

.status-indicator.open {
  background: #d4f8d4;
  color: #0d7a0d;
}

.status-indicator.closed {
  background: #ffd6d6;
  color: #b00020;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
