
/* =========================================================
   RSHD FINAL VISUAL FIX
   File ini dimuat paling akhir agar mengalahkan CSS lama.
   ========================================================= */

html, body {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

/* HEADER */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5edf4;
    position: relative;
    z-index: 100;
}

.site-header .header-container {
    width: min(1180px, 92%);
    min-height: 76px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.site-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-header .brand-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.site-header .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header .brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-header .brand-title {
    color: #123b70;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
}

.site-header .brand-location {
    color: #71859a;
    font-size: 11px;
    line-height: 1.2;
}

/* DESKTOP NAV */

.site-header .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
}

.site-header .nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 10px;
    border-radius: 8px;
    color: #365674;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.site-header .nav-link:hover {
    color: #0860d8;
    background: #eef6ff;
}

.site-header .nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    margin-left: 5px;
    padding: 11px 15px;
    border-radius: 9px;
    color: #ffffff;
    background: #0860d8;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 7px 18px rgba(8,96,216,.18);
}

/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d8e5ef;
    border-radius: 9px;
    background: #ffffff;
    color: #123b70;
    cursor: pointer;
}

/* HERO */

.hero {
    width: 100%;
    min-height: 520px;
    background:
        radial-gradient(circle at 85% 20%, rgba(8,96,216,.10), transparent 25%),
        linear-gradient(135deg, #f5fbff 0%, #eaf7ff 58%, #e8f8f2 100%);
    border-bottom: 1px solid #e1edf5;
}

.hero .hero-container {
    width: min(1180px, 92%);
    min-height: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: 50px;
}

.hero .hero-content {
    width: 100%;
    max-width: 680px;
    padding: 55px 0;
}

.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 30px;
    background: #e6f7ef;
    color: #008e64;
    font-size: 11px;
    font-weight: 800;
}

.hero .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00a86b;
}

.hero h1 {
    margin: 18px 0 17px;
    color: #103a70;
    font-size: clamp(38px, 4.7vw, 60px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #0860d8;
}

.hero .hero-content > p {
    max-width: 610px;
    margin: 0;
    color: #5c748d;
    font-size: 15px;
    line-height: 1.75;
}

.hero .hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.hero .button-primary,
.hero .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 17px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.hero .button-primary {
    color: #ffffff;
    background: #0860d8;
    box-shadow: 0 10px 22px rgba(8,96,216,.18);
}

.hero .button-secondary {
    color: #184774;
    background: #ffffff;
    border: 1px solid #d5e4ef;
}

.hero .hero-information {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.hero .hero-info-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero .hero-info-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #0860d8;
    background: #e8f2ff;
}

.hero .hero-info-item strong,
.hero .hero-info-item span {
    display: block;
}

.hero .hero-info-item strong {
    color: #234b77;
    font-size: 11px;
}

.hero .hero-info-item span {
    margin-top: 2px;
    color: #7b8fa3;
    font-size: 9px;
}

/* HERO CARD */

.hero .hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero .hero-card {
    width: 100%;
    max-width: 410px;
    padding: 17px;
    border: 1px solid #d8e7f1;
    border-radius: 20px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 22px 55px rgba(31,76,113,.13);
}

.hero .hero-card-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 4px 5px 14px;
}

.hero .hero-card-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg,#0860d8,#00a86b);
}

.hero .hero-card-header span {
    display: block;
    color: #8196aa;
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero .hero-card-header strong {
    display: block;
    margin-top: 2px;
    color: #163e70;
    font-size: 16px;
}

.hero .hero-card-list {
    display: grid;
    gap: 7px;
}

.hero .hero-card-list > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    border: 1px solid #e1edf4;
    border-radius: 9px;
    background: #fbfdff;
}

.hero .hero-card-list i {
    color: #00a86b;
}

.hero .hero-card-list span {
    color: #486581;
    font-size: 11px;
    font-weight: 600;
}

.hero .hero-card-footer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 9px;
    padding: 10px 11px;
    border-radius: 9px;
    background: #eef8fc;
    color: #607992;
    font-size: 9px;
    line-height: 1.5;
}

/* MOBILE NAV */

.mobile-nav {
    display: none;
}

@media (max-width: 1050px) {
    .site-header .nav-link {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 11px;
    }

    .site-header .nav-button {
        padding-left: 11px;
        padding-right: 11px;
    }

    .hero .hero-container {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .site-header .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        flex-shrink: 0;
    }

    .mobile-nav {
        width: 100%;
        padding: 5px 4%;
        background: #ffffff;
        border-top: 1px solid #e7eef4;
    }

    .mobile-nav.open {
        display: grid;
    }

    .mobile-nav a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 7px;
        border-bottom: 1px solid #edf2f6;
        color: #365673;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-nav .mobile-register {
        justify-content: center;
        margin: 9px 0;
        border-radius: 9px;
        color: #ffffff;
        background: #0860d8;
    }

    .hero .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 55px 0;
    }

    .hero .hero-content {
        padding: 0;
    }

    .hero .hero-visual {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .site-header .header-container {
        width: calc(100% - 28px);
        min-height: 68px;
    }

    .site-header .brand-logo {
        width: 43px;
        height: 43px;
    }

    .site-header .brand-title {
        font-size: 15px;
    }

    .site-header .brand-location {
        font-size: 9px;
    }

    .hero .hero-container {
        width: calc(100% - 28px);
        padding: 42px 0 48px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .hero .hero-content > p {
        font-size: 14px;
    }

    .hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .button-primary,
    .hero .button-secondary {
        width: 100%;
    }

    .hero .hero-information {
        flex-direction: column;
        gap: 12px;
    }

    .hero .hero-card {
        border-radius: 16px;
    }
}

/* =========================================================
   RSHD INNER PAGES
   Poliklinik | Jadwal Dokter | Daftar Online | Kontak
   ========================================================= */

.page-banner {
    padding: 48px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(8,96,216,.10), transparent 28%),
        linear-gradient(135deg, #f3fbff 0%, #e5f5ff 60%, #e8f8f2 100%);
    border-bottom: 1px solid #deebf4;
}

.page-banner .container {
    position: relative;
}

.page-banner h1 {
    margin: 0 0 10px;
    color: #123b70;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -.8px;
}

.page-banner p {
    max-width: 680px;
    margin: 0;
    color: #5a738e;
    font-size: 15px;
    line-height: 1.7;
}

.content-section {
    padding: 42px 0 70px;
    min-height: 400px;
}

.content-section > .container {
    width: min(1120px, 92%);
}

.info-panel,
.form-card {
    background: #fff;
    border: 1px solid #dce9f3;
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 20px;
    box-shadow: 0 8px 28px rgba(22,73,121,.055);
}

.info-panel h2 {
    margin: 0 0 10px;
    color: #123b70;
    font-size: 22px;
    line-height: 1.3;
}

.info-panel h3 {
    margin: 22px 0 8px;
    color: #174674;
    font-size: 16px;
}

.info-panel p,
.info-panel li {
    color: #5a738e;
    font-size: 14px;
    line-height: 1.75;
}

.info-panel ul {
    padding-left: 20px;
}

.info-panel li {
    margin-bottom: 5px;
}

/* POLIKLINIK */

.poliklinik-grid,
.clinic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.poliklinik-card,
.clinic-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #dce9f3;
    border-radius: 15px;
    box-shadow: 0 7px 24px rgba(22,73,121,.05);
    transition: .22s ease;
}

.poliklinik-card:hover,
.clinic-card:hover {
    transform: translateY(-4px);
    border-color: #b7d6ef;
    box-shadow: 0 16px 35px rgba(22,73,121,.10);
}

.poliklinik-card .icon,
.clinic-card .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 13px;
    color: #0860d8;
    background: #e8f2ff;
    font-size: 22px;
}

.poliklinik-card h3,
.clinic-card h3 {
    margin: 0 0 7px;
    color: #123b70;
    font-size: 16px;
}

.poliklinik-card p,
.clinic-card p {
    margin: 0;
    color: #617b95;
    font-size: 13px;
    line-height: 1.65;
}

/* JADWAL DOKTER */

.search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.search-row input {
    width: 100%;
    max-width: 500px;
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid #cbddea;
    border-radius: 10px;
    outline: none;
    color: #234b77;
    background: #fff;
    font-size: 14px;
    transition: .2s ease;
}

.search-row input:focus {
    border-color: #0860d8;
    box-shadow: 0 0 0 3px rgba(8,96,216,.09);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid #dce9f3;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(22,73,121,.05);
}

.table-wrap table {
    min-width: 650px;
    border-collapse: collapse;
}

.table-wrap th {
    padding: 15px 18px;
    background: #edf7fd;
    color: #123b70;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

.table-wrap td {
    padding: 15px 18px;
    border-bottom: 1px solid #e8f0f6;
    color: #58718f;
    font-size: 13px;
    vertical-align: middle;
}

.table-wrap tr:last-child td {
    border-bottom: 0;
}

.table-wrap tbody tr:hover {
    background: #f8fcff;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e5f8ed;
    color: #008e64;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

/* DAFTAR ONLINE */

.form-section {
    max-width: 780px;
    margin: 0 auto;
}

.form-card {
    display: grid;
    gap: 17px;
}

.form-card label {
    display: grid;
    gap: 7px;
    color: #234b77;
    font-size: 13px;
    font-weight: 700;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #cbddea;
    border-radius: 10px;
    outline: none;
    color: #234b77;
    background: #fff;
    font-size: 14px;
    transition: .2s ease;
}

.form-card textarea {
    min-height: 100px;
    resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: #0860d8;
    box-shadow: 0 0 0 3px rgba(8,96,216,.09);
}

.form-card button {
    justify-self: start;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: #0860d8;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(8,96,216,.17);
    transition: .2s ease;
}

.form-card button:hover {
    background: #0753b8;
    transform: translateY(-1px);
}

.warning-box {
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid #f1d38b;
    border-radius: 12px;
    color: #735719;
    background: #fff8e5;
    font-size: 13px;
    line-height: 1.6;
}

/* KONTAK */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-grid .info-panel {
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid #e8f0f6;
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    border-radius: 10px;
    color: #0860d8;
    background: #e8f2ff;
}

.contact-item strong {
    display: block;
    margin-bottom: 3px;
    color: #123b70;
    font-size: 13px;
}

.contact-item span,
.contact-item a {
    color: #5c7691;
    font-size: 13px;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #0860d8;
}

.map-placeholder {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed #a9c7dc;
    border-radius: 15px;
    background: linear-gradient(135deg,#e6f4fb,#f7fcff);
    color: #38688e;
    text-align: center;
}

.map-placeholder span {
    font-size: 45px;
    color: #0860d8;
}

.map-placeholder p {
    margin: 0;
    font-size: 13px;
}

/* MOBILE */

@media (max-width: 900px) {
    .poliklinik-grid,
    .clinic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-banner {
        padding: 36px 0;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 14px;
    }

    .content-section {
        padding: 30px 0 50px;
    }

    .info-panel,
    .form-card {
        padding: 20px;
        border-radius: 13px;
    }

    .poliklinik-grid,
    .clinic-grid {
        grid-template-columns: 1fr;
    }

    .search-row {
        display: block;
    }

    .search-row input {
        max-width: 100%;
    }

    .form-card button {
        width: 100%;
    }

    .map-placeholder {
        min-height: 220px;
    }
}


/* =========================================================
   RSHD INNER PAGES
   Poliklinik - Jadwal - Daftar - Kontak
   ========================================================= */

/* PAGE BANNER */

.page-banner {
    position: relative;
    overflow: hidden;
    padding: 58px 0 55px;
    background:
        radial-gradient(circle at 88% 15%, rgba(8,96,216,.11), transparent 25%),
        linear-gradient(135deg, #f5fbff 0%, #eaf7ff 60%, #e9f8f2 100%);
    border-bottom: 1px solid #e0edf5;
}

.page-banner::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(8,96,216,.07);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner .eyebrow {
    margin: 0 0 9px;
    color: #008e64;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.page-banner h1 {
    margin: 0;
    color: #103a70;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.page-banner p:last-child {
    max-width: 650px;
    margin: 12px 0 0;
    color: #607991;
    font-size: 14px;
    line-height: 1.7;
}


/* CONTENT */

.content-section {
    padding-top: 42px;
    padding-bottom: 65px;
}


/* SEARCH */

.search-row {
    position: relative;
    margin-bottom: 17px;
}

.search-row::before {
    content: "\f002";
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #8aa0b5;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    pointer-events: none;
}

.search-row input {
    width: 100%;
    height: 50px;
    padding: 0 18px 0 46px;
    border: 1px solid #d9e7f0;
    border-radius: 11px;
    outline: none;
    color: #234b77;
    background: #ffffff;
    font-size: 13px;
    box-shadow: 0 7px 22px rgba(22,73,121,.045);
    transition: .2s ease;
}

.search-row input::placeholder {
    color: #9aabba;
}

.search-row input:focus {
    border-color: #7db4e9;
    box-shadow: 0 0 0 4px rgba(8,96,216,.07);
}


/* TABLE */

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dfeaf2;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22,73,121,.06);
}

.table-wrap table {
    width: 100%;
    min-width: 680px;
    border-collapse: separate;
    border-spacing: 0;
}

.table-wrap thead th {
    padding: 15px 17px;
    border-bottom: 1px solid #dce8f1;
    color: #45637e;
    background: #f5f9fc;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    text-align: left;
    text-transform: uppercase;
}

.table-wrap thead th:first-child {
    border-top-left-radius: 15px;
}

.table-wrap thead th:last-child {
    border-top-right-radius: 15px;
}

.table-wrap tbody td {
    padding: 16px 17px;
    border-bottom: 1px solid #edf2f6;
    color: #526c84;
    font-size: 12px;
    line-height: 1.5;
    vertical-align: middle;
}

.table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

.table-wrap tbody tr {
    transition: .15s ease;
}

.table-wrap tbody tr:hover {
    background: #f8fbfe;
}

.table-wrap tbody td:first-child {
    color: #173f70;
    font-weight: 750;
}


/* ACTION LINK */

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 7px;
    color: #0860d8;
    background: #edf5ff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.text-link:hover {
    color: #ffffff;
    background: #0860d8;
}


/* STATUS */

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #9a6811;
    background: #fff6df;
    font-size: 10px;
    font-weight: 750;
}

.status-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e2a52b;
}


/* NOTE */

.note {
    margin: 13px 2px 0;
    padding: 12px 14px;
    border-left: 3px solid #9bc6eb;
    border-radius: 0 8px 8px 0;
    color: #71879b;
    background: #f4f9fd;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   PENDAFTARAN
   ========================================================= */

.form-section {
    max-width: 820px;
}

.warning-box {
    display: flex;
    gap: 11px;
    margin-bottom: 18px;
    padding: 15px 17px;
    border: 1px solid #f0dca7;
    border-radius: 12px;
    color: #7d641f;
    background: #fff9e9;
    font-size: 11px;
    line-height: 1.65;
}

.warning-box::before {
    content: "\f071";
    flex: 0 0 auto;
    color: #d49b22;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
}

.form-card {
    padding: 27px;
    border: 1px solid #dfeaf2;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(22,73,121,.07);
}

.form-card label {
    display: block;
    margin-bottom: 6px;
    color: #365673;
    font-size: 11px;
    font-weight: 750;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d8e5ee;
    border-radius: 9px;
    outline: none;
    color: #345672;
    background: #fbfdff;
    font: inherit;
    font-size: 12px;
    transition: .2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: #7db4e9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(8,96,216,.06);
}

.form-card textarea {
    min-height: 105px;
    resize: vertical;
}

.form-card .form-group {
    margin-bottom: 17px;
}

.form-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.form-card .btn-primary {
    color: #ffffff;
    background: #0860d8;
    box-shadow: 0 9px 20px rgba(8,96,216,.18);
}


/* =========================================================
   KONTAK
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 20px;
}

.info-panel {
    padding: 25px;
    border: 1px solid #dfeaf2;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22,73,121,.06);
}

.info-panel h2 {
    margin: 0 0 19px;
    color: #173f70;
    font-size: 21px;
}

.info-item {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #edf2f6;
}

.info-item:last-child {
    border-bottom: 0;
}

.info-item i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #0860d8;
    background: #edf5ff;
}

.info-item strong {
    display: block;
    margin-bottom: 3px;
    color: #45637e;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-item span,
.info-item a {
    color: #607991;
    font-size: 12px;
    line-height: 1.55;
    text-decoration: none;
}

.map-placeholder {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: hidden;
    position: relative;
    border: 1px solid #dfeaf2;
    border-radius: 16px;
    background:
        linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.72)),
        repeating-linear-gradient(
            45deg,
            #e8f1f6,
            #e8f1f6 10px,
            #f4f8fa 10px,
            #f4f8fa 20px
        );
    box-shadow: 0 10px 30px rgba(22,73,121,.06);
}

.map-placeholder::before {
    content: "\f3c5";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-65px);
    color: #0860d8;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 42px;
    filter: drop-shadow(0 7px 9px rgba(8,96,216,.18));
}

.map-placeholder > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .page-banner {
        padding: 42px 0 40px;
    }

    .page-banner h1 {
        font-size: 34px;
    }

    .content-section {
        padding-top: 28px;
        padding-bottom: 45px;
    }

    .table-wrap {
        border-radius: 11px;
    }

    .form-card {
        padding: 19px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 280px;
    }
}

@media (max-width: 480px) {

    .page-banner h1 {
        font-size: 30px;
    }

    .page-banner p:last-child {
        font-size: 13px;
    }

    .warning-box {
        font-size: 10px;
    }

    .form-card {
        padding: 16px;
    }

    .info-panel {
        padding: 19px;
    }
}


/* =========================================
   POLIKLINIK SERVICES
   ========================================= */

.poli-services {
  padding-top: 48px;
  padding-bottom: 70px;
}

.poli-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.poli-section-head h2 {
  margin: 5px 0 8px;
  color: #063b70;
  font-size: 28px;
}

.poli-section-head p {
  margin: 0;
  color: #64748b;
}

.poli-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.poli-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #d9e5f2;
  border-radius: 18px;
  background: #fff;
  color: #063b70;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 67, 112, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.poli-card:hover {
  transform: translateY(-3px);
  border-color: #1683c7;
  box-shadow: 0 14px 30px rgba(15, 67, 112, 0.12);
}

.poli-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef7ff;
  font-size: 22px;
}

.poli-info-box {
  margin-top: 34px;
  padding: 26px;
  border-radius: 18px;
  background: #f1f8ff;
  border: 1px solid #d7eafa;
}

.poli-info-box strong {
  display: block;
  color: #063b70;
  font-size: 20px;
  margin-bottom: 7px;
}

.poli-info-box p {
  margin: 0;
  color: #64748b;
}

.poli-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .poli-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poli-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .poli-grid {
    grid-template-columns: 1fr;
  }

  .poli-card {
    min-height: 72px;
  }

  .poli-info-actions {
    flex-direction: column;
  }

  .poli-info-actions .btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================================
   POLIKLINIK SERVICES
   ========================================= */

.poli-services {
  padding-top: 48px;
  padding-bottom: 70px;
}

.poli-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.poli-section-head h2 {
  margin: 5px 0 8px;
  color: #063b70;
  font-size: 28px;
}

.poli-section-head p {
  margin: 0;
  color: #64748b;
}

.poli-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.poli-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #d9e5f2;
  border-radius: 18px;
  background: #fff;
  color: #063b70;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 67, 112, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.poli-card:hover {
  transform: translateY(-3px);
  border-color: #1683c7;
  box-shadow: 0 14px 30px rgba(15, 67, 112, 0.12);
}

.poli-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef7ff;
  font-size: 22px;
}

.poli-info-box {
  margin-top: 34px;
  padding: 26px;
  border-radius: 18px;
  background: #f1f8ff;
  border: 1px solid #d7eafa;
}

.poli-info-box strong {
  display: block;
  color: #063b70;
  font-size: 20px;
  margin-bottom: 7px;
}

.poli-info-box p {
  margin: 0;
  color: #64748b;
}

.poli-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .poli-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poli-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .poli-grid {
    grid-template-columns: 1fr;
  }

  .poli-card {
    min-height: 72px;
  }

  .poli-info-actions {
    flex-direction: column;
  }

  .poli-info-actions .btn {
    width: 100%;
    text-align: center;
  }
}

