/** {box-sizing: border-box;}
        body {font-family: Arial, sans-serif; margin:0}
        
        /* Wadah utama slideshow */
/*        .slideshow-container {
            max-width:800px;
            position: relative;
            margin: auto;
        }

        /* Sembunyikan gambar secara default */
/*        .mySlides {
            display: none;
        }

        /* Ukuran gambar responsif */
/*        .mySlides img {
            width: 80%;
            height: 400px; /* Atur tinggi sesuai kebutuhan */
/*            object-fit: cover; /* Agar gambar tidak gepeng */
/*            vertical-align: middle;
        }

        /* Tombol berikutnya & sebelumnya */
/*        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 50px 50px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.3);
        }

        /* Posisi tombol berikutnya di sebelah kanan */
/*        .next {
            right: 0;
            border-radius: 50px 0 0 50px;
        }

        /* Efek hover pada tombol navigasi */
/*        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* Wadah untuk titik indikator (dots) */
/*        .dot-container {
            text-align: center;
            padding: 15px;
            background: #fafafa;
        }

        /* Gaya untuk titik indikator */
/*        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 2px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .active, .
		:hover {
            background-color: #717171;
        }

        /* Efek transisi memudar (Fade) */
/*        .fade {
            animation-name: fade;
            animation-duration: 1.5s;
        }

        @keyframes fade {
            from {opacity: .4} 
            to {opacity: 1}
        }


/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-size: 18px;
    --primary: #1e88e5;
    --secondary: #26a69a;
    --accent: #00acc1;
    --destructive: #dc2626;
    --background: #f8fafb;
    --foreground: #1a2332;
    --card: #ffffff;
    --muted: #e3f2fd;
    --muted-foreground: #546e7a;
    --border: #cfd8dc;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--font-size);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* High Contrast Mode */
body.high-contrast {
    --background: #000000;
    --foreground: #ffffff;
    --card: #1a1a1a;
    --primary: #ffff00;
    --secondary: #00ffff;
    --accent: #00ff00;
    --muted: #333333;
    --border: #ffffff;
}

body.high-contrast a {
    text-decoration: underline;
}

/*hero section*/
.hero-section{
    position:relative;
    margin-bottom:140px;
}

/* Navigation */
.navbar {
	position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    box-shadow:0 2px 12px rgba(0,0,0,.08);

    z-index:999;
    /*background:rgba(0,153,255,0.5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.3);
    border-radius-left: 10px;

    position: sticky;
    top: 0;
    z-index: 100;*/
}
.container{

    max-width:1200px;

    margin:auto;

    padding:0 20px;
}
.nav-wrapper {
	display:flex;

    align-items:center;

    justify-content:space-between;

    height:80px;

    gap:20px;
    /*display: flex;
    justify-content: space-between;
    align-items: center;
	gap:20px;
    padding: 16px 0;*/
}

.logo {
	flex-shrink:0;
}

.logo-img{
	width:210px;

    height:auto;

    display:block;
    /*width:210px;

    height:auto;

    display:block;*/
    /*display: flex;
    align-items: center;
    gap: 12px;*/
}

.logo-icon {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

.nav-menu {
	list-style:none;

    display:flex;

    align-items:center;

    justify-content:center;

    flex:1;

    gap:25px;
    /*display: flex;
    gap: 20px;
    align-items: center;
	flex:1;
	justify-content:center;*/
}
.nav-menu li{

    list-style:none;
}

.nav-menu a{

    color:#0d4f8b;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.nav-menu a:hover{

    color:#d32f2f;
}
.nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--foreground);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--foreground);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.desktop-only {
    display: inline-flex;
}

/* Buttons */
.
 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-emergency {
    background: var(--destructive);
    color: white;
}

.btn-emergency:hover {
    opacity: 0.9;
}

.btn-primary {
    background: var(--primary);
    color: white;
	border-radius:20px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-full {
    width: 12px;
    justify-content: center;
}

/* Accessibility Controls */
.accessibility-controls {
    /*position: fixed;
    right: 20px;
    bottom: 50px;
    background:rgba(0,153,255,0.3);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 50;*/
	position:absolute;

    right:30px;

    bottom:-80px;

    z-index:100;
}

.accessibility-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.font-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.btn-font {
    width: 40px;
    height: 40px;
    background: var(--muted);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-font:hover {
    background: var(--primary);
    color: white;
}

.btn-font-large {
    font-size: 20px;
}

.btn-contrast {
    width: 100%;
    height: 40px;
    background: var(--muted);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-contrast:hover,
.btn-contrast.active {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	/*background-image:url(images/banner_hero.png);*/
    color: white;
    padding: 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
	font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-emergency-large {
	 display:flex;

    align-items:center;

    gap:10px;

    background:#d32f2f;

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    text-decoration:none;

    box-shadow:0 4px 12px rgba(211,47,47,.3);

    transition:.3s;

    flex-shrink:0;
    /*display: flex;
    align-items: center;
    gap: 12px;
    background: var(--destructive);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);*/
	/*display:flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#d32f2f;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    white-space:nowrap;
    flex-shrink:0;*/
}

.btn-label {
    font-size: 12px;
    opacity: 0.9;
}

.btn-text {
    font-weight: 700;
}

.hero-card {
	/*height: 230px;
	width: 400px;
	position: absolute;
    left: 20px;
    bottom: -90px;
    background:rgba(255,51,51,0.5);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 50;*/
	position:absolute;
    left:30px;
    bottom:-80px;

    width:380px;
    height:auto;

    background:rgba(255,51,51,.55);
    border-radius:15px;
    padding:18px;

    z-index:100;
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
	color:#FFF;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-item {
	color:#003;
	font-family:Verdana, Geneva, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 12px;
    padding: 4px 0;
}
.schedule-item span{
    flex: 1;
}

.schedule-item.highlight {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 12px;
}

.schedule-item.highlight strong {
    color:#FFF;
	font-family:"Arial Black", Gadget, sans-serif;
	font-size: 30px;
	white-space: nowrap;
    text-align: right;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-white {
    background: white;
}

.bg-gray {
    background: var(--muted);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--foreground);
}

.section-header p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Doctor Cards */
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.doctor-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: box-shadow 0.3s;
}

.doctor-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.doctor-icon {
    font-size: 48px;
}

.doctor-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.specialty {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

.doctor-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.location {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.badge-available {
    background: rgba(38, 166, 154, 0.15);
    color: var(--secondary);
}

.badge-category {
    background: rgba(30, 136, 229, 0.15);
    color: var(--primary);
}

/* Services */
.services-section {
    margin-bottom: 48px;
}

.services-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--foreground);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-icon {
    width: 220px;
    height: 56px;
    border-radius: 12px;
    display: flex;
	flex-wrap: unwrap;
	gap: 0,1px;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.service-icon:hover {
	opacity:1;
	transform:scale(1.500);
}

.service-icon.primary {
    background: rgba(30, 136, 229, 0.15);
}

.service-icon.secondary {
    background: rgba(38, 166, 154, 0.15);
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.article-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.article-image {
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.bg-blue {
    background: #90caf9;
}

.bg-teal {
    background: #80cbc4;
}

.bg-cyan {
    background: #80deea;
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.article-date {
    font-size: 12px;
    color: var(--muted-foreground);
}

.article-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.article-link:hover {
    text-decoration: underline;
}

/* Form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
	background-image:url(images/bg_pesan.jpg);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 16px;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-icon.primary {
    background: rgba(30, 136, 229, 0.15);
}

.contact-icon.secondary {
    background: rgba(38, 166, 154, 0.15);
}

.contact-icon.accent {
    background: rgba(0, 172, 193, 0.15);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 4px 0;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: var(--muted);
    border-radius: 16px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.emergency-box {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.emergency-box p {
    font-size: 12px;
    margin-bottom: 4px;
}

.emergency-box a {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.btn-emergency-large{

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    background:#d32f2f;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;
}

.btn-emergency-large:hover{
    background:#b71c1c;
    transform:translateY(-2px);
}
.floating-emergency{
	display:none;

    position:fixed;

    right:20px;

    bottom:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#d32f2f;

    color:#fff;

    text-decoration:none;

    justify-content:center;

    align-items:center;

    font-size:28px;

    box-shadow:0 8px 18px rgba(0,0,0,.25);

    z-index:9999;
  
}

.floating-emergency:hover{

    transform:scale(1.08);
}

.floating-emergency{

    display:none;
}

/* Mobile Responsive */
@media (max-width: 432px){

.navbar{
    height:70px;
}

.nav-wrapper{
    height:70px;
    padding:0;
}

.logo-img{
    width:150px;
    height:auto;
}

.mobile-menu-btn{
    display:block;
    font-size:30px;
    padding:8px;
}

.nav-menu{
    display:none;
}

.btn-emergency-large{
    display:none;
}
.hero-slider{

    height:300px;
    min-height:300px;
}

.slide img{

    width:100%;

    height:300px;

    object-fit:cover;
}

.slide-overlay{

    padding:20px;
}
.welcome-banner{

    width:100%;

    padding:15px;
}

.welcome-banner h1{

    font-size:24px;

    line-height:1.3;
}

.welcome-banner p{

    font-size:15px;
}
.hero-card{

    position:relative;

    width:95%;

    margin:15px auto;

    left:auto;

    right:auto;

    bottom:auto;

    height:auto;

    padding:15px;

    border-radius:12px;
}

.hero-card h3{

    font-size:20px;

    margin-bottom:10px;
}

.schedule-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px 0;

    font-size:14px;
}

.schedule-item strong{

    font-size:14px;
}
.accessibility-controls{

    position:relative;

    width:95%;

    margin:10px auto 25px;

    padding:12px;
}

.font-controls{

    justify-content:center;
}
.floating-emergency{

    display:flex;

    width:60px;

    height:60px;

    right:15px;

    bottom:15px;

    font-size:28px;
}
.doctor-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;
}
.section{

    padding:50px 15px;
}

.section-title{

    font-size:28px;
}

.section-subtitle{

    font-size:15px;
}
.btn{

    width:100%;

    justify-content:center;

    padding:14px;
}
.container{

    padding:0 15px;
}

}

@media (max-width: 768px) {
.logo-img{

    width:160px;
}
.btn-emergency-large{
   /*display:none;*/
}
.floating-emergency{
    display:flex;
}

	.hero-section{

    margin-bottom:20px;
	}
	.hero-card{
		/*width: calc(100% - 20px);
		max-width: none;
		height: auto;
	
		left: 10px;
		right: 10px;
		bottom: -45px;
	
		padding: 12px;
		border-radius: 10px;*/
		position:relative;

		width:95%;
	
		margin:15px auto;
	
		left:auto;
		bottom:auto;
	}
	
	.hero-card h3{
		margin-bottom:10px;
		font-size:10px;
	}
	.schedule-item{
		font-size:14px;
		gap:8px;
	}
	.schedule-item strong{
    	font-size:14px;
	}
	.schedule-list{
		display:flex;
		justify-content:space-between;
		font-size:15px;

    	margin-bottom:8px;
	}
    .nav-menu {
        display: none;
        /*flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
		/*display:none;

		background:none;
	
		border:none;
	
		font-size:30px;
	
		cursor:pointer;*/
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 24px;
    }
    
    .accessibility-controls {
        /*right: 10px;
        top: 80px;
        padding: 12px;*/
		 position:relative;

		width:95%;
	
		margin:15px auto;
	
		right:auto;
		bottom:auto;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
	
/* Image Swap Hover */

	.image-container{
    width:60px;
    height:60px;
    position:relative;
    overflow:hidden;
	}
	
	.image-container img{
		position:absolute;
		width:100%;
		height:100%;
		object-fit:cover;
		transition:all .5s ease;
	}
	
	.img-hover{
		opacity:0;
		transform:scale(1);
	}
	
	.image-container:hover .img-normal{
		opacity:0;
	}
	
	.image-container:hover .img-hover{
		opacity:1;
		transform:scale(1.2);
	}
	
	


	
