* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f8fd;
  color: #2c2c2c;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* HEADER */
.topbar {
  background: #0b5ed7;
  color: #fff;
  padding: 15px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.contact-mini {
  font-weight: bold;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0b5ed7, #3f8cff);
  color: white;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}

.hero h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px;
}

.hero-points li {
  margin-bottom: 8px;
}

/* HERO CARD */
.hero-card {
  background: white;
  color: #333;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* BUTTONS */
.btn-primary {
  background: white;
  color: #0b5ed7;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn-success {
  background: #198754;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* SECTIONS */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #555;
}

/* SERVICES */
.services {
  margin: 60px auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* APPOINTMENT */
.appointment {
  background: white;
  padding: 60px 0;
}

.form-card {
  max-width: 450px;
  margin: 25px auto;
  background: #f9fbff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* TEXT */
.note {
  font-size: 13px;
  color: #666;
  text-align: center;
}

.whatsapp {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #25d366;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #0b5ed7;
  color: white;
  text-align: center;
  padding: 15px;
}

.small {
  font-size: 12px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* LOCATION */
.location {
  background: #f4f8fd;
  padding: 60px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.location-info {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.address {
  margin: 15px 0;
  line-height: 1.6;
}

.map iframe {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
/* FORM UI POLISH */
.form-card input,
.form-card textarea {
  transition: all 0.2s ease;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #0b5ed7;
  box-shadow: 0 0 0 3px rgba(11,94,215,0.15);
}
.btn-primary:hover {
  background: #e9f1ff;
}

.btn-success:hover {
  background: #157347;
}
/* MOBILE STICKY BUTTONS */
.mobile-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 999;
}

.mobile-actions a {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

/* CALL */
.call-btn {
  background: #0b5ed7;
}

/* WHATSAPP */
.wa-btn {
  background: #25d366;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .mobile-actions {
    display: flex;
  }

  body {
    padding-bottom: 56px; /* buttons space */
  }
}
/* IMAGE SHOWCASE */
.image-showcase {
  background: #f4f8fd;
  padding: 70px 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.image-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-6px);
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.image-card h3 {
  margin: 15px 0 5px;
  color: #0b5ed7;
}

.image-card p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #555;
}
/* DOCTOR PROFILE */
.doctor-profile {
  background: #ffffff;
  padding: 70px 0;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.doctor-photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.doctor-info h2 {
  font-size: 30px;
  color: #0b5ed7;
  margin-bottom: 5px;
}

.degree {
  font-weight: bold;
  color: #555;
}

.experience {
  margin: 15px 0;
  line-height: 1.6;
  color: #444;
}

.doctor-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.doctor-points li {
  margin-bottom: 8px;
}

.reg {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .doctor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doctor-photo img {
    margin: auto;
  }
}
