*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #7a9bcf;
  color: #fff;
  line-height: 1.5;
  min-height: 100vh;
}

/* Navbar */
nav {
  background-color: #7190c1;
  display: flex;
  flex-wrap: wrap;            /* biar menu bisa wrap ke baris baru */
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 10px; 

}

/* Bagian kiri navbar */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 150px;
  white-space: nowrap;
}

/* Logo gambar */
.logo-anjing, .logo-kucing {
  width: 30px;
  height: auto;
}

/* Teks logo */
.logo-text {
  font-weight: 800;
  font-size: 22px;
  color: white;
}

/* Menu tengah */
.navbar-center {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 2 1 auto;
  min-width: 200px;
}

/* Link menu */
.navbar-center a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.navbar-center a:hover, .navbar-center a.active {
  color: #ffffa9;
}

/* Bagian kanan tombol */
.navbar-right {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 150px;
}

/* Style tombol masuk/daftar */
.btn-login{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  font-size: 18px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 16px;
}

.btn-login:hover {
  background-color: #ffffa9;
  color: black;
  border-color: #ffffa9;
}

/* MOBILE VIEW */
@media (max-width: 600px) {
  nav {
    justify-content: center;
  }

  .navbar-left,
  .navbar-center,
  .navbar-right {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    min-width: auto;
  }

  /* Buat menu center dan tombol jadi baris baru dan full lebar */
  .navbar-center {
    gap: 15px;
    margin: 8px 0;
  }

  .btn-login {
    width: 100%;
    max-width: none;
    padding: 12px 0;
    font-size: 16px;
  }
}

.hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 60px 40px;
  min-height: 400px;
  color: white;

  /* Gambar background */
  background-image: url('img/bgimg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* Overlay warna biru transparan supaya teks terbaca */
  box-shadow: inset 0 0 0 1000px rgba(111, 161, 242, 0.6);

  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-content button {
  background-color: #ffffa9;
  color: #000;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.hero-content button:hover {
  background-color: #e5e57c;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column; /* ubah jadi kolom di layar kecil */
    padding: 30px 20px;
    min-height: auto; /* biar tinggi mengikuti isi */
  }

  .hero-content {
    max-width: 100%;
    margin-top: 20px;
  }

  /* Jika ada gambar hero sebagai elemen img, atur lebarnya */
  .hero img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Sesuaikan ukuran font di layar kecil */
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
  }
}

/* Cards Layanan */
.cards {
  display: flex;
  gap: 24px;
  margin: 24px 0 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: rgba(255 255 255 / 0.15);
  border-radius: 12px;
  color: #fff9a9;
  width: 280px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 24px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: default;
  position: relative;
  background-size: cover;
  background-position: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-size 0.3s ease;
}

.card:hover {
  background-size: 110%;
}

/* Background image untuk tiap card */
.card1 { background-image: url('img/car1d.jpg'); }
.card2 { background-image: url('img/car2d.jpg'); }
.card3 { background-image: url('img/car3d.jpg'); }

.card-title {
  font-size: 20px;
  font-weight: 700;
}

.card-desc {
  font-weight: 400;
  font-size: 14px;
  margin-top: 6px;
  color: #f2f2cc;
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .card {
    width: 100%;          /* Penuh lebar container agar tidak berantakan */
    max-width: 500px;     /* Maksimal lebar supaya tidak terlalu melebar */
    min-height: 180px;    /* Tinggi minimal lebih kecil supaya proporsional */
    max-height: 280px;    /* Batasi tinggi agar tidak memanjang */
    padding: 12px 20px;   /* Kurangi padding untuk lebih ringkas */
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 12px;

    /* Cadangan overflow jika teks terlalu panjang */
    overflow: hidden;
    position: relative;
  }

  .card:hover {
    background-size: 105%; /* Hover efek disesuaikan */
  }

  .card-title {
    font-size: 18px;  /* font lebih kecil dan proporsional */
    margin-bottom: 6px;
  }

  .card-desc {
    font-size: 12px;
    color: #f0eec1;
    height: 3.6em;    /* batasi teks sekitar 3 baris */
    overflow: hidden;
    display: -webkit-box;
  }
}

.about-section {
  display: flex;
  gap: 40px;
  padding: 40px;
  background-color: #6a9bd5; /* biru muda yang menenangkan */
  border-radius: 12px;
  color: #ffffff;
  max-width: 1200px;
  margin: 40px auto;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.about-image {
  flex: 1 1 300px;
  max-width: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-text {
  flex: 2 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text h5 {
  color: #fffeb3; /* kuning lembut */
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #e2e9fb;
  margin-bottom: 0;
}

.about-text button {
  width: fit-content;
  background-color: #fffeb3; /* kuning lembut */
  border: none;
  color: #000;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.about-text button:hover {
  background-color: #e5e57c;
}
/* Responsif untuk About Section */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    padding: 20px;
    max-width: 90%;
    margin: 20px auto;
  }
  .about-image {
    max-width: 100%;
    flex: none;
    margin-bottom: 20px;
  }
  .about-text {
    flex: none;
    max-width: 100%;
  }
  .about-text h2 {
    font-size: 28px;
  }
  .about-text h5 {
    font-size: 16px;
  }
  .about-text p {
    font-size: 14px;
    line-height: 1.5;
  }
  .about-text button {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 15px 10px;
  }
  .about-text h2 {
    font-size: 24px;
  }
  .about-text h5 {
    font-size: 14px;
  }
  .about-text p {
    font-size: 13px;
  }
  .about-text button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.dokter-section {
  background-color: #fefea3; /* kuning muda */
  border: 4px solid #7190c1; /* border biru */
  border-radius: 12px;
  padding: 40px 20px 60px;
  max-width: 1200px;
  margin: 40px auto;
  box-sizing: border-box;
  color: #7190c1;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.dokter-section h2 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.dokter-container {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.dokter-card {
  background-color: white;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 6px 10px rgb(0 0 0 / 0.12);
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #4a4a4a;
}

.dokter-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.dokter-name {
  background-color: rgba(113, 144, 193, 0.3);
  color: #5475b9;
  font-weight: 700;
  font-size: 20px;
  border-radius: 18px;
  padding: 6px 20px;
  width: fit-content;
  margin-bottom: 12px;
  user-select: none;
}

.dokter-card p {
  background-color: #fff9e7;
  border: 3px solid #e5d965;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  flex-grow: 1;
}
/* Responsive untuk dokter-section */
@media (max-width: 992px) {
  .dokter-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .dokter-card {
    width: 45%; /* 2 kartu per baris pada tablet */
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .dokter-container {
    flex-direction: column;
    gap: 20px;
  }

  .dokter-card {
    width: 100%; /* 1 kartu per baris pada mobile */
    min-height: auto;
  }
}

/* Opsional: perhalus ukuran font dan padding di mobile */
@media (max-width: 480px) {
  .dokter-card p {
    font-size: 13px;
    padding: 14px 16px;
  }

  .dokter-name {
    font-size: 18px;
    padding: 5px 16px;
  }
}

/* Footer */
footer {
  background: #ffffa9;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 32px 16px;
  gap: 40px;
}
.footer-left {
  max-width: 400px;
}
.footer-left h3 {
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.social-icons {
  display: flex;
  gap: 10px; /* Jarak antar ikon */
  margin-top: 16px;
}

.icon-img {
  width: 36px;   /* Atur ukuran gambar ikon */
  height: 36px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-img:hover {
  transform: scale(1.1);
}
.social-icons a:hover {
  background: #516f9c;
}
.btn-map {
  margin-top: 16px;
  background: #7a9bcf;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  user-select: none;
}
.footer-right {
  background: #7a9bcf;
  border-radius: 12px;
  min-width: 260px;
  max-width: 320px;
  padding: 16px 20px;
  color: #fff9a9;
  text-align: left;
}
.footer-right h3 {
  background: #9fb9e9;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #000;
}
.hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #fff9a9;
}
.hours div {
  display: flex;
  justify-content: space-between;
}
.services-note {
  margin-top: 20px;
  background: #ccc8cc;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  text-align: center;
  color: #000;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    padding: 20px 15px;
  }
  .contacts, .hours {
    width: 100%;
  }
  .google-maps-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile 480px ke bawah */
@media (max-width: 480px) {
  .sosmed-icons {
    justify-content: center;
  }
  .sosmed-icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
    line-height: 30px;
  }
  .hours ul li {
    font-size: 14px;
  }
  .hours h3 {
    font-size: 18px;
  }
}

/* Login */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #6492c7;
  color: white;
}

/* Container utama login */
.login-container {
  display: flex;
  max-width: 900px;
  margin: 50px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Sisi kiri dengan gambar dan logo */
.image-side {
  position: relative;
  flex: 1;
  background-color: #4a78b3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 0 20px;
}

.logo-top {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo-top img {
  width: 30px;
  height: auto;
  user-select: none;
}

.side-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  filter: grayscale(100%);
  max-height: 600px;
}

/* Sisi kanan form login */
.form-side {
  flex: 1;
  background-color: #6492c7;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-side h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  user-select: none;
}

/* Input group */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border-radius: 10px;
  border: 1px solid white;
  background: transparent;
  color: white;
  font-size: 1.15rem;
  outline: none;
}

.input-group input::placeholder {
  color: #d4d9eb;
  font-weight: 400;
}

/* Ikon anjing dan kucing di input */
.icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.dog {
  right: 15px;
  background-image: url('img/anjing.png');
}

.cat {
  right: 15px;
  background-image: url('img/kucing.png');
}

/* Tombol login */
.btn-login {
  width: 100%;
  padding: 18px;
  background-color: #ffffa9;
  color: black;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #e5e57c;
}

/* Text Sign Up bawah tombol */
.signup-text {
  margin-top: 30px;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.signup-text a {
  color: #ffffa9;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  margin-left: 5px;
}

.signup-text a:hover {
  text-decoration: underline;
}

.social-login {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: box-shadow 0.3s;
}

.social-btn:hover {
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}

.social-btn img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  user-select: none;
  pointer-events: none; /* supaya klik fokus tombol, bukan gambar */
}
/* Responsif layar kecil */
@media(max-width: 768px) {
  .login-container {
    flex-direction: column;
    margin: 20px;
  }
  .form-side {
    padding: 40px 30px;
  }
  .form-side h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .side-image {
    max-height: 300px;
    border-radius: 20px 20px 0 0;
  }
  .logo-top {
    display: none;
  }
}

/* Reset dan Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #7190c1;
  color: white;
}

/* Container utama */
.signup-container {
  max-width: 900px;
  height: 90vh;
  margin: 40px auto;
  display: flex;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Bagian kiri gambar */
.left-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  position: relative;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Bagian kanan form */
.right-form {
  flex: 1;
  background-color: #7190c1;
  padding: 60px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo Paw Patrol atas kanan */
.logo-top {
  position: absolute;
  top: 30px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: white;
  user-select: none;
}

.logo-top img {
  width: 30px;
  height: auto;
  user-select: none;
}

/* Judul Sign Up */
.right-form h1 {
  font-weight: 900;
  font-size: 3.5rem;
  margin-bottom: 40px;
  user-select: none;
}

/* Input Group */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group input {
  width: 100%;
  background: transparent;
  border: 1.5px solid white;
  border-radius: 10px;
  padding: 15px 45px 15px 20px;
  font-size: 1.2rem;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input::placeholder {
  color: #d0defa;
  font-weight: 400;
}

.input-group input:focus {
  border-color: #ffffa9;
}

/* Icon anjing kecil di input */
.icon.dog {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("img/anjing.png");
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.8;
}

/* Tombol Login */
.btn-submit {
  width: 100%;
  background-color: #ffffa9;
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 16px 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #e5e57c;
}

/* Text Sign In */
.signin-text {
  margin-top: 25px;
  font-size: 1rem;
  font-weight: 400;
  color: #d0defa;
  text-align: center;
}

.signin-text a {
  color: #ffffa9;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-left: 6px;
}

.signin-text a:hover {
  text-decoration: underline;
}

/* Tombol sosial */
.social-login {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 30px;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn.google {
  background-color: transparent;
}

.social-btn.google:hover {
  background-color: #bf3b30;
}

.social-btn.facebook {
  background-color: transparent;
}

.social-btn.facebook:hover {
  background-color: #304977;
}

/* RESPONSIVE SIGN UP LAYOUT */
@media (max-width: 768px) {
  .signup-container {
    flex-direction: column !important;
    max-width: 100vw;
    height: auto;
    margin: 20px auto !important;
  }

  .left-image,
  .right-form {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }

  .left-image img {
    height: 250px !important;
    border-radius: 20px 20px 0 0 !important;
  }

  /* Atur padding dan font size agar pas di hp */
  .right-form {
    padding: 30px 20px !important;
  }

  .right-form h1 {
    font-size: 2.5rem !important;
  }

  .input-group input {
    font-size: 1rem !important;
    padding: 12px 40px 12px 16px !important;
  }

  .btn-submit {
    font-size: 1rem !important;
    padding: 14px 0 !important;
  }

  .signin-text {
    font-size: 14px !important;
  }

  .social-login {
    gap: 20px !important;
  }

  .social-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .social-btn img {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Container keseluruhan About Kami */
.about-kami-section {
  max-width: 1200px;
  margin: 40px auto;
}

/* Header dengan background gambar pattern */
.about-kami-header {
      background: linear-gradient(180deg, #fff0a0 0%, #d0d9ff 100%);
      padding: 60px 20px 80px;
      max-width: 1200px;
      margin: 0 auto 50px;
      border-radius: 0 0 74px 74px;
      text-align: center;
      color: white;
      user-select: none;
    }

.about-kami-header h1 {
  font-size: 38px;
  font-weight: 900;
  text-decoration: underline;
  color: #000000;
  margin: 0;
}

/* Konten teks dan gambar: Flex Row */
.about-kami-content {
  display: flex;
  background-color: #7190c1;  /* warna biru lembut */
  padding: 40px 60px;
  border-radius: 0 0 12px 12px;
  gap: 60px;
  align-items: center;
  color: white;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* Teks */
.about-kami-text {
  flex: 1 1 550px;
  font-size: 18px;
  line-height: 1.6;
}

.about-kami-text strong {
  font-weight: 700;
}

/* Gambar oval bulat */
.about-kami-image {
  flex: 1 1 350px;
  max-width: 350px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.about-kami-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .about-kami-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .about-kami-image, .about-kami-text {
    max-width: 90%;
    flex: none;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-kami-content {
    padding: 20px 10px;
  }

  .about-kami-header h1 {
    font-size: 32px;
  }

  .about-kami-text {
    font-size: 16px;
  }
}

.thank-you-section {
  background-color: #5887c5; /* Biru medium */
  text-align: center;
  padding: 40px 20px 80px;
  color: #0a0d13;
  font-family: 'Poppins', sans-serif;
}

.thank-you-banner {
  background-color: #fefea3; /* kuning lembut */
  background-image: url('img/pattern-paw-bone.png'); /* ganti dengan path pattern gambar mu */
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  padding: 32px 15px;
  margin: 0 auto 40px auto;
  max-width: 900px;
  border-radius: 12px;
  color: black;
  font-weight: 700;
  font-size: 20px;
  user-select: none;
}

.thank-you-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.thank-you-section p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #0a0d13; /* putih cenderung biru muda */
}

.stats-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background-color: #fefea3; /* kuning lembut */
  width: 200px;
  padding: 30px 20px;
  border-radius: 18px;
  color: black;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
  font-weight: 700;
  user-select: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.stat-card h3 {
  font-size: 36px;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 18px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 30px 10px 50px;
  }
  .thank-you-banner {
    max-width: 100%;
  }
  .stats-cards {
    gap: 25px;
  }
  .stat-card {
    width: 90%;
    max-width: 300px;
    padding: 25px 15px;
  }
  .stat-icon {
    font-size: 40px;
  }
  .stat-card h3 {
    font-size: 30px;
  }
  .stat-card p {
    font-size: 16px;
  }
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none; /* hilangkan underline */
  cursor: pointer;
  color: inherit; /* wariskan warna teks */
}

.logo-link:hover .logo-text {
  color: #ffffa9; /* warna kuning saat hover */
}

.logo-link img {
  display: block;
}

/* Penyesuaian untuk banner judul layanan */
.layanan-banner {
      background: linear-gradient(180deg, #fff0a0 0%, #d0d9ff 100%);
      padding: 60px 20px 80px;
      max-width: 1200px;
      margin: 0 auto 50px;
      border-radius: 0 0 74px 74px;
      text-align: center;
      color: white;
      user-select: none;
      
    }

/* Container tab navigasi */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  background-color: #7190c1;
  padding: 12px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  flex-wrap: wrap;
}

/* Tombol tab */
.tab-link {
  background-color: transparent;
  padding: 10px 18px; /* kecilkan padding */
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  font-size: 16px; /* turunkan font size */
  color: white;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Tab aktif dan hover */
.tab-link.active,
.tab-link:hover {
  background-color: #ffffa9;
  color: #000;
  border-color: #ffffa9;
}

/* Tab content area */
.tab-content {
  max-width: 900px;
  margin: 0 auto 60px;
  background-color: #ffffa9;
  border-radius: 0 0 12px 12px;
  padding: 30px 40px;
  color: black;
  display: none;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.tab-content.active {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background-color: #ffffa9;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #000;
}

.tab-image {
  border-radius: 12px;
  max-width: 320px;
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tab-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Judul sub-tab dan paragraf */
.tab-text h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}

.tab-text p {
  font-size: 16px;
  line-height: 1.5;
}

.tab-text ul {
  padding-left: 20px;
  margin-top: 15px;
}

/* Tombol konsultasi di dalam tab */
.btn-konsultasi {
 display: inline-block;  /* ini kuncinya */
  margin-top: 24px;       /* baru kerasa jaraknya */
  background-color: #7190c1;
  color: #ffffa9;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: background-color 0.3s;
}

.btn-konsultasi:hover {
  background-color: #516f9c;
}

/* Responsif */
@media (max-width: 768px) {
  .layanan-banner {
    font-size: 36px;
    padding: 30px 0;
    max-width: 100%;
  }
  .tab-container {
    gap: 15px;
    padding: 10px 15px;
  }
  .tab-link {
    font-size: 14px;
    padding: 8px 16px;
  }
  .tab-content {
    flex-direction: column;
    padding: 20px;
  }
  .tab-image {
    max-width: 100%;
    border-radius: 12px;
  }
  .tab-text {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .tab-link {
    font-size: 13px;
    padding: 8px 12px;
  }
  .btn-konsultasi {
    width: 100%;
    padding: 14px 0;
  }
}
    /* Header Kontak dengan pattern */
.kontak-header {
      background: linear-gradient(180deg, #fff0a0 0%, #d0d9ff 100%);
      padding: 60px 20px 80px;
      max-width: 1200px;
      margin: 0 auto 50px;
      border-radius: 0 0 74px 74px;
      text-align: center;
      color: white;
      user-select: none;
    }

    /* Konten Utama */
    .kontak-section {
  background-color: #7190c1; /* biru lembut */
  padding: 30px 20px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
  color: #dae7ff;
  font-family: 'Poppins', sans-serif;
}

/* Teks atas */
.kontak-text h2 {
  font-weight: 700;
  font-size: 24px;
  border: 0px solid #87a9d6;
  padding: 12px 0;
  max-width: 460px;
  margin: 0 auto 20px auto;
  color: #f5faff;
  user-select: none;
}

.kontak-text p {
  font-size: 20px;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 50px auto;
  letter-spacing: 0.03em;
  user-select: none;
  color: #f5faff;
}

/* Container kotak kontak */
.kontak-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Kotak kontak individual */
.kontak-card {
  background-color: #ffffaf; /* kuning lembut */
  border-radius: 16px;
  width: 180px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  cursor: default;
  user-select: none;
}

/* Gambar ikon */
.kontak-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(69%) sepia(24%) saturate(606%) hue-rotate(166deg) brightness(94%) contrast(90%);
}

/* Tulisan dalam kotak */
.kontak-card p {
  color: #7190c1;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  user-select: none;
}
.kontak-map {
  max-width: 720px;   /* Memperbesar lebar maksimal peta */
  width: 100%;
  margin: 40px auto 0 auto; /* Memberi margin atas supaya peta turun lebih ke bawah */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  height: 420px;      /* Memperbesar tinggi peta */
  transition: height 0.3s ease;
}

.kontak-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

/* Responsive untuk layar kecil */
@media (max-width: 768px) {
  .kontak-map {
    max-width: 100%;
    height: 320px;   /* Sesuaikan tinggi agar tidak terlalu tinggi di layar kecil */
    margin-top: 30px;
  }
}
    /* Responsive */
    @media (max-width: 768px) {
      .kontak-info {
        gap: 15px;
      }

      .info-box {
        width: 130px;
        font-size: 16px;
        padding: 24px 15px;
      }

      .info-box .icon {
        font-size: 32px;
      }

      .kontak-map iframe {
        height: 280px;
      }
    }
    @media (max-width: 480px) {
      .kontak-info {
        flex-direction: column;
        align-items: center;
      }

      .info-box {
        width: 90%;
        max-width: 300px;
      }
    }
    @media (max-width: 768px) {
  .kontak-cards {
    gap: 18px;
  }
  .kontak-card {
    width: 90%;
    max-width: 320px;
  }
  .kontak-text h2 {
    max-width: 80%;
    font-size: 18px;
  }
  .kontak-text p {
    max-width: 90%;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .kontak-map {
    max-width: 100%;
    height: 320px;   /* Sesuaikan tinggi agar tidak terlalu tinggi di layar kecil */
    margin-top: 30px;
  }
}


.banner-artikel {
      background: linear-gradient(180deg, #fff0a0 0%, #d0d9ff 100%);
      padding: 60px 20px 80px;
      max-width: 1200px;
      margin: 0 auto 50px;
      border-radius: 0 0 74px 74px;
      text-align: center;
      color: white;
      user-select: none;
    }

/* Tab Filter */
.tab-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #bfd1ea;
  border-radius: 12px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 16px;
  color: white;
  transition: all 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #ffffa9;
  color: black;
  border-color: #ffffa9;
}

/* Artikel Grid */
.artikel-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.artikel-card {
  background-color: #7190c1;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
}

.artikel-image {
  background-position: center;
  background-size: cover;
  height: 220px;
  position: relative;
}

.artikel-date {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: black;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 12px;
  user-select: none;
}

.artikel-content {
  padding: 24px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.artikel-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.artikel-content p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 400;
}

.read-more {
  font-weight: 700;
  font-size: 14px;
  color: white;
  user-select: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar-menu {
    justify-content: center;
    flex-wrap: wrap;
  }
  .banner-artikel {
    font-size: 36px;
    padding: 40px 0;
  }
  .tab-filter {
    gap: 15px;
    padding: 10px 15px;
  }
  .tab-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  .tab-content {
    flex-direction: column;
    padding: 20px;
  }
  .tab-image {
    max-width: 100%;
    border-radius: 12px;
  }
  .tab-text {
    padding-left: 0;
    text-align: center;
  }
  .stats-cards {
    gap: 30px;
  }
  .stat-card {
    width: 90%;
    max-width: 300px;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .btn-map {
    margin: 20px auto 0;
    width: 90%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .navbar-menu a {
    font-size: 14px;
  }
  .banner-artikel {
    font-size: 28px;
  }
  .tab-btn {
    font-size: 13px;
    padding: 8px 12px;
  }
  .btn-konsultasi {
    width: 100%;
    padding: 14px 0;
  }
  .icon-img {
    width: 28px;
    height: 28px;
  }
  .contact-item,
  .hours div {
    font-size: 12px;
  }
  .footer-left h3,
  .footer-right h3 {
    font-size: 20px;
    padding: 10px 15px;
  }
}

.bannerjam {
      background: linear-gradient(180deg, #fff0a0 0%, #d0d9ff 100%);
      padding: 60px 20px 80px;
      max-width: 1200px;
      margin: 0 auto 50px;
      border-radius: 0 0 74px 74px;
      text-align: center;
      color: white;
      user-select: none;
    }
    header h1 {
      font-weight: 900;
      font-size: 48px;
      margin-bottom: 18px;
      color: #000;
    }
    header p {
      max-width: 800px;
      margin: 0 auto;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.6;
      color: #070912;
    }

    /* Kontainer jadwal dan layanan */
    .main-content {
      max-width: 1200px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 35px;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Jadwal praktik dokter */
    .jadwal-card {
      background: #fff0a0;
      border-radius: 24px;
      padding: 30px 50px 40px;
      box-shadow: 0 12px 28px rgb(0 0 0 / 0.15);
      color: #000;
      box-sizing: border-box;
    }
    .jadwal-card h2 {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 16px;
    }
    .jadwal-card p {
      font-weight: 400;
      font-size: 14px;
      margin-bottom: 24px;
      color: #4a4a4a;
    }
    .jadwal-list {
      list-style: none;
      padding: 0;
      margin: 0 0 16px 0;
    }
    .jadwal-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      font-weight: 600;
      font-size: 16px;
      color: #000;
    }
    .jadwal-list li:last-child {
      margin-bottom: 0;
    }

    /* Status dan waktu */
    .status {
      font-weight: 700;
      padding: 0 12px;
      border-radius: 16px;
      text-transform: uppercase;
      min-width: 60px;
      text-align: center;
      font-size: 14px;
      line-height: 1.2;
    }
    .status.buka {
      background-color: #dbffe6;
      color: #2b7a35;
      border: 1px solid #2b7a35;
    }
    .status.tutup {
      background-color: #ffe5e5;
      color: #ba2f29;
      border: 1px solid #ba2f29;
    }
    .jadwal-waktu {
      font-family: 'Montserrat', sans-serif;
      color: #333;
      font-weight: 700;
      font-size: 16px;
    }

    /* Info hari libur nasional */
    .hari-libur {
      background-color: #e2edff;
      color: #395dade3;
      padding: 12px 24px;
      border-radius: 16px;
      font-weight: 600;
      font-size: 15px;
      max-width: 460px;
      margin-top: 24px;
      line-height: 1.3;
      user-select: none;
    }

    /* Kanan, layanan darurat dan booking */
    .side-cards {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    /* Kartu merah layanan darurat */
    .card-darurat {
      background-color: #e55959;
      border-radius: 24px;
      box-shadow: 0 12px 28px rgb(229 93 93 / 0.3);
      padding: 30px 24px;
      color: white;
      box-sizing: border-box;
    }
    .card-darurat h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .card-darurat p {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 28px;
    }
    .btn-darurat {
      background-color: #f8e3ec;
      font-weight: 600;
      padding: 16px 56px;
      border-radius: 20px;
      color: #db415f;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 18px rgb(228 126 163 / 0.8);
      user-select: none;
      font-size: 16px;
      width: 100%;
      transition: background-color 0.3s;
    }
    .btn-darurat:hover {
      background-color: #e1b1c1;
    }

    /* Kartu kuning booking antrian */
    .card-booking {
      background-color: #f8ee6d;
      border-radius: 24px;
      box-shadow: 0 12px 28px rgb(243 228 89 / 0.3);
      padding: 30px 24px;
      box-sizing: border-box;
      text-align: center;
      color: #4a4a4a;
      font-weight: 900;
      font-size: 20px;
    }
    .card-booking p {
      font-weight: 600;
      font-size: 16px;
      margin: 20px 0 30px;
    }
    .btn-booking {
      background-color: #212121;
      color: #fff;
      border: none;
      padding: 16px 56px;
      border-radius: 20px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(0,0,0,0.8);
      user-select: none;
      font-size: 16px;
      width: 100%;
      transition: background-color 0.3s;
    }
    .btn-booking:hover {
      background-color: #444444;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .main-content {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }
      .side-cards {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
      }
      .card-darurat, .card-booking {
        flex: 1 1 45%;
      }
    }
    @media (max-width: 600px) {
      .side-cards {
        flex-direction: column;
      }
      .card-darurat, .card-booking {
        flex: 1 1 100%;
      }
    }

