/* ===== CarePro-inspired Design System ===== */
:root {
    /* Warna Utama: Biru Navy Lembut (Trust, Professionalism) */
    --primary: #1E3A5F;
    --primary-dark: #152B47;

    /* Warna Aksen: Rose Pink (Warmth, Maternity, Care) */
    --accent: #FF748B;
    --accent-dark: #E65A71;
    --accent-light: #FFF0F3;

    /* Warna Tambahan */
    --orange: #FFA979;
    /* Peach */
    --blue-light: #F0F4F8;
    /* Soft Blue untuk background cerah */
    --blue-soft: #A1C4FD;

    /* Netral */
    --bg-light: #F8FAFC;
    --bg-page: #ffffff;
    --text-dark: #1E3A5F;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --white: #ffffff;
    --border: #E2E8F0;

    /* Efek & Dimensi */
    --shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
    --shadow-lg: 0 8px 32px rgba(30, 58, 95, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --nav-height: 64px;
    --header-height: 70px;
    --topbar-height: 40px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: var(--nav-height);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(2, 222, 90, 0.35);
}

.btn--outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--primary);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}

.btn--white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ===== Top Bar ===== */
.topbar {
    display: none;
    background: var(--bg-light);
    height: var(--topbar-height);
    border-bottom: 1px solid var(--border);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.topbar__text {
    font-size: 12px;
    color: var(--primary);
}

.topbar__text strong {
    color: var(--accent-dark);
}

.topbar__cta {
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.topbar__cta:hover {
    opacity: 0.9;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(33, 69, 109, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.header__site {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.header__menu-btn {
    display: flex;
    color: var(--primary);
    padding: 4px;
}

.header__nav {
    display: none;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--accent-dark);
    background: var(--accent-light);
}

.header__login {
    flex-shrink: 0;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.header__login:hover {
    background: var(--accent-dark);
}

.header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 50%, var(--accent-light) 100%);
    padding: 32px 0 40px;
    overflow: hidden;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--white);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid var(--accent-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.hero__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.hero__desc strong {
    color: var(--accent-dark);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ===== Features ===== */
.features {
    padding: 32px 0;
    background: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature-card__icon--blue {
    background: var(--blue-light);
    color: #3b82f6;
}

.feature-card__icon--green {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.feature-card__icon--orange {
    background: #fff4ed;
    color: var(--orange);
}

.feature-card__icon--navy {
    background: #eef2f6;
    color: var(--primary);
}

.feature-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.feature-card__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===== Section ===== */
.section {
    padding: 36px 0 20px;
}

.section--alt {
    background: var(--bg-light);
}

.section-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-heading--left {
    text-align: left;
    margin-bottom: 0;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
}

.section__link:hover {
    text-decoration: underline;
}

/* ===== Service Categories ===== */
.service-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.service-cat:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.service-cat__icon {
    width: 52px;
    height: 52px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-cat span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.service-cat__new {
    position: absolute;
    top: 6px;
    right: 6px;
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    background: var(--orange);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ===== Clinic Cards ===== */
.clinic-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.clinic-grid::-webkit-scrollbar {
    display: none;
}

.clinic-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.clinic-card--desktop {
    display: none;
}

.clinic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.clinic-card__image {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.clinic-card__body {
    padding: 12px;
}

.clinic-card__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.clinic-card__address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-light);
}

.icon-pin {
    flex-shrink: 0;
    color: var(--text-light);
}

/* ===== Service Cards ===== */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-card__thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.service-card__info {
    flex: 1;
    min-width: 0;
}

.service-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.service-card__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-dark);
}

.service-card__btn {
    flex-shrink: 0;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.service-card__btn:hover {
    background: var(--accent-dark);
}

/* ===== Stats ===== */
.stats {
    background: var(--primary);
    padding: 32px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
}

.stats__item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.stats__item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== Article Cards ===== */
.article-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.article-card__thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.article-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.article-card__tag {
    align-self: flex-start;
    padding: 2px 8px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
}

.article-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
}

.article-card__date {
    font-size: 11px;
    color: var(--text-light);
}

.section__header--line {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.section-heading--small {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

/* Modifikasi Flat Design pada Artikel */
.article-card--clean {
    border: none;
    background: transparent;
    padding: 0;
    flex-direction: column;
}

.article-card--clean:hover {
    transform: none;
    box-shadow: none;
}

.article-card--clean .article-card__thumb {
    width: 100%;
    aspect-ratio: 4/3;
    /* Membuat ukuran gambar seragam */
    border-radius: 0;
    /* Menghilangkan sudut melengkung seperti referensi */
    margin-bottom: 12px;
}

.article-card--clean .article-card__body {
    padding: 0;
    gap: 6px;
}

.article-card--clean .article-card__tag {
    background: none;
    color: #1a73e8;
    /* Warna biru menyerupai tulisan 'TRAVEL' di referensi */
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-card--clean .article-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #202124;
    line-height: 1.35;
}

.article-card--clean .article-card__date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.article-card__excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Membatasi teks maksimal 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CTA ===== */
.cta {
    padding: 36px 0 48px;
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
}

.cta__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.cta__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Footer ===== */
.footer {
    display: none;
}

/* ===== Bottom Nav ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 200;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 600;
    transition: color 0.2s;
}

.bottom-nav__item--active,
.bottom-nav__item:hover {
    color: var(--accent-dark);
}

/* ===== Subpage Header (Booking/Clinic) ===== */
.page-booking,
.page-clinic {
    background: var(--bg-light);
}

.page-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--primary);
    height: var(--header-height);
}

.page-header__inner {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    height: 100%;
}

.page-header__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    border-radius: 8px;
    transition: background 0.2s;
}

.page-header__back:hover {
    background: rgba(255, 255, 255, 0.15);
}

.page-header__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.page-header__spacer {
    width: 36px;
}

/* ===== Booking Page ===== */
.booking-main {
    padding: 16px 0 24px;
}

.booking-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.booking-search {
    position: relative;
}

.booking-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.booking-search__input,
.booking-select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-select {
    padding: 12px 40px 12px 14px;
    appearance: none;
    cursor: pointer;
}

.booking-search__input:focus,
.booking-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(2, 222, 90, 0.15);
}

.booking-select-wrap {
    position: relative;
}

.booking-select__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.booking-card__image {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.booking-card__body {
    padding: 10px;
}

.booking-card__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.booking-card__address {
    display: flex;
    gap: 4px;
    font-size: 10px;
    color: var(--text-light);
    line-height: 1.4;
}

.booking-card__address span {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.booking-empty {
    text-align: center;
    padding: 40px 16px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Clinic Detail ===== */
.clinic-main {
    padding: 16px 0 24px;
}

.clinic-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clinic-info__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.clinic-info__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.clinic-info__body {
    padding: 16px;
}

.clinic-info__name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.clinic-info__row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.clinic-info__row svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-light);
}

.clinic-info__phone {
    color: var(--accent-dark);
    font-weight: 600;
}

.clinic-info__phone:hover {
    text-decoration: underline;
}

.clinic-services__search {
    margin-bottom: 12px;
}

.clinic-service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clinic-not-found {
    text-align: center;
    padding: 60px 16px;
}

.clinic-not-found p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.clinic-not-found__link {
    color: var(--accent-dark);
    font-weight: 700;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .topbar {
        display: block;
    }

    .header__menu-btn {
        display: none;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .hero {
        padding: 56px 0 64px;
    }

    .hero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__desc {
        font-size: 16px;
    }

    .hero__image {
        height: 360px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features {
        padding: 48px 0;
    }

    .section {
        padding: 48px 0 28px;
    }

    .section-heading {
        font-size: 26px;
    }

    .service-categories {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .clinic-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        overflow: visible;
    }

    .clinic-card {
        flex: unset;
    }

    .clinic-card--desktop {
        display: block;
    }

    .clinic-card__image {
        height: 160px;
    }

    .service-grid {
        display: grid;
        /* Wajib ditambahkan agar sistem grid aktif */
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom untuk tablet */
        gap: 16px;
    }

    /* Tambahan untuk merapikan kartu layanan saat mode grid */
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .service-card__thumb {
        width: 100%;
        height: 160px;
        margin-bottom: 12px;
    }

    .service-card__info {
        width: 100%;
        margin-bottom: 16px;
    }

    .service-card__btn {
        width: 100%;
        /* Membuat tombol selebar kartu */
        margin-top: auto;
        /* Mendorong tombol selalu rata di bagian bawah */
    }

    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .article-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom di mode tablet */
        gap: 24px;
    }

    .article-card {
        flex-direction: column;
        padding: 0;
        overflow: hidden;
    }

    .article-card__thumb {
        width: 100%;
        height: 160px;
        border-radius: 0;
    }

    .article-card__body {
        padding: 16px;
    }

    .cta__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px 48px;
    }

    .bottom-nav {
        display: none;
    }

    .footer {
        display: block;
        background: var(--primary-dark);
        color: rgba(255, 255, 255, 0.75);
    }

    .footer__inner {
        display: flex;
        justify-content: space-between;
        gap: 48px;
        padding: 48px 0 40px;
    }

    .footer__brand {
        display: flex;
        gap: 12px;
    }

    .footer__name {
        font-size: 20px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 6px;
    }

    .footer__tagline {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        max-width: 260px;
    }

    .footer__links {
        display: flex;
        gap: 64px;
    }

    .footer__col h4 {
        font-size: 12px;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 14px;
    }

    .footer__col a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 10px;
        transition: color 0.2s;
    }

    .footer__col a:hover {
        color: var(--accent);
    }

    .footer__bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        text-align: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
    }

    .booking-filters {
        flex-direction: row;
        gap: 16px;
    }

    .booking-search {
        flex: 2;
    }

    .booking-select-wrap {
        flex: 1;
        min-width: 200px;
    }

    .booking-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .booking-card__image {
        height: 160px;
    }

    .clinic-layout {
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 28px;
        align-items: start;
    }

    .clinic-info__card {
        position: sticky;
        top: calc(var(--header-height) + 16px);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 42px;
    }

    .features__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .clinic-layout {
        grid-template-columns: 400px 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Membentuk 4 grid sejajar */
    }
}

@media (min-width: 1280px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .article-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 kolom sejajar di mode desktop */
    }
}