/* GLOBAL FIXES */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 3%;
  align-items: center;
  gap: 40px;
  background: linear-gradient(to bottom, #f7f7f7, #ffffff);
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-hero p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* POSITIONING */
.about-positioning {
  padding: 80px 8%;
  max-width: 900px;
  margin: auto;
}

.about-positioning h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.about-positioning p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* METRICS */
.about-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  padding: 70px 8%;
  gap: 24px;
  background: #fafafa;
}

.metric {
  text-align: center;
}

.metric h3 {
  font-size: 34px;
  font-weight: 700;
}

.metric p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* WHY US */
.about-why {
  padding: 90px 8%;
}

.about-why h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* FOUNDERS */
.about-founders {
  padding: 90px 8%;
  background: #fafafa;
  text-align: center;
}

.about-founders h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.founder-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}

.founder-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.founder-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.founder-card span {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* FACILITIES */
.about-facilities {
  padding: 90px 8%;
  text-align: center;
}

.about-facilities h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-facilities p {
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.facility-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.facility-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.facility-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.facility-item:hover img {
  transform: scale(1.05);
}

.facility-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* QUALITY */
.about-quality {
  padding: 90px 8%;
  max-width: 900px;
  margin: auto;
}

.about-quality h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-quality p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-quality ul {
  list-style: none;
  padding-left: 0;
}

.about-quality li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

/* CTA */
.about-cta {
  padding: 90px 8%;
  text-align: center;
  background: #111;
  color: #fff;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-cta .btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 70px 6%;
    text-align: center;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-positioning,
  .about-why,
  .about-founders,
  .about-facilities,
  .about-quality,
  .about-cta {
    padding: 60px 6%;
  }

  .about-metrics {
    padding: 60px 6%;
  }

  .metric h3 {
    font-size: 26px;
  }

  .facility-item img {
    height: 180px;
  }
}

