* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f5f7fb;
  color: #222;
  line-height: 1.6;
}

header {
  background: #0b3c7d;
  color: #fff;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

nav a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 60px;
  background: linear-gradient(135deg, #0b3c7d, #1c7ed6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background: #ffc107;
  color: #222;
  border: none;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.section {
  padding: 40px 60px;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #0b3c7d;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  background: #e9f2ff;
  color: #0b3c7d;
  margin-bottom: 8px;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.stat span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0b3c7d;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-size: 14px;
}

.testimonial .name {
  margin-top: 10px;
  font-weight: 600;
  color: #0b3c7d;
}

.form-group {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

input,
textarea,
select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccd4e0;
  font-size: 14px;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

button {
  padding: 10px 18px;
  border-radius: 4px;
  border: none;
  background: #0b3c7d;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #09406e;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
}

.contact-box {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.info-line {
  margin-bottom: 8px;
  font-size: 14px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 4px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.whatsapp-btn:hover {
  background: #1ebe57;
}

.map-container {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

footer {
  margin-top: 40px;
  padding: 16px 60px;
  background: #0b3c7d;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

/* Appointment */
.appointment-box {
  margin-top: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  header,
  .hero,
  .section,
  footer {
    padding: 16px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px; /* GAP between cards */
  background-color: #fff;
}
/* ========================= */
/* MOBILE RESPONSIVE ADD-ON */
/* ========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .hero {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    display: inline-block;
    margin: 8px 0;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .section {
    padding: 30px 15px;
  }

  .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
  }
}
/* ========================= */
/* ABOUT PAGE MOBILE SUPPORT */
/* ========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .section {
    padding: 25px 15px;
  }

  .section h2 {
    font-size: 22px;
    text-align: center;
  }

  .section p,
  .section li {
    font-size: 14px;
    line-height: 1.6;
  }

  .card {
    margin-bottom: 20px;
  }

  .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    text-align: center;
    font-size: 13px;
    padding: 15px;
  }
}
/* ========================= */
/* SERVICES PAGE MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .section {
    padding: 25px 15px;
  }

  .section h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }

  .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.6;
  }

  footer {
    text-align: center;
    font-size: 13px;
    padding: 15px;
  }
}
/* ========================= */
/* CONTACT PAGE MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .section {
    padding: 25px 15px;
  }

  .section h2 {
    font-size: 22px;
    text-align: center;
  }

  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact-box,
  .appointment-box {
    width: 100%;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    font-size: 14px;
  }

  textarea {
    min-height: 100px;
  }

  button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  .map-container iframe {
    width: 100%;
    height: 200px;
  }

  footer {
    text-align: center;
    font-size: 13px;
    padding: 15px;
  }
}
/* ========================= */
/* MOBILE HAMBURGER MENU */
/* ========================= */

.hamburger {
  display: none;
  cursor: pointer;
  margin-top: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #111;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile only */
@media (max-width: 768px) {

  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  header nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
