/* ========== RESET & VARIABEL WARNA (berdasarkan logo M S U I C E R) ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Warna dari huruf logo: M=#005c8a (biru tua), S=#6ab0de (biru muda), U=#fedb5f (kuning), I=#d14e4e (merah), C=#8fc9a0 (hijau mint), E=#e8a562 (oranye), R=#a57fb2 (lavender) */
:root {
  --m-blue: #005c8a;        /* M */
  --s-lightblue: #6ab0de;   /* S */
  --u-gold: #fedb5f;         /* U */
  --i-red: #d14e4e;          /* I */
  --c-mint: #8fc9a0;         /* C */
  --e-orange: #e8a562;       /* E */
  --r-lavender: #a57fb2;     /* R */
  --bg-light: #f8faff;
  --text-dark: #1e2b3c;
  --text-soft: #4a5a6e;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.05), 0 4px 10px rgba(0,92,138,0.03);
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER DENGAN LOGO ORIGINAL ========== */
header {
  background: linear-gradient(95deg, var(--m-blue) 0%, var(--s-lightblue) 100%);
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-contact {
  display: flex;
  gap: 30px;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.15);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.header-contact i {
  margin-right: 8px;
  color: var(--u-gold);
}

/* ========== LOGO ORIGINAL TANPA GARIS TEPI & BACKGROUND ========== */

/* Logo di Header - Original */
.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-area img {
  width: 90px;  /* Ukuran lebih besar */
  height: auto; /* Auto agar proporsional */
  object-fit: contain;
  /* HILANGKAN SEMUA EFFECT */
  background: none !important;           /* Hapus background */
  border-radius: 0 !important;           /* Hapus border radius */
  padding: 0 !important;                 /* Hapus padding */
  box-shadow: none !important;           /* Hapus shadow */
  border: none !important;               /* Hapus border */
  filter: none !important;               /* Hapus filter */
  transition: transform 0.3s ease;
}

.logo-area img:hover {
  transform: scale(1.05);
  /* TIDAK ADA PERUBAHAN BORDER/WARNA */
}

.logo-text h1 {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: white;
}

.logo-text p {
  font-size: 1.1rem;
  opacity: 0.95;
  font-style: italic;
  color: var(--u-gold);
  font-weight: 500;
}


/* ========== NAVIGASI STICKY - DIPERBAIKI ========== */
nav {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0,92,138,0.15);
  padding: 15px 0;
  position: sticky;
  top: 0; /* Berubah dari 92px menjadi 0 */
  z-index: 99;
  width: 100%;
  border-bottom: 3px solid var(--s-lightblue);
}

/* Memberi jarak agar tidak ketutup nav */
body {
  padding-top: 0;
  margin: 0;
}

/* Memberi jarak pada section pertama agar tidak ketutup nav sticky */
#beranda {
  scroll-margin-top: 80px; /* Memberi offset saat smooth scroll */
}

#layanan, #fasilitas, #jadwal, #kontak {
  scroll-margin-top: 80px; /* Semua section punya offset */
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--m-blue);
  font-size: 1.15rem;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  display: inline-block;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--e-orange), var(--i-red));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--i-red);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active state berdasarkan scroll (akan diatur oleh JavaScript) */
.nav-links a.active {
  color: var(--i-red);
  border-bottom-color: var(--e-orange);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(120deg, #eef5fc 0%, #ffffff 100%);
  padding: 48px 0;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 380px;
}

.hero-text h2 {
  font-size: 2.7rem;
  color: var(--m-blue);
  line-height: 1.2;
}

.hero-text h2 span {
  color: var(--i-red);
  background: linear-gradient(145deg, var(--u-gold), var(--e-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  margin: 24px 0 32px;
  color: var(--text-soft);
}

.btn {
  display: inline-block;
  background-color: var(--m-blue);
  color: white;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 8px 16px rgba(0,92,138,0.25);
  border: 2px solid transparent;
}

.btn:hover {
  background-color: white;
  color: var(--m-blue);
  border-color: var(--m-blue);
}

.hero-image {
  flex: 1 1 380px;
  min-height: 340px;
  border-radius: 40px 40px 40px 0;
  box-shadow: var(--shadow);
  border: 4px solid var(--s-lightblue);
  transition: 0.3s;
  background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
}

/* ========== PERBAIKAN ICON DOKTER GIGI ========== */
.dokter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 20px 30px;
  margin-bottom: 16px;
  border-radius: 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 8px solid;
  transition: all 0.3s ease;
}

.dokter-umum {
  border-left-color: var(--m-blue);
}

.dokter-gigi {
  border-left-color: var(--e-orange);
}

.dokter-icon {
  font-size: 2.2rem;
  width: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styling untuk icon dokter umum */
.dokter-umum .dokter-icon i {
  color: var(--m-blue);
  font-size: 2.2rem;
}

/* Styling untuk icon dokter gigi - PASTIKAN INI ADA */
.dokter-gigi .dokter-icon i {
  color: var(--e-orange);
  font-size: 2.2rem;
}

/* Font Awesome icon fallback */
.dokter-icon i.fa-user-dentist::before {
  content: "\f0f0" !important; /* Kode unicode untuk user-md */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Jika icon user-dentist tidak ada, gunakan icon tooth sebagai cadangan */
.dokter-icon i.fa-user-dentist {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Untuk memastikan icon tampil, tambahkan background-color sementara */
.dokter-icon {
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dokter-info {
  flex: 3;
  font-weight: 500;
  font-size: 1.1rem;
}

.dokter-jadwal {
  flex: 2;
  font-weight: 600;
  color: var(--m-blue);
  background: rgba(106,176,222,0.1);
  padding: 8px 15px;
  border-radius: 40px;
  text-align: center;
}

.dokter-jadwal i {
  margin-right: 8px;
  color: var(--i-red);
}

/* Responsive */
@media (max-width: 768px) {
  .dokter-row {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .dokter-info {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .dokter-jadwal {
    flex: 1 1 100%;
  }
}
/* ========== LAYANAN CARDS - DIPERBARUI ========== */
.layanan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,92,138,0.08);
  text-align: center;
  transition: all 0.4s ease;
  border-bottom: 6px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--m-blue), var(--s-lightblue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,92,138,0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card i {
  font-size: 3.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover i {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.5rem;
  color: var(--m-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  flex-grow: 1;
}

/* Warna icon per layanan */
.layanan-ugd i { color: #e74c3c; } /* Merah darurat */
.layanan-rawat-inap i { color: #3498db; } /* Biru */
.layanan-umum i { color: var(--m-blue); }
.layanan-gigi i { color: var(--e-orange); }
.layanan-aesthetic i { color: #9b59b6; } /* Ungu */
.layanan-khitan i { color: #e67e22; } /* Oranye */
.layanan-skrining i { color: #2ecc71; } /* Hijau */
.layanan-apotek i { color: #f1c40f; } /* Kuning */
.layanan-bidan i { color: #e84393; } /* Pink */

/* Border bottom color per layanan */
.layanan-ugd { border-bottom-color: #e74c3c; }
.layanan-rawat-inap { border-bottom-color: #3498db; }
.layanan-umum { border-bottom-color: var(--m-blue); }
.layanan-gigi { border-bottom-color: var(--e-orange); }
.layanan-aesthetic { border-bottom-color: #9b59b6; }
.layanan-khitan { border-bottom-color: #e67e22; }
.layanan-skrining { border-bottom-color: #2ecc71; }
.layanan-apotek { border-bottom-color: #f1c40f; }
.layanan-bidan { border-bottom-color: #e84393; }

/* Responsive untuk layanan */
@media (max-width: 992px) {
  .layanan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .layanan-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .card {
    padding: 25px 20px;
  }
  
  .card h3 {
    font-size: 1.3rem;
  }
  
  .card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .layanan-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 25px 20px;
  }
  
  .card i {
    font-size: 3rem;
  }
}

/* ========== FASILITAS GRID - DIPERBARUI ========== */
.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.fas-item {
  background: var(--white);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,92,138,0.06);
  border: 1px solid rgba(106,176,222,0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fas-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,92,138,0.12);
  border-color: var(--s-lightblue);
}

.fas-item i {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--m-blue);
  transition: all 0.3s ease;
}

.fas-item:hover i {
  transform: scale(1.1);
  color: var(--i-red);
}

.fas-item h4 {
  margin: 0 0 10px;
  color: var(--m-blue);
  font-size: 1.2rem;
  font-weight: 700;
}

.fas-item p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* Warna icon berbeda per kategori */
.fas-item:nth-child(1) i { color: #e74c3c; } /* UGD - Merah */
.fas-item:nth-child(2) i { color: #3498db; } /* Rawat Inap - Biru */
.fas-item:nth-child(3) i { color: #e67e22; } /* Ruang Tindakan - Oranye */
.fas-item:nth-child(4) i { color: #9b59b6; } /* Peralatan Medis - Ungu */
.fas-item:nth-child(5) i { color: #f1c40f; } /* Apotek - Kuning */
.fas-item:nth-child(6) i { color: #2ecc71; } /* Laboratorium - Hijau */
.fas-item:nth-child(7) i { color: #e84393; } /* Ruang Bersalin - Pink */
.fas-item:nth-child(8) i { color: var(--e-orange); } /* Poli Gigi - Oranye Muda */
.fas-item:nth-child(9) i { color: var(--m-blue); } /* Ruang Konsultasi - Biru Tua */
.fas-item:nth-child(10) i { color: #1abc9c; } /* Ruang Tunggu - Hijau Tosca */
.fas-item:nth-child(11) i { color: #e67e22; } /* Ambulance - Oranye */
.fas-item:nth-child(12) i { color: #7f8c8d; } /* Parkir - Abu-abu */

/* ========== GALERI FASILITAS ========== */
.galeri-clinic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: 40px 0 15px;
}

.galeri-clinic img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: 3px solid white;
  transition: all 0.4s ease;
  cursor: pointer;
}

.galeri-clinic img:hover {
  transform: scale(1.05);
  border-color: var(--u-gold);
  box-shadow: 0 15px 30px rgba(0,92,138,0.2);
  z-index: 5;
}

.galeri-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.95rem;
  border-top: 1px dashed var(--s-lightblue);
  padding-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== RESPONSIVE FASILITAS ========== */
@media (max-width: 1200px) {
  .fasilitas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .galeri-clinic {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .fasilitas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .galeri-clinic {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .fasilitas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .fas-item {
    padding: 20px 15px;
  }
  
  .fas-item i {
    font-size: 2.5rem;
  }
  
  .fas-item h4 {
    font-size: 1.1rem;
  }
  
  .fas-item p {
    font-size: 0.85rem;
  }
  
  .galeri-clinic {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .galeri-clinic img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .fasilitas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .fas-item {
    padding: 15px 10px;
  }
  
  .fas-item i {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .fas-item h4 {
    font-size: 1rem;
  }
  
  .fas-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .galeri-clinic {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .galeri-clinic img {
    height: 180px;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Untuk layar sangat kecil */
@media (max-width: 360px) {
  .fasilitas-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== JADWAL PRAKTEK ========== */
.jadwal-wrapper {
  background: linear-gradient(145deg, var(--s-lightblue), white);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  box-shadow: var(--shadow);
}

.jadwal-dokter {
  flex: 2 1 300px;
}

.dokter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 20px 30px;
  margin-bottom: 16px;
  border-radius: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02);
  border-left: 8px solid;
}

.dokter-umum {
  border-left-color: var(--m-blue);
}

.dokter-gigi {
  border-left-color: var(--e-orange);
}

.dokter-icon {
  font-size: 2rem;
  width: 60px;
  text-align: center;
  color: var(--i-red);
}

.dokter-info {
  flex: 3;
  font-weight: 500;
}

.dokter-jadwal {
  flex: 2;
  font-weight: 600;
  color: var(--m-blue);
}

.jadwal-note {
  margin-top: 20px;
}

.jadwal-note i {
  color: var(--i-red);
  margin-right: 5px;
}

.gmaps-container {
  flex: 1 1 280px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  min-height: 260px;
}

.gmaps-frame {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

/* ========== KONTAK ========== */
.kontak-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.kontak-info, .jam-operasional {
  flex: 1;
  min-width: 260px;
}

.kontak-info h3, .jam-operasional h3 {
  color: var(--m-blue);
  margin-bottom: 20px;
}

.kontak-info i, .jam-operasional i {
  color: var(--i-red);
  margin-right: 10px;
}

.kontak-info p, .jam-operasional p {
  margin-bottom: 10px;
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(135deg, var(--m-blue), #023b58);
  color: white;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col h4 i {
  color: var(--i-red);
  margin-right: 8px;
}

.footer-col p {
  margin: 12px 0;
  opacity: 0.9;
}

.footer-col i {
  margin-right: 12px;
  color: var(--u-gold);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.95rem;
}

/* ========== TOMBOL WHATSAPP FLOATING ========== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  line-height: 64px;
  box-shadow: 0 8px 16px rgba(37,211,102,0.4);
  z-index: 99;
  transition: 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-container { 
    flex-direction: column; 
    gap: 12px; 
  }
  
  .nav-links { 
    gap: 16px; 
  }
  
  .fasilitas-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .jadwal-wrapper { 
    flex-direction: column; 
  }
  
  .dokter-row { 
    flex-wrap: wrap; 
    gap: 12px; 
  }
  
  .hero-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .fasilitas-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-area {
    flex-direction: column;
    text-align: center;
  }
  
  .header-contact {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ========== TOMBOL GOOGLE MAPS ========== */
.gmaps-container {
  position: relative;
}

.gmaps-link {
  margin-top: 15px;
  text-align: center;
}

.btn-gmaps {
  display: inline-block;
  background-color: var(--m-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0,92,138,0.2);
}

.btn-gmaps i {
  margin-right: 8px;
  color: var(--u-gold);
}

.btn-gmaps:hover {
  background-color: white;
  color: var(--m-blue);
  border-color: var(--m-blue);
}

.btn-gmaps:hover i {
  color: var(--i-red);
}

/* ========== LOGO DI FOOTER - ORIGINAL ========== */
.footer-logo-col {
  text-align: left;
}

.footer-logo {
  width: 120px;  /* Lebih besar di footer */
  height: auto;  /* Auto proporsional */
  object-fit: contain;
  /* HILANGKAN SEMUA EFFECT */
  background: none !important;           /* Hapus background */
  border-radius: 0 !important;           /* Hapus border radius */
  padding: 0 !important;                 /* Hapus padding */
  box-shadow: none !important;           /* Hapus shadow */
  border: none !important;               /* Hapus border */
  filter: none !important;               /* Hapus filter */
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  /* TIDAK ADA PERUBAHAN LAIN */
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--u-gold);
}

.footer-col h4 i {
  color: var(--i-red);
  margin-right: 10px;
}

/* Responsive untuk footer logo */
@media (max-width: 768px) {
  .footer-logo-col {
    text-align: center;
  }
  
  .footer-logo {
    width: 70px;
    height: 70px;
  }
}

/* ========== PERBAIKAN GAMBAR ALAT KESEHATAN ========== */
.galeri-clinic {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.galeri-clinic img {
  width: 220px;
  height: 170px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,92,138,0.15);
  border: 4px solid var(--s-lightblue);
  transition: all 0.4s ease;
}

.galeri-clinic img:hover {
  transform: scale(1.08);
  border-color: var(--u-gold);
  box-shadow: 0 15px 35px rgba(0,92,138,0.25);
}



/* Caption untuk galeri */
.galeri-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.95rem;
  border-top: 1px dashed var(--s-lightblue);
  padding-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== PERBAIKAN GOOGLE MAPS ========== */
.gmaps-container {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  min-height: 300px;
  border: 3px solid var(--s-lightblue);
}

.gmaps-frame {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.gmaps-link {
  margin-top: 18px;
  text-align: center;
}

.btn-gmaps {
  display: inline-block;
  background: linear-gradient(135deg, var(--m-blue), var(--s-lightblue));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 6px 15px rgba(0,92,138,0.3);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.btn-gmaps i {
  margin-right: 10px;
  color: var(--u-gold);
  font-size: 1.2rem;
}

.btn-gmaps:hover {
  background: white;
  color: var(--m-blue);
  border-color: var(--m-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,92,138,0.4);
}

.btn-gmaps:hover i {
  color: var(--i-red);
}

/* ========== RESPONSIVE UPDATE ========== */
@media (max-width: 768px) {
  .galeri-clinic img {
    width: 180px;
    height: 140px;
  }
  
  .gmaps-container {
    min-height: 250px;
  }
  
  .gmaps-frame {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .galeri-clinic img {
    width: 100%;
    max-width: 280px;
    height: 180px;
  }
}