/* GLOBAL BASE */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

h2 {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

p.section-intro {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

/* NAVIGATION */
.navbar {
  background: #005bbb;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 160px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.schedule-btn {
  background: #ec008c;
  padding: 10px 18px;
  border-radius: 30px;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
}

/* HERO SECTION (unchanged) */
.hero {
  padding: 60px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left { flex: 1 1 45%; }
.hero-right { flex: 1 1 45%; display: flex; justify-content: center; }

.hero-gradient {
  background: radial-gradient(circle at top left, #ff8fc5, #ec008c 60%, #ff8fc5);
  padding: 30px;
  border-radius: 24px;
  max-width: 420px;
}

.hero-subtitle { color: #ec008c; font-weight: bold; }
.hero-text { color: #555; }

.hero-buttons { display: flex; gap: 12px; margin-top: 20px; }

.btn {
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
.primary-btn { background: #ec008c; color: #fff; }
.primary-btn:hover { background: #d1007d; }
.dark-btn { background: #111; color: #fff; }
.outline-btn { border: 2px solid #ec008c; color: #ec008c; }
.white-outline { border-color: #fff; color: #fff !important; }

/* SECTION BACKGROUNDS */
.section-colored { background: #ffe6f3; padding: 60px 20px; }
.section-white { background: #ffffff; padding: 60px 20px; }

/* SECTION HEADER BOX */
.section-header-box {
  text-align: center;
  padding: 20px 10px;
  margin-bottom: 40px;
  background: #ffffff;
  border: 2px solid #ec008c;
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-box h2 { margin: 0; color: #ec008c; }
.section-header-box p { margin: 8px 0 0 0; color: #333; }

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* SERVICE CARDS WITH IMAGES */
.service-card {
  background: #fff;
  border: 2px solid #ff8fc5;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card h3 { color: #ec008c; margin-top: 10px; }
.service-card img.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* INFO CARDS (WHY US) */
.info-card {
  background: #ffffff;
  border: 2px solid #005bbb;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.info-card:hover { transform: translateY(-6px); }
.info-card h3 { color: #005bbb; margin-top: 0; }
.info-card img.info-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* PROMO CARDS */
.promo-card {
  background: #ffffff;
  border: 2px solid #ec008c;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.promo-card:hover { transform: translateY(-6px); }
.promo-card h3 { color: #ec008c; }
.promo-card img.promo-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* REVIEW CARDS */
.review-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  border-left: 5px solid #005bbb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.review-card strong {
  display: block;
  margin-top: 12px;
  color: #005bbb;
}
.review-card img.review-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* FINAL CTA */
.final-cta {
  background: #ec008c;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.final-cta p { color: #fff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .section-header-box { width: 90%; }
}

/* MOBILE MENU OPEN STATE */
@media (max-width: 900px) {
  .nav-links.is-open {
    display: flex !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #005bbb;
    flex-direction: column;
    padding: 14px 20px;
    gap: 14px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.18);
    z-index: 50;
  }
}
.page-content img { max-width: 100%; height: auto; }
.page-content { line-height: 1.6; }
.page-content a { color: #005bbb; }
