/* ================= BASE ================= */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f2ec;
  color: #2c2c2c;
}

/* ================= HEADER ================= */

/* Shared container */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top contact bar */
.header-contact {
  background: #f3f1eb;
  font-size: 13px;
  padding: 6px 0;
}

.contact-left span {
  margin-right: 20px;
  color: #555;
}

.contact-left i {
  color: #6b8e7f;
  margin-right: 6px;
}

/* Main header */
.main-header {
  background: #e7e2d8;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

/* Hide contact bar on mobile */
@media (max-width: 768px) {
  .header-contact {
    display: none;
  }
}

/* ================= HERO ================= */
.hero {
  padding: 70px 20px;
  text-align: center;
  background: #efeade;
}

.hero h2 {
  max-width: 700px;
  margin: 0 auto 12px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 20px;
}

.hero .btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 40px 40px;
  max-width: 1200px;
  margin: auto;
  background: #f7f5ee;
}

.section h3 {
  margin-bottom: 20px;
  text-align: center;
}

/* Divider */
.section-divider {
  display: flex;
  justify-content: center;
  margin: 12px 0 24px;
}

.section-divider span {
  position: relative;
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, transparent, #6b8e7f, transparent);
  border-radius: 4px;
}

.section-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #6b8e7f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(107, 142, 127, 0.15);
}

/* ================= CARDS ================= */
.features,
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card,
.price-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.card p {
  margin-top: 10px;
  line-height: 1.5;
}

.features .card {
  text-align: left;
}

/* ================= ICONS ================= */
.feature-icon {
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}

.icon-health { color: #2e7d32; }
.icon-gym { color: #1565c0; }
.icon-clinic { color: #8e24aa; }
.icon-home { color: #ef6c00; }

/* ================= BUTTONS ================= */
.btn {
  padding: 12px 24px;
  background: #6b8e7f;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.center {
  text-align: center;
}

/* CTA link */
.click-here a {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background-color: #6b8e7f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.click-here a:hover {
  background-color: #56786b;
}

/* ================= FOOTER ================= */
footer {
  background: #e7e2d8;
  padding: 30px;
  text-align: center;
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: #efeade;
  padding: 60px 20px;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 10px;
}

.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact info box */
.contact-info {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: block;
  margin-bottom: 4px;
}

.info-item a {
  color: #6b8e7f;
  text-decoration: none;
}

/* Contact form box */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Inter', sans-serif;
}

.btn-submit {
  background: #6b8e7f;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #56786b;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}

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