/* Klinik Andani Sehat - custom styling */

h1, h2, h3, h4, .font-display {
    font-family: 'Poppins', sans-serif;
}

/* Signature: leaf-vein divider echoing the logo's leaf mark */
.leaf-divider {
    position: relative;
    height: 64px;
    overflow: hidden;
}
.leaf-divider svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    background: linear-gradient(120deg, #0F7C86 0%, #1BA9B5 45%, #4FAE59 100%);
}

.card-hover {
    transition: transform .25s ease, box-shadow .25s ease;
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(18, 49, 56, 0.18);
}

/* Horizontal carousel for services */
.scroll-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.scroll-carousel::-webkit-scrollbar {
    height: 8px;
}
.scroll-carousel::-webkit-scrollbar-thumb {
    background: #A9E0E4;
    border-radius: 999px;
}
.scroll-carousel > * {
    scroll-snap-align: start;
}

.badge-unggulan {
    background: linear-gradient(90deg, #7CC142, #1BA9B5);
}

@media (prefers-reduced-motion: reduce) {
    .card-hover { transition: none; }
}
