/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(140deg, #ffddbc, #ffb88c);
  min-height: 100vh;
  padding-bottom: 60px;
}

/* BACK BUTTON */
.back-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  background: #0f172a;
  color: #fff;
}

/* TITLE SECTION */
.about-header {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 20px;
}

.about-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
}

.about-header p {
  font-size: 1rem;
  opacity: 0.7;
}

/* ABOUT CARD */
.about-section {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.about-card {
  width: 90%;
  max-width: 800px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.about-card img {
  width: 90px;
  margin-bottom: 10px;
}

.about-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 30px 20px;
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-card img {
  width: 70px;
}

.contact-name {
  font-weight: 700;
}

.contact-phone a {
  color: #111;
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}

/* MAP BUTTON */
.open-map-btn {
  margin: 30px auto 0;
  display: block;
  padding: 12px 20px;
  border: none;
  color: #fff;
  background: #22c55e;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}

.open-map-btn:hover {
  background: #16a34a;
}
