@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --pku-green: #00494e;
    --pku-green-dark: #00383c;
    --pku-green-soft: #e9f3f1;
    --pku-green-hover: #00383c;
    --pku-secondary: #00494e;
    --pku-orange: #ff7b00;
    --pku-orange-dark: #e66f00;
    --pku-orange-soft: #fff2e5;
    --bg-main: #f7faf9;
    --bg-card: #ffffff;
    --border-color: #dfe9e6;
    --text-dark: #14292b;
    --text-muted: #637475;
    --shadow-sm: 0 8px 24px rgba(0, 73, 78, 0.07);
    --shadow-md: 0 18px 45px rgba(0, 56, 60, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--bg-main) !important;
    color: var(--text-dark);
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: 'Manrope', system-ui, sans-serif;
}

a {
    color: inherit;
}

p,
.text-muted {
    color: var(--text-muted) !important;
}

img {
    max-width: 100%;
}

.text-pku-green { color: var(--pku-green) !important; }
.bg-pku-green { background-color: var(--pku-green) !important; }
.text-pku-orange { color: var(--pku-orange) !important; }
.bg-pku-orange { background-color: var(--pku-orange) !important; }
.border-pku { border-color: var(--border-color) !important; }

.section-space {
    padding: 92px 0;
}

.section-space-sm {
    padding: 68px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--pku-orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 28px;
    height: 2px;
    background: var(--pku-orange);
    content: '';
}

.section-title {
    max-width: 720px;
    color: var(--pku-green);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.section-lead {
    max-width: 680px;
    font-size: 1.03rem;
    line-height: 1.85;
}

.btn {
    font-weight: 700;
}

.btn-pku-green {
    border: 1px solid var(--pku-green);
    background: var(--pku-green);
    color: #fff;
}

.btn-pku-green:hover,
.btn-pku-green:focus {
    border-color: var(--pku-green-hover);
    background: var(--pku-green-hover);
    color: #fff;
}

.btn-pku-orange {
    border: 1px solid var(--pku-orange);
    background: var(--pku-orange);
    color: #fff;
}

.btn-pku-orange:hover,
.btn-pku-orange:focus {
    border-color: var(--pku-orange-dark);
    background: var(--pku-orange-dark);
    color: #fff;
}

.btn-outline-pku {
    border: 1px solid rgba(0, 73, 78, 0.25);
    background: #fff;
    color: var(--pku-green);
}

.btn-outline-pku:hover {
    border-color: var(--pku-green);
    background: var(--pku-green);
    color: #fff;
}

/* Header */
.site-utility {
    background: var(--pku-green-dark);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
}

.site-utility a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.site-utility a:hover {
    color: #fff;
}

.site-utility__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    z-index: 1030;
    border-bottom: 1px solid rgba(0, 73, 78, 0.08);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 56, 60, 0.05);
    backdrop-filter: blur(12px);
}

.site-header .navbar {
    min-height: 82px;
}

.site-brand {
    min-width: 280px;
    text-decoration: none;
}

.site-brand__logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    object-fit: contain;
}

.site-brand__title {
    color: var(--pku-green);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.site-brand__tagline {
    color: var(--text-muted);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-accreditation {
    height: 44px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
    object-fit: contain;
}

.site-header .nav-link {
    position: relative;
    padding: 0.7rem 0.62rem !important;
    color: #345255;
    font-size: 0.79rem;
    font-weight: 700;
}

.site-header .nav-link::after {
    position: absolute;
    right: 0.62rem;
    bottom: 4px;
    left: 0.62rem;
    height: 2px;
    border-radius: 999px;
    background: var(--pku-orange);
    content: '';
    opacity: 0;
    transform: scaleX(0);
    transition: 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--pku-green);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
    padding: 9px 13px;
    border-radius: 12px;
    background: var(--pku-orange-soft);
    color: var(--pku-orange-dark);
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.emergency-button i {
    font-size: 1.2rem;
}

/* Hero */
.company-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--pku-green-dark);
}

.company-hero__image,
.company-hero__overlay,
.company-hero__pattern {
    position: absolute;
    inset: 0;
}

.company-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.28);
    transform-origin: 38% 50%;
}

.company-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 44, 47, 0.94) 0%, rgba(0, 61, 65, 0.82) 43%, rgba(0, 73, 78, 0.3) 72%, rgba(0, 73, 78, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 44, 47, 0.3), transparent 45%);
}

.company-hero__pattern {
    opacity: 0.12;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.company-hero__content {
    position: relative;
    z-index: 2;
    max-width: 710px;
    padding: 118px 0 150px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-eyebrow i {
    color: #ffc07a;
}

.company-hero h1 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(2.45rem, 5.4vw, 4.65rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.company-hero h1 span {
    color: #ff9b3d;
}

.company-hero__lead {
    max-width: 630px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.08rem;
    line-height: 1.8;
}

.company-hero__actions .btn {
    min-width: 165px;
    padding: 13px 20px;
    border-radius: 12px;
}

.company-hero__actions .btn-light {
    color: var(--pku-green);
}

.hero-trust {
    display: flex;
    gap: 26px;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust i {
    color: #ff9b3d;
}

/* Quick access */
.quick-access-wrap {
    position: relative;
    z-index: 4;
    margin-top: -74px;
}

.quick-access {
    overflow: hidden;
    border: 1px solid rgba(0, 73, 78, 0.08);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.quick-access__item {
    display: flex;
    min-height: 146px;
    align-items: center;
    gap: 16px;
    padding: 25px 24px;
    color: inherit;
    text-decoration: none;
    transition: 0.22s ease;
}

.quick-access__item:hover {
    background: var(--pku-green-soft);
}

.quick-access__item--emergency {
    background: var(--pku-orange);
    color: #fff;
}

.quick-access__item--emergency:hover {
    background: var(--pku-orange-dark);
}

.quick-access__icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 14px;
    background: var(--pku-green-soft);
    color: var(--pku-green);
    font-size: 1.4rem;
}

.quick-access__item--emergency .quick-access__icon {
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
}

.quick-access__label {
    margin-bottom: 4px;
    color: var(--pku-green);
    font-size: 0.97rem;
    font-weight: 800;
}

.quick-access__item--emergency .quick-access__label {
    color: #fff;
}

.quick-access__description {
    margin: 0;
    color: var(--text-muted) !important;
    font-size: 0.76rem;
    line-height: 1.55;
}

.quick-access__item--emergency .quick-access__description {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* About */
.about-visual {
    position: relative;
    min-height: 530px;
}

.about-visual__main {
    width: calc(100% - 44px);
    height: 470px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual__badge {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 205px;
    padding: 22px;
    border: 8px solid var(--bg-main);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.about-visual__badge img {
    height: 68px;
    margin-bottom: 8px;
    object-fit: contain;
}

.about-visual__badge strong {
    display: block;
    color: var(--pku-green);
    font-size: 0.84rem;
}

.value-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-item__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--pku-green-soft);
    color: var(--pku-green);
}

.value-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-dark);
    font-size: 0.91rem;
}

.value-item span {
    color: var(--text-muted);
    font-size: 0.79rem;
    line-height: 1.55;
}

/* Services */
.services-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.services-section::after {
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--pku-green-soft);
    content: '';
    opacity: 0.65;
}

.service-card {
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    transition: 0.25s ease;
}

.service-card:hover {
    border-color: rgba(0, 73, 78, 0.24);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

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

.service-card__body {
    padding: 24px;
}

.service-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 14px;
    background: var(--pku-orange-soft);
    color: var(--pku-orange);
    font-size: 1.35rem;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--pku-green);
    font-size: 1rem;
    font-weight: 800;
}

.service-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.7;
}

.service-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.service-total > span {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 18px;
    background: var(--pku-green);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.service-total strong,
.service-total small {
    display: block;
}

.service-total strong {
    color: var(--pku-green);
    font-size: .86rem;
}

.service-total small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: .69rem;
}

.service-category-summary {
    position: relative;
    display: flex;
    min-height: 130px;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 17px;
    background: var(--bg-main);
    color: inherit;
    transition: .22s ease;
}

.service-category-summary:hover {
    border-color: rgba(0,73,78,.25);
    background: var(--pku-green-soft);
    transform: translateY(-3px);
}

.service-category-summary__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--pku-green);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,73,78,.07);
}

.service-category-summary strong,
.service-category-summary small {
    display: block;
    padding-right: 22px;
}

.service-category-summary strong {
    margin-bottom: 6px;
    color: var(--pku-green);
    font-size: .83rem;
}

.service-category-summary small {
    color: var(--text-muted);
    font-size: .67rem;
    line-height: 1.55;
}

.service-category-summary > b {
    position: absolute;
    top: 16px;
    right: 17px;
    color: var(--pku-orange);
    font-size: .82rem;
}

#service-directory {
    scroll-margin-top: 120px;
}

.service-directory-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 19px;
    background: #fff;
    transition: .24s ease;
}

.service-directory-card:hover {
    border-color: rgba(0,73,78,.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.service-directory-card__visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-directory-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.service-directory-card:hover .service-directory-card__visual img {
    transform: scale(1.035);
}

.service-directory-card__visual--icon {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,123,0,.17), transparent 24%),
        linear-gradient(145deg, var(--pku-green), var(--pku-green-dark));
}

.service-directory-card__visual--icon::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 0);
    background-size: 22px 22px;
    content: '';
    opacity: .28;
}

.service-directory-card__visual--icon > i {
    position: relative;
    color: #fff;
    font-size: 3rem;
}

.service-directory-card__visual--icon > span {
    position: absolute;
    bottom: 17px;
    left: 19px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.78);
    font-size: .62rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.service-directory-card__body {
    padding: 24px;
}

.service-directory-card__category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--pku-orange);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-directory-card h3 {
    margin-bottom: 11px;
    color: var(--pku-green);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.service-directory-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: .77rem;
    line-height: 1.75;
}

/* Stats */
.trust-section {
    position: relative;
    overflow: hidden;
    background: var(--pku-green);
}

.trust-section::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1px, transparent 0);
    background-size: 25px 25px;
    content: '';
    opacity: 0.35;
}

.trust-stat {
    position: relative;
    padding: 12px;
    color: #fff;
    text-align: center;
}

.trust-stat__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0 auto 15px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 15px;
    background: rgba(255,255,255,.1);
    color: #ffc07a;
    font-size: 1.35rem;
}

.trust-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.6rem;
    font-weight: 800;
}

.trust-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

/* Doctors */
.doctor-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    transition: 0.24s ease;
}

.doctor-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.doctor-card__photo {
    position: relative;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(145deg, var(--pku-green-soft), #fff);
}

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

.doctor-photo-placeholder {
    color: var(--pku-green);
    background: linear-gradient(145deg, #edf8f3, #d8eee5);
}

.doctor-card__photo .doctor-photo-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    font-size: 4rem;
}

/* Doctor schedule */
.schedule-doctor__photo img,
.schedule-doctor__photo .doctor-photo-placeholder {
    width: 78px;
    height: 78px;
    border: 3px solid var(--pku-light);
}

.schedule-doctor__photo img {
    object-position: center top;
}

.schedule-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule-slot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    background: #f7faf9;
    color: var(--text-muted);
    font-size: .72rem;
    line-height: 1.25;
}

.schedule-slot > i {
    flex: 0 0 auto;
    color: var(--pku-green);
}

.schedule-slot > span {
    display: flex;
    gap: 4px;
}

.schedule-slot strong {
    color: var(--text-dark);
}

.schedule-slot small {
    color: var(--text-muted);
    font-size: inherit;
}

.schedule-empty {
    color: var(--text-muted);
    font-size: .76rem;
    font-style: italic;
}

.doctor-card__body {
    padding: 20px;
}

.doctor-card__specialty {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 7px;
    background: var(--pku-orange-soft);
    color: var(--pku-orange-dark);
    font-size: 0.66rem;
    font-weight: 800;
}

.doctor-card h3 {
    margin: 0;
    color: var(--pku-green);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.45;
}

.swiper-container-dokter {
    padding: 10px 4px 48px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 42px !important;
    height: 42px !important;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #fff;
    color: var(--pku-green) !important;
    box-shadow: var(--shadow-sm);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.95rem !important;
    font-weight: 800;
}

.swiper-pagination-bullet-active {
    background: var(--pku-orange) !important;
}

.btn-filter-poli {
    border-color: var(--border-color);
    border-radius: 999px !important;
    color: var(--pku-green);
    font-size: 0.73rem;
}

.btn-filter-poli.active,
.btn-filter-poli:hover {
    border-color: var(--pku-green) !important;
    background: var(--pku-green) !important;
    color: #fff !important;
}

/* News */
.news-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    transition: 0.25s ease;
}

.news-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.news-card__body {
    padding: 24px;
}

.news-card__date {
    display: block;
    margin-bottom: 12px;
    color: var(--pku-orange);
    font-size: 0.7rem;
    font-weight: 700;
}

.news-card h3 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.news-card p {
    font-size: 0.8rem;
    line-height: 1.7;
}

.news-card__link {
    color: var(--pku-green);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
}

/* Contact CTA */
.contact-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--pku-green);
    box-shadow: var(--shadow-md);
}

.contact-panel__content {
    padding: 52px;
}

.contact-panel h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.contact-panel p {
    color: rgba(255,255,255,.72) !important;
    line-height: 1.8;
}

.contact-panel iframe {
    display: block;
    width: 100%;
    min-height: 390px;
    border: 0;
}

/* Page banner */
.page-hero {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    background: var(--pku-green-dark);
}

.page-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 56, 60, 0.96), rgba(0, 73, 78, 0.65));
    content: '';
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 82px;
    padding-bottom: 82px;
}

.page-hero h1 {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 610px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.72) !important;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.68);
    font-size: 0.76rem;
    font-weight: 600;
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* Existing public page compatibility */
.layanan-card,
.berita-card {
    overflow: hidden;
    border: 1px solid var(--border-color) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    transition: 0.25s ease;
}

.layanan-card:hover,
.berita-card:hover {
    border-color: rgba(0, 73, 78, 0.22) !important;
    box-shadow: var(--shadow-sm) !important;
    transform: translateY(-4px) !important;
}

.layanan-card .card-body,
.berita-card .card-body {
    padding: 26px !important;
}

.card {
    border-color: var(--border-color);
}

.card.shadow-sm,
.card.shadow-lg {
    box-shadow: var(--shadow-sm) !important;
}

.table {
    --bs-table-striped-bg: #f7faf9;
    --bs-table-hover-bg: var(--pku-green-soft);
    color: var(--text-dark);
}

.table thead th {
    border-bottom: 0;
    color: var(--pku-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-pills .nav-link {
    color: var(--pku-green);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: var(--pku-green);
    color: #fff;
}

.artikel-konten {
    color: #354c4e !important;
    font-size: 1rem !important;
    line-height: 1.95 !important;
}

.empty-state {
    padding: 56px 24px;
    border: 1px dashed #c9d9d5;
    border-radius: 18px;
    background: #fff;
    color: var(--text-muted);
    text-align: center;
}

.empty-state i {
    display: block;
    margin-bottom: 12px;
    color: var(--pku-green);
    font-size: 2rem;
}

/* Company profile */
.profile-quote {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    padding: 20px 22px;
    border-left: 4px solid var(--pku-orange);
    border-radius: 0 14px 14px 0;
    background: var(--pku-orange-soft);
}

.profile-quote > i {
    color: var(--pku-orange);
    font-size: 2rem;
}

.profile-quote strong {
    display: block;
    color: var(--pku-green);
    font-size: .92rem;
}

.profile-quote span {
    color: var(--text-muted);
    font-size: .72rem;
}

.profile-facts {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-main);
}

.profile-fact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-color);
}

.profile-fact:last-child {
    border-bottom: 0;
}

.profile-fact__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--pku-orange);
    box-shadow: 0 4px 14px rgba(0, 73, 78, .07);
}

.profile-fact div > span {
    display: block;
    margin-bottom: 3px;
    color: var(--text-muted);
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
}

.profile-fact strong {
    display: block;
    color: var(--text-dark);
    font-size: .84rem;
}

.profile-stat-band {
    background: var(--pku-green);
}

.profile-stat {
    padding: 34px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    text-align: center;
}

.profile-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
}

.profile-stat span {
    color: rgba(255, 255, 255, .68);
    font-size: .73rem;
}

.profile-timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.profile-timeline::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 117px;
    width: 2px;
    background: var(--border-color);
    content: '';
}

.profile-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 92px 24px minmax(0, 1fr);
    column-gap: 14px;
    padding-bottom: 34px;
}

.profile-timeline__item::before {
    position: absolute;
    top: 8px;
    left: 111px;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--pku-orange);
    box-shadow: 0 0 0 2px var(--pku-orange);
    content: '';
}

.profile-timeline__item > div {
    grid-column: 3;
}

.profile-timeline__year {
    grid-column: 1;
    padding-top: 1px;
    color: var(--pku-green);
    font-size: .82rem;
    font-weight: 800;
    text-align: right;
}

.profile-timeline__item h3 {
    margin-bottom: 7px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 800;
}

.profile-timeline__item p {
    max-width: 690px;
    margin: 0;
    font-size: .8rem;
    line-height: 1.7;
}

.profile-vision {
    background: linear-gradient(180deg, #fff 0%, var(--pku-green-soft) 100%);
}

.vision-card {
    height: 100%;
    padding: 38px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.vision-card--primary {
    position: relative;
    overflow: hidden;
    border: 0;
    background: var(--pku-green);
}

.vision-card--primary::after {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(255,255,255,.05);
    border-radius: 50%;
    content: '';
}

.vision-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 15px;
    background: var(--pku-orange-soft);
    color: var(--pku-orange);
    font-size: 1.4rem;
}

.vision-card--primary .vision-card__icon {
    background: rgba(255,255,255,.12);
    color: #ffad60;
}

.vision-card h2 {
    position: relative;
    z-index: 1;
    color: var(--pku-green);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.25;
}

.vision-card--primary h2 {
    color: #fff;
}

.vision-card--primary p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.68) !important;
    line-height: 1.75;
}

.mission-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #425c5e;
    font-size: .81rem;
    line-height: 1.65;
}

.mission-list li > span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border-radius: 8px;
    background: var(--pku-green-soft);
    color: var(--pku-green);
    font-size: .7rem;
    font-weight: 800;
}

.bravo-card {
    height: 100%;
    padding: 24px 20px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: rgba(255,255,255,.9);
    text-align: center;
}

.bravo-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    place-items: center;
    border-radius: 14px;
    background: var(--pku-orange);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}

.bravo-card h3 {
    color: var(--pku-green);
    font-size: .9rem;
    font-weight: 800;
}

.bravo-card p {
    margin: 0;
    font-size: .72rem;
    line-height: 1.65;
}

.profile-service-group {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    transition: .25s ease;
}

.profile-service-group:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.profile-service-group__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 15px;
    background: var(--pku-green-soft);
    color: var(--pku-green);
    font-size: 1.35rem;
}

.profile-service-group h3 {
    margin-bottom: 18px;
    color: var(--pku-green);
    font-size: 1rem;
    font-weight: 800;
}

.profile-service-group ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-service-group li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--text-muted);
    font-size: .77rem;
}

.profile-service-group li i {
    color: var(--pku-orange);
}

.accreditation-panel {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.accreditation-panel__photo img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.accreditation-panel__content {
    padding: 36px;
}

.accreditation-panel__content h2 {
    margin-bottom: 16px;
    color: var(--pku-green);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.accreditation-panel__content p {
    font-size: .8rem;
    line-height: 1.75;
}

.accreditation-validity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--pku-orange-soft);
    color: var(--pku-orange-dark);
    font-size: .72rem;
    font-weight: 800;
}

.accreditation-panel__certificate {
    display: grid;
    padding: 22px;
    place-items: center;
    background: #fbfaf5;
}

.accreditation-panel__certificate img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.profile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
    border-radius: 22px;
    background: var(--pku-green);
}

.profile-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.profile-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.68) !important;
    font-size: .83rem;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: var(--pku-green-dark);
    color: rgba(255,255,255,.76);
}

.site-footer::before {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
    content: '';
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.35;
}

.site-footer p {
    color: rgba(255,255,255,.64) !important;
    font-size: 0.79rem;
    line-height: 1.8;
}

.footer-title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,.66);
    font-size: 0.77rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    gap: 11px;
    margin-bottom: 14px;
    font-size: 0.77rem;
    line-height: 1.6;
}

.footer-contact i {
    color: #ff9b3d;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: .2s ease;
}

.footer-social a:hover {
    border-color: var(--pku-orange);
    background: var(--pku-orange);
}

.footer-bottom {
    position: relative;
    margin-top: 54px;
    padding: 21px 0;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.48);
    font-size: 0.7rem;
}

/* Modal */
.announcement-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 34, 37, .28);
}

.announcement-modal .modal-dialog {
    max-width: 430px;
}

.announcement-modal .modal-body {
    padding: 0;
}

.announcement-modal img {
    display: block;
    width: 100%;
    max-height: 68vh;
    object-fit: contain;
    background: #fff;
}

.announcement-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
}

.announcement-modal__footer span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

@media (max-width: 1199.98px) {
    .site-brand {
        min-width: 235px;
    }

    .site-accreditation,
    .emergency-button {
        display: none;
    }

    .site-header .nav-link {
        padding-right: .45rem !important;
        padding-left: .45rem !important;
        font-size: .74rem;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 74px 0;
    }

    .site-header .navbar {
        min-height: 72px;
    }

    .site-brand {
        min-width: 0;
    }

    .site-brand__logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .site-brand__title {
        font-size: .83rem;
    }

    .site-brand__tagline {
        font-size: .56rem;
    }

    .site-header .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: calc(100vh - 90px);
        margin-top: 0;
        padding: 14px max(24px, calc((100vw - 720px) / 2));
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        background: #fff;
        box-shadow: 0 18px 32px rgba(0, 56, 60, .12);
    }

    .site-header .nav-link {
        padding: 10px 6px !important;
        font-size: .82rem;
    }

    .site-header .nav-link::after {
        display: none;
    }

    .company-hero {
        min-height: 610px;
    }

    .company-hero__overlay {
        background: linear-gradient(90deg, rgba(0,44,47,.94), rgba(0,61,65,.72));
    }

    .company-hero__image {
        transform: scale(1.08);
        transform-origin: 55% 50%;
    }

    .company-hero__content {
        padding: 98px 0 138px;
    }

    .quick-access__item {
        min-height: 130px;
    }

    .quick-access .col-lg-3:nth-child(2) .quick-access__item {
        border-right: 0 !important;
    }

    .about-visual {
        min-height: 500px;
        margin-bottom: 30px;
    }

    .contact-panel__content {
        padding: 42px;
    }

    .profile-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 62px 0;
    }

    .section-space-sm {
        padding: 54px 0;
    }

    .site-brand__tagline {
        display: none;
    }

    .site-header .container {
        flex-wrap: nowrap;
    }

    .site-brand {
        width: calc(100% - 50px);
        max-width: calc(100% - 50px);
        overflow: hidden;
    }

    .site-brand__title {
        max-width: 100%;
        overflow: hidden;
        white-space: normal;
    }

    .site-header .navbar-toggler {
        flex: 0 0 42px;
        margin-left: auto;
    }

    .company-hero {
        min-height: 625px;
    }

    .company-hero__image {
        object-position: 60% center;
    }

    .company-hero__overlay {
        background: linear-gradient(90deg, rgba(0,44,47,.95), rgba(0,61,65,.77));
    }

    .company-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 80px 0 140px;
    }

    .company-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 2.45rem);
        overflow-wrap: anywhere;
    }

    .company-hero__lead {
        max-width: 100%;
        font-size: .94rem;
        overflow-wrap: anywhere;
    }

    .company-hero__actions {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .company-hero__actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .quick-access-wrap {
        margin-top: -80px;
    }

    .quick-access__item {
        min-height: 116px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--border-color);
    }

    .quick-access .col-lg-3:last-child .quick-access__item {
        border-bottom: 0;
    }

    .service-total {
        justify-content: flex-start;
    }

    .service-category-summary {
        min-height: 112px;
    }

    .quick-access__item--emergency {
        border-bottom-color: transparent;
    }

    .about-visual {
        min-height: 410px;
    }

    .about-visual__main {
        width: calc(100% - 25px);
        height: 360px;
    }

    .about-visual__badge {
        width: 170px;
        padding: 16px;
        border-width: 6px;
    }

    .about-visual__badge img {
        height: 52px;
    }

    .contact-panel__content {
        padding: 34px 25px;
    }

    .contact-panel iframe {
        min-height: 310px;
    }

    .page-hero {
        min-height: 260px;
    }

    .page-hero__content {
        padding: 65px 20px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .doctor-card__photo {
        height: auto;
    }

    .schedule-clinic-card {
        border-radius: 20px !important;
        box-shadow: 0 10px 28px rgba(0, 56, 60, .07) !important;
    }

    .schedule-clinic-header {
        padding: 20px 18px 16px !important;
        border-bottom: 1px solid var(--border-color) !important;
    }

    .schedule-clinic-header h3 {
        font-size: 1.12rem;
        line-height: 1.3;
    }

    .schedule-table-wrap {
        padding: 12px;
        overflow: visible;
        background: #f3f7f6;
    }

    .schedule-table,
    .schedule-table tbody {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .schedule-table thead {
        display: none;
    }

    .schedule-table tbody {
        display: grid;
        gap: 12px;
    }

    .schedule-table .schedule-doctor {
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        padding: 22px 16px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 5px 16px rgba(0, 56, 60, .05);
    }

    .schedule-table .schedule-doctor > td {
        display: block;
        width: 100%;
        padding: 0 !important;
        border: 0;
        background: transparent;
        box-shadow: none;
        text-align: center;
    }

    .schedule-doctor__photo img,
    .schedule-doctor__photo .doctor-photo-placeholder {
        width: 124px;
        height: 124px;
        border-width: 4px;
    }

    .schedule-doctor__photo .doctor-photo-placeholder i {
        font-size: 3.4rem !important;
    }

    .schedule-doctor__identity {
        margin-top: 14px;
    }

    .schedule-doctor__identity h5 {
        margin-bottom: 7px !important;
        font-size: 1.08rem;
        line-height: 1.35;
    }

    .schedule-doctor__times {
        min-width: 0;
        margin-top: 18px;
    }

    .schedule-slots {
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .schedule-slot {
        width: 100%;
        min-width: 0;
        padding: 9px;
        text-align: left;
    }

    .schedule-slot > span {
        min-width: 0;
        flex-direction: column;
        gap: 2px;
    }

    .schedule-slot small {
        white-space: nowrap;
    }

    .table-responsive {
        border-radius: 14px;
    }

    .profile-stat {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .profile-timeline::before {
        left: 11px;
    }

    .profile-timeline__item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 0 30px 38px;
    }

    .profile-timeline__item::before {
        left: 5px;
    }

    .profile-timeline__item > div {
        grid-column: 1;
    }

    .profile-timeline__year {
        grid-column: 1;
        text-align: left;
    }

    .vision-card {
        padding: 30px 24px;
    }

    .accreditation-panel__photo img {
        min-height: 280px;
    }

    .profile-cta {
        padding: 32px 25px;
    }

    .site-footer {
        padding-top: 58px;
    }
}

@media (max-width: 420px) {
    .schedule-slots {
        grid-template-columns: minmax(0, 1fr);
    }

    .schedule-doctor__photo img,
    .schedule-doctor__photo .doctor-photo-placeholder {
        width: 132px;
        height: 132px;
    }

    .site-brand__title {
        max-width: 205px;
        font-size: .76rem;
    }

    .company-hero h1 {
        font-size: 2.08rem;
    }

    .hero-eyebrow {
        font-size: .62rem;
    }
}
