/* Container utama untuk 2 Grid Blok */
.doctors-grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Membagi rata 2 kolom */
    gap: 24px;
    /* Jarak antar kartu */
    margin-top: 20px;
}

/* Responsif: Berubah jadi 1 kolom di layar HP/Tablet kecil */
@media (max-width: 768px) {
    .doctors-grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* Styling Kartu Dokter dalam Grid */
.doctor-card-grid {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Agar tinggi kartu sama rata di dalam grid */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Section Profil (Foto & Nama) */
.doctor-profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.doctor-photo-grid img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4f8;
}

.doctor-name-grid {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

/* Section Jadwal */
.schedule-item-grid {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.schedule-item-grid:last-child {
    margin-bottom: 0;
}

.schedule-day {
    font-weight: 600;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-time {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}


.menu-bar {
    background-image: linear-gradient(90deg, #ffffff, rgb(255, 255, 255));
    /* padding: 8px 0; */

}

.carousel-inner .carousel-item img {
    height: 400px;
    /* Sesuaikan tinggi yang diinginkan */
    object-fit: cover;
    /* Agar gambar tidak terdistorsi */
    width: 100%;
    color: #161616;
}

#mainNav {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

/* Logo lebih kecil */
#mainNav .navbar-brand img {
    max-width: 320px;
    height: auto;
    transition: transform 0.3s ease;
}

#mainNav .navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
#mainNav .navbar-nav .nav-link {
    color: #495057;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: center;
}

#mainNav .navbar-nav .nav-link:hover {
    color: #0d6efd;
    background-color: #cfcfcf;
}

/* Menu Aktif dengan Warna Biru */
#mainNav .navbar-nav .nav-link.active {
    color: #0d6efd;
    background-color: #cfcfcf;
    font-weight: 600;
}

/* Dropdown Menu */
#mainNav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px;
    margin-top: 8px;

}

#mainNav .dropdown-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
    transition: all 0.2s ease;
}

#mainNav .dropdown-item:hover {
    background-color: #cfcfcf;
    color: #0d6efd;
    padding-left: 20px;
    text-decoration: none;
}

#mainNav .dropdown-item.active {
    background-color: #cfcfcf;
    color: #ffffff;
    text-decoration: none;
}

/* Dropdown Arrow */
#mainNav .dropdown-toggle::after {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

#mainNav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    #mainNav .navbar-brand img {
        max-width: 250px;
    }

    #mainNav .navbar-nav {
        padding: 16px 0;
    }

    #mainNav .navbar-nav .nav-link {
        padding: 12px 16px;
        margin: 4px 0;
    }

    #mainNav .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-left: 16px;
    }
}

/* Toggler Button */
.navbar-toggler {
    border: 2px solid #e9ecef;
    padding: 6px 10px;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.card-doctor {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-doctor:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.card-img-wrapper {
    height: 280px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.card-doctor .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-doctor:hover .card-img-top {
    transform: scale(1.08);
}

.card-doctor .card-body {
    padding: 20px 15px;
}

.card-doctor .card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.card-doctor .card-text {
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .card-img-wrapper {
        height: 240px;
    }
}

/*semuadok*/
.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.card-doctor1 {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-doctor1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: #f8f9fa;
}

.card-doctor1 .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-doctor1:hover .card-img-top {
    transform: scale(1.1);
}

.card-doctor1 .card-body {
    padding: 20px 15px;
}

.card-doctor1 .card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.card-doctor .card-text {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .card-img-top-wrapper {
        height: 250px;
    }
}

footer {
    /* background-color: #2c3e50; */
    color: #fff;
    padding: 0px 0;
    margin-top: 50px;

}

footer .bawah {
    padding: 10px 0;
    background-image: linear-gradient(90deg, #b3b2b2, #b3b2b1);
}



/* Floating WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 3px;
}

/* Tooltip/Label Style */
.whatsapp-float::before {
    content: "Layanan Pengaduan";
    position: absolute;
    right: 70px;
    background-color: #ffffff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 60px;
    border-left: 8px solid #ffffff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Animation pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float::before {
        font-size: 12px;
        padding: 6px 12px;
        right: 60px;
    }

    .whatsapp-float::after {
        right: 50px;
    }
}


.room-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-header-custom {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: rgb(255, 255, 255);
    padding: 15px 10px;
    border: none;

}

.card-header-custom1 {
    background: linear-gradient(135deg, #56a9c2 0%, #4b5fa2 100%);
    color: white;
    padding: 15px 10px;
    border: none;
}

.card-header-custom2 {
    background: linear-gradient(135deg, #b3ac4e 0%, #a28b4b 100%);
    color: white;
    padding: 15px 15px;
    border: none;
}

.card-header-custom3 {
    background: linear-gradient(135deg, #51b974 0%, #4ba272 100%);
    color: white;
    padding: 15px 10px;
    border: none;
}

.room-class {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;

}

.stat-box {
    padding: 14px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.stat-box:last-child {
    border-bottom: none;
}

.stat-box:hover {
    background: #f8f9fa;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-total {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.icon-total1 {
    background: linear-gradient(135deg, #66cbea 0%, #4b5fa2 100%);
}

.icon-total2 {
    background: linear-gradient(135deg, #eae166 0%, #a28b4b 100%);
}

.icon-total3 {
    background: linear-gradient(135deg, #66ea92 0%, #4ba272 100%);
}

.icon-available {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.icon-occupied {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.stat-value {
    color: #212529;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-section {
    background: linear-gradient(135deg, #428830 0%, #03753c 100%);
    color: white;
    padding: 15px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.2rem;
    font-weight: bold;
}

/* .availability-badge {
            position: absolute;
            top: 70px;
            right: 60px;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 300;
            font-size: 0.50rem;
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
        } */

.page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 1px;
    /* Sesuaikan dengan tinggi navbar */
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.85) 0%, rgba(179, 161, 0, 0.9) 100%);
}

.hero-section {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 10px 0;
}

/* Badge Styling */
.hero-badge {
    display: inline-block;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Typography */
.hero-title {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.3;
    text-shadow: 10px 5px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #5f8830 0%, #03964c 100%);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

.hero-buttons .btn-outline-light1 {
    border: 2px solid #fff;
    background: transparent;
    color: #292929;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero {
        min-height: 450px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 400px;
        margin-top: 1px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .page-hero {
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 10px 0 !important;
    }

    .badge-text {
        font-size: 12px;
        padding: 6px 15px;
    }
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.icon-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.icon-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.icon-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-info {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
    margin: 0;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Map Section */
.map-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-header {
    padding: 15px 15px;
    background: linear-gradient(90deg, #ffffff, #ffffff 100%);
    color: rgb(56, 56, 56);
}

.map-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.map-container {
    position: relative;
    padding-bottom: 400px;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .map-container {
        padding-bottom: 300px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Header Section */
.page-header {
    background-color: #667eea;
    /* Fallback color jika gambar tidak muncul */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.92) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 3;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

/* Intro Card */
.intro-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #546e7a;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #969696 0%, #646464 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 50px;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(70, 70, 70, 0.4);
    z-index: 2;
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-item:nth-child(odd) .timeline-date {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-date {
    justify-content: flex-start;
}

.timeline-description {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .intro-card {
        padding: 25px;
    }

    .intro-card p {
        font-size: 0.95rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
        padding: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .timeline-icon {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        justify-content: flex-start;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Icon styles */
.fa-hospital {
    font-size: 18px;
}


/*visi*/
/* Header Section */
.page-header {
    background-color: #646464;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 3;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

/* Section Cards */
.section-card {
    background: white;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.icon-purple {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.icon-green {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Visi Content */
.visi-content {
    text-align: center;
    padding: 15px 20px;
}

.visi-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #3f3f3f;
    line-height: 1.9;
    margin: 0;
    position: relative;
    display: inline-block;
}

.visi-text::before,
.visi-text::after {
    content: '"';
    font-size: 3rem;
    color: #e9ecef;
    font-weight: 700;
    position: absolute;
    font-family: Georgia, serif;
}

.visi-text::before {
    top: -20px;
    left: -40px;
}

.visi-text::after {
    bottom: -30px;
    right: -40px;
}

/* Misi List */
.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.misi-item:hover {
    background: #f1f3f5;
    transform: translateX(5px);
}

.misi-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.misi-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
    padding-top: 5px;
}

/* Motto Card */
.motto-card {
    background: linear-gradient(135deg, #979797 #c7c7c7 0%, #979797 100%);
    color: rgb(48, 48, 48);
    text-align: center;
    padding: 40px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(67, 233, 123, 0.3);
    position: relative;
    overflow: hidden;
}

.motto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.motto-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.motto-text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.motto-quote {
    font-size: 4rem;
    opacity: 0.3;
    font-family: Georgia, serif;
    position: absolute;
}

.motto-quote.left {
    top: 20px;
    left: 30px;
}

.motto-quote.right {
    bottom: 20px;
    right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-card {
        padding: 30px 20px;
    }

    .section-header {
        gap: 10px;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .visi-text {
        font-size: 1.1rem;
    }

    .visi-text::before,
    .visi-text::after {
        font-size: 2rem;
    }

    .visi-text::before {
        top: -15px;
        left: -25px;
    }

    .visi-text::after {
        bottom: -20px;
        right: -25px;
    }

    .misi-item {
        padding: 15px;
    }

    .misi-text {
        font-size: 0.95rem;
    }

    .motto-card {
        padding: 40px 25px;
    }

    .motto-text {
        font-size: 1.4rem;
    }

    .motto-quote {
        font-size: 3rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* tugas */
/* Header Section */
.page-header {
    background-color: #667eea;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.92) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 3;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

/* Section Cards */
.section-card {
    background: white;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.icon-purple {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Tugas Content */
.tugas-content {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.tugas-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

/* Fungsi List */
.fungsi-intro {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.fungsi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fungsi-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.fungsi-item:hover {
    background: #e3f2fd;
    border-left-color: #4facfe;
    transform: translateX(5px);
}

.fungsi-letter {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-transform: lowercase;
}

.fungsi-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
    padding-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-card {
        padding: 25px 20px;
    }

    .section-header {
        gap: 10px;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tugas-content {
        padding: 15x;
    }

    .tugas-text,
    .fungsi-intro,
    .fungsi-text {
        font-size: 0.95rem;
    }

    .fungsi-item {
        padding: 10px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Header Section */
.page-header {
    background-color: #667eea;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.92) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 3;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

/* Section Card */
.section-card {
    background: white;
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, #969696 0%, #646464 100%);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.image-container:hover {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Download Button */
.download-section {
    margin-top: 30px;
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.download-btn i {
    font-size: 1.2rem;
}

/* Info Text */
.info-text {
    text-align: center;
    color: #546e7a;
    font-size: 0.95rem;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-card {
        padding: 30px 20px;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .image-container {
        padding: 15px;
    }

    .download-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Zoom feature */
.zoom-hint {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.image-container:hover .zoom-hint {
    opacity: 1;
}

@media (max-width: 768px) {
    .zoom-hint {
        display: none;
    }
}

/* selamat */

.welcome-section {
    padding: 1px 0px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

/* Content Container */
.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Welcome Title */
.welcome-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.welcome-title span {
    background: linear-gradient(90deg, #161616, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Welcome Text */
.welcome-text {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 0;
}

/* Image Section */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.profile-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25); */
    transition: all 0.4s ease;
    background: white;
    padding: 10px;
}

.profile-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.35);
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%); */
    z-index: 1;
    pointer-events: none;
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* Director Info */
.director-info {
    text-align: center;
    margin-top: 10px;
    padding: 15px 10px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    border-radius: 16px;
    /* box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3); */
}

.director-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(77, 76, 76);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.director-position {
    font-size: 1.05rem;
    color: rgb(77, 76, 76);
    margin: 0;
    font-weight: 400;
}

.director-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: rgb(136, 136, 136);
    font-size: 24px;
}

/* Decorative Elements */
.quote-icon {
    font-size: 3rem;
    color: #454646;
    opacity: 0.5;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

/* Responsive */
@media (max-width: 991px) {
    .content-wrapper {
        padding: 40px 30px;
    }

    .welcome-title {
        font-size: 2rem;
        text-align: center;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .image-section {
        margin-top: 40px;
    }

    .director-info {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .welcome-title {
        font-size: 1.75rem;
    }

    .director-name {
        font-size: 1.3rem;
    }

    .director-position {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}


/* Container */
.jadwal-container {
    padding: 40px 0;
}

/* Doctor Card */
.doctor-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.doctor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Doctor Icon */
.doctor-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #66eab7 0%, #72a24b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Doctor Info */
.doctor-info {
    flex: 1;
}

.doctor-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doctor-name::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(102, 126, 234, 0.3), transparent);
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    gap: 15px;
}

.schedule-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 18px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: #e3f2fd;
    border-left-color: #4facfe;
    transform: translateX(5px);
}

.schedule-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.schedule-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.schedule-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.icon-calendar {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.icon-clinic {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.icon-clock {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.schedule-text {
    flex: 1;
}

.schedule-label {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.schedule-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #b0bec5;
    font-size: 2.5rem;
}

.empty-text {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 10px;
}

.empty-subtext {
    color: #78909c;
}

/* Responsive */
@media (max-width: 768px) {
    .doctor-card {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .doctor-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .doctor-name {
        font-size: 1.2rem;
    }

    .schedule-row {
        flex-direction: column;
        gap: 15px;
    }

    .schedule-detail {
        min-width: 100%;
    }

    .schedule-item {
        padding: 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

/* Container */
.stok-container {
    padding: 40px 0;
}

/* Table Card */
.table-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Table Header */
.table-header {
    background: linear-gradient(135deg, #72a24b, #66eab7 100%);
    padding: 25px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.table-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.table-title {
    flex: 1;
}

.table-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.table-title p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Custom Table */
.modern-table {
    width: 100%;
    margin: 0;
}

.modern-table thead {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.modern-table thead th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #546e7a;
    border: none;
}

.modern-table tbody tr {
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.modern-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.modern-table tbody tr:last-child {
    border-bottom: none;
}

.modern-table tbody td {
    padding: 20px;
    color: #2c3e50;
    font-size: 0.95rem;
    vertical-align: middle;
    border: none;
}

/* Blood Type Badge */
.blood-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 60px;
}

.blood-a {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.blood-b {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.blood-ab {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.blood-o {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

/* Rhesus Badge */
.rhesus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 50px;
}

.rhesus-positive {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.rhesus-negative {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Stock Badge */
.stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #72a24b, #66eab7 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Component Name */
.component-name {
    font-weight: 500;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.component-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #72a24b, #66eab7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #b0bec5;
    font-size: 2.5rem;
}

.empty-text {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 10px;
}

.empty-subtext {
    color: #78909c;
}

/* Responsive */
@media (max-width: 768px) {
    .table-card {
        border-radius: 12px;
    }

    .table-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .table-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .table-title h3 {
        font-size: 1.3rem;
    }

    .modern-table thead {
        display: none;
    }

    .modern-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 15px;
    }

    .modern-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f1f3f5;
    }

    .modern-table tbody td:last-child {
        border-bottom: none;
    }

    .modern-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #546e7a;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .component-name {
        flex-direction: column;
        text-align: right;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}



/* footer */
/* body { */
/* font-family: 'Inter', sans-serif; */
/* background: #f8f9fa; */
/* color: #2c3e50; */
/* } */

/* Footer */
.modern-footer {
    /* background: linear-gradient(135deg, #50492c 0%, #5e4f34 100%); */
    padding: 10px 0 0;
    color: rgb(15, 15, 15);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></svg>');
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 1;
}

/* Footer Column */
.footer-column {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: rgb(26, 26, 26);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 2px;
    background: linear-gradient(to bottom rgba(102, 126, 234, 0.6), transparent);
}

.footer-icon {
    width: 35px;
    height: 35px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #667eea;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: rgb(36, 35, 35);
    padding-left: 4px;
}

.footer-menu li a::before {
    content: '›';
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.footer-menu li a:hover::before {
    color: #4facfe;
}

/* Opening Hours */
.opening-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.opening-item:last-child {
    border-bottom: none;
}

.opening-day {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.opening-time {
    color: rgb(2, 2, 2);
    font-weight: 600;
}

.badge-24 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: rgb(0, 0, 0);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-closed {
    background: rgba(255, 73, 18, 0.1);
    color: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-brand {
    font-weight: 600;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 0;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Poli Section Styling */
.poli-section {
    margin-bottom: 50px;
}

.poli-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.poli-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.poli-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Doctors Container */
.doctors-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    gap: 25px;
}

/* Doctor Card Horizontal Layout */
.doctor-card-horizontal {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.doctor-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Left Section - Foto & Info Dokter */
.doctor-left-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border-right: 3px solid #667eea;
}

.doctor-photo-horizontal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.doctor-photo-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.doctor-info-horizontal {
    text-align: center;
}

.doctor-name-horizontal {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.doctor-badge-horizontal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #667eea;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.doctor-badge-horizontal i {
    font-size: 0.85rem;
}

/* Right Section - Jadwal */
.doctor-right-section {
    flex: 1;
    padding: 25px;
    display: flex;
    align-items: center;
}

.schedule-list-horizontal {
    width: 100%;
}

.schedule-item-horizontal {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.schedule-item-horizontal:hover {
    background: #e9ecef;
    border-left-color: #764ba2;
}

.schedule-item-horizontal:last-child {
    margin-bottom: 0;
}

.schedule-row-horizontal {
    display: flex;
    gap: 20px;
}

.schedule-col-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.schedule-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.schedule-icon-box.icon-calendar {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.schedule-icon-box.icon-clock {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.schedule-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-label-h {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-value-h {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 80px;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.empty-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.empty-subtext {
    font-size: 1rem;
    color: #95a5a6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .doctors-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .doctor-card-horizontal {
        flex-direction: column;
    }

    .doctor-left-section {
        min-width: 100%;
        border-right: none;
        border-bottom: 3px solid #667eea;
        padding: 20px;
    }

    .doctor-photo-horizontal {
        width: 100px;
        height: 100px;
    }

    .doctor-right-section {
        padding: 20px;
    }

    .schedule-row-horizontal {
        flex-direction: column;
        gap: 12px;
    }

    .poli-header {
        padding: 15px 20px;
    }

    .poli-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .schedule-icon-box {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .schedule-value-h {
        font-size: 0.9rem;
    }
}