/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

:root {
    /* Brand Colors (Blue & Orange Identity) */
    --primary-orange: #F68048; /* ORANGE */
    --primary-orange-hover: #FF9B6A; /* LIGHT ORANGE */
    --primary-purple: #0C2D5A; /* NAVY */
    --primary-purple-hover: #1A2CA3; /* BLUE */
    --primary-blue: #2845D6; /* LIGHTER BLUE */
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC; 
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1; 
    --gray-300: #94A3B8;
    --gray-400: #64748B; 
    --gray-500: #475569;
    --gray-600: #334155; 
    --gray-700: #1E293B;
    --gray-800: #0F172A;
    --gray-900: #020617;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-card: 0 12px 30px rgba(0,0,0,0.06);
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --container-width: 1200px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

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

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

input, select, textarea {
    font-family: inherit;
}

/* ================== REUSABLE ================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px; /* Pill shape for premium feel */
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(42, 140, 187, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 140, 187, 0.4);
    color: var(--white);
}

/* COE section: reduce bottom padding to minimize white gap above quick-links */
#center-of-excellence { padding-bottom: 5rem; }

/* Service Card Styles for Center of Excellence */
.service-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
}

.service-card-title {
    color: var(--primary-purple);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem 0.35rem;
    margin: 0;
}

.service-card-desc {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.55;
    padding: 0 1.25rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.service-card .btn-more {
    align-self: flex-start;
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    margin: 1rem 1.25rem 1.25rem;
}

/* Service Detail Page */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

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

.btn-secondary:hover {
    background-color: var(--primary-purple-hover);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Typography headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.2;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--gray-50);
}

.text-center { text-align: center; }

.section-header {
    margin-bottom: 3.5rem;
}

.section-header .subtitle {
    display: block;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.section-header .desc {
    max-width: 600px;
    color: var(--gray-500);
    margin: 0 auto;
    font-size: 1.1rem;
}

.align-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.align-between .desc { margin: 0; }

/* ================== TOPBAR ================== */
.topbar {
    background-color: #0C2D5A;
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1010;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
}

.topbar-pill:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.topbar-pill.pill-green {
    background-color: #25D366; /* WhatsApp Green */
}

.topbar-pill.pill-green:hover {
    background-color: #128C7E;
}

.topbar-pill.pill-red {
    background-color: #C0392B; /* Deep Red */
}

.topbar-pill.pill-red:hover {
    background-color: #E74C3C;
}

.topbar-pill.pill-orange-custom {
    background-color: var(--primary-orange);
}

.topbar-pill.pill-orange-custom:hover {
    background-color: var(--primary-orange-hover);
}

@keyframes ugd-blink {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

/* ================== HEADER / NAVBAR ================== */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.25rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 80px;
    transition: var(--transition-normal);
}

.header-wide, .topbar-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.header.scrolled .header-inner {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-purple);
    line-height: 1.1;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.65rem;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.65rem;
    right: 0.65rem;
    width: auto;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition-normal);
    transform: scaleX(0);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-purple);
}

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

/* Action buttons group */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-daftar {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.desktop-only { display: flex !important; }
.mobile-only { display: none !important; }
.mobile-only-flex { display: none !important; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Animate to X when open */
.menu-toggle.is-open .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.is-open .burger-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .desktop-topbar { display: none !important; }
    .mobile-topbar { display: flex !important; }
    .mobile-only-flex { display: flex !important; }
    
    .topbar-inner { justify-content: flex-end; }
    .topbar-pill-text { display: none !important; }
    .topbar-pill {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        padding: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    .topbar-pill-icon { margin: 0 !important; }
    
    .header-inner {
        position: relative;
        justify-content: space-between;
    }
    .logo {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 !important;
    }
    .mobile-header-right { margin-left: auto; }
}

/* ================== HERO SECTION ================== */
.hero-section {
    position: relative;
    padding: 3rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallax */
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
    .hero-section {
        overflow: hidden;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Flat semi-transparent white overlay */
    background: rgba(255, 255, 255, 0.75);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    color: #091E3A;
    max-width: 650px;
    text-align: left;
    margin: 0;
    padding: 3rem 0 4rem 0;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(12, 45, 90, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(12, 45, 90, 0.15);
    color: #091E3A;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #091E3A;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.25rem;
    color: #091E3A;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn-outline {
    border-color: rgba(9, 30, 58, 0.25);
    color: #091E3A;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(9, 30, 58, 0.35);
    color: #091E3A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================== QUICK ACTION FORM ================== */
.quick-action-wrapper {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.quick-action-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.quick-search-form {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 1.5rem;
    align-items: flex-end;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--gray-700);
    background-color: var(--gray-50);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(42, 140, 187, 0.15);
}

.form-action {
    display: flex;
    align-items: flex-end;
}
.form-action button { height: 48px; border-radius: 8px;}

/* ================== SERVICES GRID ================== */
#pelayanan { padding-top: 12rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.services-grid .service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.services-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-orange);
}

.services-grid .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-grid .service-card:hover .service-image img {
    transform: scale(1.05);
}

.services-grid .service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-grid .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 700;
}

.services-grid .service-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
    flex: 1;
}

.services-grid .service-link {
    font-weight: 600;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    margin-top: auto;
}

.services-grid .service-link:hover {
    color: var(--primary-purple);
    gap: 0.5rem;
}

/* ================== UNGGULAN GRID (COE) ================== */
.unggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.unggulan-grid-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.unggulan-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-orange);
}

.unggulan-grid-item .service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.unggulan-grid-item .service-card-title {
    padding: 1.25rem 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: var(--font-heading);
}

.unggulan-grid-item .service-card-desc {
    padding: 0.5rem 1.25rem 0;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.unggulan-grid-item .btn-more {
    margin: 1rem 1.25rem 1.25rem;
    align-self: flex-start;
}

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

@media (max-width: 768px) {
    .unggulan-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ================== PROMO BANNER ================== */
.promo-box {
    background: #0C2D5A;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.promo-content {
    flex: 1;
    padding: 4rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.promo-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 450px;
}

.promo-image {
    flex: 1;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================== NEWS ================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

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

.news-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    display: block;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 0.95rem;
}

.news-link:hover { color: var(--primary-orange); }

/* ================== QUICK LINKS STRIP ================== */
body {
    /* padding-bottom removed to fix white space below footer */
}

/* Quick Links: always fixed at bottom, hides near footer */
.quick-links-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.quick-links-strip.hidden-strip {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.ql-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    color: var(--white);
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ql-item:hover { color: var(--white); opacity: 0.9; }

.ql-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ql-icon i {
    color: var(--white);
    width: 18px;
    height: 18px;
}

.ql-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ql-content h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.ql-content p {
    font-size: 0.7rem;
    opacity: 0.85;
    margin: 0;
    color: var(--white);
    line-height: 1.2;
}

.ql-badge {
    background-color: #d13030;
    color: var(--white);
    font-size: 0.55rem;
    padding: 0.1rem 0.35rem;
    border-radius: 50px;
    font-weight: 800;
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
}

/* Mobile quick links: compact icon-only */
@media (max-width: 768px) {
    .ql-item {
        flex-direction: column;
        padding: 0.6rem 0.25rem;
        gap: 0.2rem;
    }
    .ql-icon {
        width: 30px;
        height: 30px;
        background: rgba(255,255,255,0.15);
    }
    .ql-icon i {
        width: 15px;
        height: 15px;
    }
    .ql-content h4 {
        font-size: 0.6rem;
        text-align: center;
    }
    .ql-content p {
        display: none;
    }
    .ql-content {
        align-items: center;
    }
    .ql-badge {
        font-size: 0.45rem;
        padding: 0.08rem 0.25rem;
        top: 0.15rem;
        right: 0.15rem;
    }
}

.c-bg-1 { background-color: #0C2D5A; } /* Navy Dark */
.c-bg-2 { background-color: #1B4F8A; } /* Blue Medium */
.c-bg-3 { background-color: #2A8CBB; } /* Teal/Tosca */
.c-bg-4 { background-color: #E8811A; } /* Orange/Amber */

/* ================== FOOTER ================== */
.footer {
    background-color: #0C2D5A; /* Match c-bg-1 (Jadwal Dokter card) */
    color: var(--gray-300);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-list i, .contact-list svg {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.contact-list span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ================== FLOATING BUTTONS ================== */
.float-ugd {
    display: none; /* Hidden on desktop */
}

.float-wa {
    display: block;
    position: fixed;
    bottom: 140px;
    right: 30px;
    z-index: 1005;
    transition: 0.3s;
    border-radius: 50%;
    overflow: visible;
}

.float-wa:hover {
    transform: translateY(-5px) scale(1.05);
}

.float-wa img {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

@keyframes strobe-ambulance {
    0%, 100% { background-color: #b92424; box-shadow: 0 0 0px #d13030; }
    20% { background-color: #ff3b3b; box-shadow: 0 0 25px 10px rgba(255, 59, 59, 0.8); }
    40% { background-color: #b92424; box-shadow: 0 0 0px #d13030; }
    60% { background-color: #ff3b3b; box-shadow: 0 0 25px 10px rgba(255, 59, 59, 0.8); }
    80% { background-color: #b92424; box-shadow: 0 0 0px #d13030; }
}

.ugd-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.ugd-text {
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 0 1.5rem 0 0.5rem;
    letter-spacing: 0.5px;
}

.topbar-ugd i {
    color: white;
}

/* ================== UGD NAVBAR BUTTON (RED + BLINK) ================== */
.btn-ugd-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d13030;
    color: white;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: ugd-blink 1.2s infinite;
    transform: translateZ(0);
    text-decoration: none;
}
.btn-ugd-nav i { flex-shrink: 0; }
.btn-ugd-nav:hover { color: white; }

@keyframes ugd-blink {
    0%, 100% { background-color: #b92424; box-shadow: 0 0 0px #d13030; }
    25% { background-color: #ff3b3b; box-shadow: 0 0 18px 6px rgba(255, 59, 59, 0.6); }
    50% { background-color: #b92424; box-shadow: 0 0 0px #d13030; }
    75% { background-color: #ff3b3b; box-shadow: 0 0 18px 6px rgba(255, 59, 59, 0.6); }
}

/* Old UGD styles - keep for floating button */
.btn-top-ugd { display: none; }

/* ================== DROPDOWN MENUS ================== */
.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 200;
    border: 1px solid var(--gray-100);
}
.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: 0.15s;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: rgba(42,140,187,0.08);
    color: var(--primary-orange);
}
.dropdown-menu li a i {
    width: 18px;
    height: 18px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* Dokter dropdown - scrollable specialization list */
.dropdown-dokter {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-200) transparent;
}
.dropdown-dokter::-webkit-scrollbar {
    width: 5px;
}
.dropdown-dokter::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-dokter::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 10px;
}
.dropdown-dokter::-webkit-scrollbar-thumb:hover {
    background: var(--gray-300);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 0.35rem 0.5rem;
}

.dropdown-viewall {
    font-weight: 600 !important;
    color: var(--primary-purple) !important;
    background: rgba(12, 45, 90, 0.04) !important;
    border-radius: 8px !important;
}
.dropdown-viewall:hover {
    background: var(--primary-purple) !important;
    color: var(--white) !important;
}
.dropdown-viewall:hover i {
    color: var(--white) !important;
}

/* ================== DOKTER / JADWAL PAGE ================== */
.dokter-page-header {
    background: var(--primary-purple);
    padding: 2rem 0 1.5rem;
}
.dokter-page-header .subtitle {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.dokter-page-header .subtitle i { color: var(--primary-orange); }
.dokter-page-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.dokter-section { padding-top: 2rem; padding-bottom: 4rem; }

.dokter-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* --- Sidebar --- */
.dokter-sidebar {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
    overflow: hidden;
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sidebar-close {
    display: none;
    background: none;
    color: var(--gray-500);
    padding: 0.25rem;
}
.sidebar-body {
    max-height: 65vh;
    overflow-y: auto;
    padding: 0.5rem 0;
}
.sidebar-body::-webkit-scrollbar { width: 4px; }
.sidebar-body::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.spesialis-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}
.spesialis-item:hover {
    background: var(--gray-50);
    color: var(--primary-purple);
}
.spesialis-item.active {
    background: rgba(12, 45, 90, 0.04);
    color: var(--primary-purple);
    font-weight: 700;
    border-left-color: var(--primary-purple);
}
.spesialis-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 0.5rem;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
}
.spesialis-item.active .spesialis-count {
    background: var(--primary-purple);
    color: var(--white);
}

/* --- Search Bar --- */
.dokter-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}
.search-icon {
    color: var(--gray-400);
    flex-shrink: 0;
    margin-right: 0.75rem;
}
.dokter-search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--gray-700);
    background: transparent;
}
.dokter-search-input::placeholder { color: var(--gray-300); }
.search-clear {
    color: var(--gray-400);
    padding: 0.25rem;
    flex-shrink: 0;
}
.search-clear:hover { color: var(--gray-700); }

/* --- Active Filters --- */
.active-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.filter-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
}
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(12, 45, 90, 0.08);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.filter-tag:hover {
    background: var(--primary-purple);
    color: var(--white);
}
.filter-tag i { width: 12px; height: 12px; }

.result-count {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

/* --- Doctor Cards Grid --- */
.dokter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.dokter-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.dokter-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
    border-color: var(--primary-orange);
}

.dokter-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.dokter-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gray-100);
}
.dokter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dokter-info { min-width: 0; }
.dokter-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 0.2rem;
    word-wrap: break-word;
}
.dokter-poli {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-orange);
}

/* --- Schedule Toggle --- */
.dokter-schedule-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    border-top: 1px solid var(--gray-100);
}
.dokter-schedule-toggle span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.toggle-arrow {
    transition: transform 0.2s ease;
}

.dokter-schedule-detail {
    padding: 0 0 0.75rem;
}
.schedule-detail-table {
    width: 100%;
    border-collapse: collapse;
}
.schedule-detail-table td {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    vertical-align: middle;
}
.sched-day {
    font-weight: 600;
    color: var(--gray-700);
    width: 70px;
}
.sched-time {
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.sched-time i { color: var(--gray-300); }
.sched-shift { text-align: right; }

.shift-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.shift-pagi { background: #FFF3E0; color: #E65100; }
.shift-siang { background: #E8F5E9; color: #2E7D32; }
.shift-sore { background: #E3F2FD; color: #1565C0; }
.shift-malam { background: #EDE7F6; color: #4527A0; }

/* --- Profil Button --- */
.btn-lihat-profil {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--primary-purple);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: auto;
    font-family: var(--font-body);
}
.btn-lihat-profil:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

/* --- Hari Practice Badges --- */
.dokter-hari-praktek {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}
.hari-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(12, 45, 90, 0.06);
    color: var(--primary-purple);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* --- Mobile Filter FAB --- */
.fab-filter {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
    box-shadow: 0 4px 20px rgba(12, 45, 90, 0.35);
    z-index: 90;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fab-filter:hover { transform: translateX(-50%) scale(1.05); }

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.open {
    display: block;
    opacity: 1;
}

/* --- Profile Modal --- */
.profil-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.profil-modal-overlay.open {
    display: block;
    opacity: 1;
}

.profil-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    z-index: 1001;
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.3s ease;
}
.profil-modal.open {
    display: grid;
    grid-template-columns: 260px 1fr;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.profil-modal-left {
    background: linear-gradient(180deg, #f0f4ff 0%, #e8ecf8 100%);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.profil-modal-header-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profil-modal-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profil-modal-foto {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 1.25rem;
}
.profil-modal-nama {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}
.profil-modal-poli {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1.25rem;
}
.profil-modal-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}
.meta-item i { color: var(--primary-purple); flex-shrink: 0; }

.profil-modal-right {
    padding: 2rem;
    overflow-y: auto;
    max-height: 85vh;
    position: relative;
}
.profil-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gray-50);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
}
.profil-modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}
.modal-section-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modal-section-title i { color: var(--primary-purple); }
.modal-hospital {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.modal-hospital i { color: var(--gray-400); }

.modal-schedule-list { margin-bottom: 1rem; }
.modal-schedule-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.modal-schedule-row:last-child { border-bottom: none; }
.ms-day {
    font-weight: 600;
    color: var(--gray-700);
    width: 70px;
    font-size: 0.85rem;
}
.ms-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    flex: 1;
}
.ms-shift { flex-shrink: 0; }

/* Booking Konsultasi - outline button */
.btn-modal-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: var(--white);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-fast);
    text-decoration: none;
}
.btn-modal-booking:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: scale(1.02);
}

/* WhatsApp CS - green button */
.btn-modal-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: #25D366;
    color: var(--white);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-fast);
    text-decoration: none;
}
.btn-modal-wa:hover {
    background: #1EB954;
    color: var(--white);
    transform: scale(1.02);
}

/* --- Dokter Page Responsive --- */
@media (max-width: 1200px) {
    .dokter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .dokter-layout {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 768px) {
    .dokter-page-header h1 { font-size: 1.5rem; }
    
    .dokter-layout {
        grid-template-columns: 1fr;
    }
    
    .dokter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        border-radius: 0;
        z-index: 999;
        transition: left 0.3s ease;
    }
    .dokter-sidebar.open {
        left: 0;
    }
    .sidebar-close {
        display: flex;
    }
    .sidebar-body {
        max-height: calc(100vh - 60px);
    }
    
    .fab-filter {
        display: flex;
    }
    
    .dokter-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modal mobile */
    .profil-modal.open {
        grid-template-columns: 1fr;
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }
    .profil-modal-left {
        flex-direction: column;
        padding: 1.5rem;
        text-align: left;
        align-items: flex-start;
        overflow-y: auto;
        max-height: 45vh;
    }
    .profil-modal-header-mobile {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .profil-modal-title {
        align-items: flex-start;
    }
    .profil-modal-edu {
        width: 100%;
        margin-top: 1rem !important;
    }
    .profil-modal-foto {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }
    .profil-modal-nama { font-size: 1rem; }
    .profil-modal-meta { display: none; }
    .profil-modal-right {
        max-height: 55vh;
        padding: 1.25rem;
    }
}

/* ================== NEW PAGE STYLES ================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}
.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}
.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-align: justify;
}
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.vm-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
}
.vm-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}
/* Removed duplicate vm-card typography styles to consolidate below */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.contact-card-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}
.cc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.cc-icon i { width: 24px; height: 24px; }
.cc-icon.orange { background: rgba(42,140,187,0.1); color: var(--primary-orange); }
.cc-icon.purple { background: rgba(12,45,90,0.08); color: var(--primary-purple); }
.contact-card-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}
.contact-card-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Social links in footer */
.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: 0.2s;
}
.social-links a:hover { background: var(--primary-orange); }
.social-links a i { width: 16px; height: 16px; }


/* ================== PAGE HERO ================== */
.page-hero {
    background: #0C2D5A;
    color: white;
    padding: 3rem 0 2.5rem;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}
.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 600px;
}

/* Breadcrumb Bar - replaces page-hero */
.breadcrumb-bar {
    background: var(--primary-purple);
    padding: 1.25rem 0;
}

.breadcrumb-bar .breadcrumb-nav {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb-bar .breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-bar .breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-bar .breadcrumb-nav span {
    color: white;
    font-weight: 600;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav span { color: white; font-weight: 600; }

/* (Old doctor card/filter styles removed - replaced by new Dokter Page styles above) */



/* ================== ASURANSI & REKANAN PAGE ================== */
.asuransi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.asuransi-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.asuransi-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.asuransi-card img {
    width: 100%;
    max-width: 120px;
    height: 60px;
    object-fit: contain;
}
.asuransi-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
}

/* ================== RAWAT INAP / KAMAR PAGE ==================  */
.kamar-intro {
    padding-bottom: 1.5rem;
    background-color: #fef9e7;
}
.kamar-intro-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(12, 45, 90, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-purple);
}
.kamar-intro-icon i { width: 28px; height: 28px; }
.kamar-intro .subtitle {
    display: block;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.kamar-intro-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
}
.kamar-intro-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.text-center { text-align: center; }

.section-title-center {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* --- Kapasitas Grid (2 columns) --- */
.kamar-kapasitas { padding-top: 2rem; padding-bottom: 2rem; }

.kapasitas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.kapasitas-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    transition: var(--transition-fast);
}
.kapasitas-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}
.kapasitas-nama {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
}
.kapasitas-jumlah {
    color: var(--primary-orange);
    font-size: 0.9rem;
}
.kapasitas-jumlah strong {
    font-size: 1.25rem;
    font-weight: 800;
    margin-right: 0.25rem;
}
.kapasitas-jumlah small {
    font-size: 0.8rem;
    font-weight: 500;
}

/* --- Total Badge --- */
.kapasitas-total-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    background: var(--primary-orange);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}
.ktb-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}
.ktb-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.15rem;
}
.ktb-sub {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
}

/* --- Fasilitas Kelas Kamar --- */
.kamar-fasilitas { padding-bottom: 2rem; background-color: #fef9e7; }
.kamar-fasilitas-desc {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.kamar-fasilitas-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.kamar-fasilitas-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.kamar-fasilitas-card.reverse {
    direction: rtl;
}
.kamar-fasilitas-card.reverse > * {
    direction: ltr;
}

.kf-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.kf-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.kf-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.4rem 1rem;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.kf-beds {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 0.35rem 0.85rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.kf-content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kf-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}
.kf-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.kf-availability {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.kfa-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
}
.kfa-item.available {
    background: #e8f5e9;
    color: #2e7d32;
}
.kfa-item.used {
    background: #fff3e0;
    color: #e65100;
}

.kf-fas-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.6rem;
}
.kf-fas-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.kf-fas-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}
.kf-fas-list li i {
    color: #2e7d32;
    flex-shrink: 0;
}

/* --- Detail Room Toggle --- */
.kf-detail-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--primary-purple);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-fast);
}
.kf-detail-toggle:hover {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}
.kf-detail-toggle .toggle-arrow {
    transition: transform 0.2s ease;
    margin-left: auto;
}

.kf-detail-rooms {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 10px;
}
.kf-room-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
}
.kf-room-row:last-child { border-bottom: none; }
.kfr-name {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--gray-700);
    min-width: 120px;
}
.kfr-name i { color: var(--gray-400); }
.kfr-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}
.kfr-bar-track {
    width: 80px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}
.kfr-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}
.kfr-bar-fill.ok { background: #2ecc71; }
.kfr-bar-fill.warning { background: #f39c12; }
.kfr-bar-fill.full { background: #e74c3c; }
.kfr-nums {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.8rem;
    min-width: 35px;
    text-align: center;
}
.kfr-avail {
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
}
.kfr-avail.has { background: #e8f5e9; color: #2e7d32; }
.kfr-avail.none { background: #ffebee; color: #c62828; }

/* --- Kamar Responsive --- */
@media (max-width: 768px) {
    .kamar-intro-title { font-size: 1.75rem; }
    .kamar-intro-desc { font-size: 0.9rem; }
    
    .kapasitas-grid { grid-template-columns: 1fr; }
    .kapasitas-card { padding: 0.85rem 1rem; }
    .kapasitas-nama { font-size: 0.9rem; }
    
    .kamar-fasilitas-card,
    .kamar-fasilitas-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 0;
    }
    .kf-image img { height: 240px; }
    .kf-content h3 { font-size: 1.2rem; }
    
    .kfr-bar-track { display: none; }
}

.refresh-note {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ================== ARTICLE DETAIL ================== */
.article-detail { padding-top: 2rem; }

.article-main {
    max-width: 800px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.article-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.article-cover {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.article-cover img { width: 100%; height: auto; }

.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.quill-content h1, .quill-content h2, .quill-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--gray-900);
}
.quill-content p { margin-bottom: 1em; }
.quill-content ul, .quill-content ol { margin-left: 1.5em; margin-bottom: 1em; }
.quill-content ul { list-style-type: disc; }
.quill-content ol { list-style-type: decimal; }
.quill-content li { margin-bottom: 0.25em; }
.quill-content a { color: var(--primary-orange); text-decoration: underline; }
.quill-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; }
.quill-content blockquote { border-left: 4px solid var(--gray-200); padding-left: 1em; color: var(--gray-500); font-style: italic; margin: 1em 0; }
.quill-content .ql-align-center { text-align: center; }
.quill-content .ql-align-right { text-align: right; }
.quill-content .ql-align-justify { text-align: justify; }

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-100);
    margin-top: 2rem;
}
.article-share span { font-weight: 600; font-size: 0.9rem; }

.share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.share-btn i { width: 18px; height: 18px; }
.share-btn.whatsapp { background: #25D366; color: white; }
.share-btn.facebook { background: #1877F2; color: white; }
.share-btn.twitter { background: #1DA1F2; color: white; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.share-btn.tiktok { background: #000000; color: white; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.related-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gray-100);
}
.related-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-purple);
}

/* ================== TAG FILTER ================== */
.tag-filter {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.tag-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    transition: var(--transition-fast);
}
.tag-pill:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.tag-pill.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

/* ================== PAGINATION ================== */
.pagination-wrapper { margin-top: 2.5rem; display: flex; justify-content: center; }
.pagination-nav { display: flex; gap: 0.5rem; }
.page-link {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-fast);
}
.page-link:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.page-link.active { background: var(--primary-orange); border-color: var(--primary-orange); color: white; }
.page-link.disabled { opacity: 0.3; cursor: default; }

/* ================== EMPTY STATE ================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}
.empty-state h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--gray-500);
}
.empty-state p { color: var(--gray-400); }

.mt-4 { margin-top: 1rem; }

/* ================== RESPONSIVE - TABLET & DESKTOP-ON-PHONE ================== */
@media (max-width: 1024px) {
    /* --- Layout --- */
    .quick-search-form { grid-template-columns: 1fr; }
    /* body padding-bottom removed */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }

    /* --- Topbar --- */
    .topbar { 
        display: block;
        padding: 0.5rem 0;
        position: relative;
        z-index: 1;
    }
    .topbar-left { display: none; }
    .topbar-right { 
        justify-content: flex-end;
        width: 100%;
        gap: 0.4rem;
    }
    .topbar-pill {
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .topbar-pill i, .topbar-pill svg {
        margin: 0;
        width: 15px !important;
        height: 15px !important;
    }

    /* --- Header / Hamburger Nav --- */
    .header { top: 0; }

    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .nav-buttons { display: none !important; }

    .header-inner { justify-content: space-between; gap: 0.5rem; }

    .logo { gap: 8px; max-width: calc(100% - 50px); }
    .logo img { width: 35px !important; height: 35px !important; flex-shrink: 0; }
    .logo-text { flex: 1; min-width: 0; width: 100%; }
    .logo-title { font-size: 0.9rem; white-space: normal; line-height: 1.2; word-wrap: break-word; }
    .logo-subtitle { font-size: 0.55rem; white-space: normal; line-height: 1.2; letter-spacing: 0; word-wrap: break-word; }

    .menu-toggle { 
        display: flex; 
        position: relative;
        z-index: 1100;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        height: auto;
        max-height: calc(100vh - 60px);
        background: var(--white);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 0 1.5rem 90px; /* Space for bottom nav */
        gap: 0;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        border-top: 1px solid var(--gray-100);
        z-index: 950;
        overflow-y: auto;
    }

    .header.scrolled .nav-menu { top: 0; }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--gray-50);
        color: var(--gray-700);
        font-weight: 500;
    }

    .nav-link::after {
        display: none !important;
    }

    /* --- Hero --- */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem; /* push text higher consistently */
        padding-bottom: 90px; /* space for quick links */
    }
    .hero-title { font-size: 2.25rem; }
    .hero-desc { font-size: 1rem; }
    .hero-content {
        min-height: calc(100vh - 6rem);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-bottom: 5rem; /* Ensure space above bottom nav on very small screens */
    }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    .quick-action-wrapper {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 3rem;
        width: 100%;
        z-index: 4;
    }
    
    .quick-search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* --- Dropdown on mobile/tablet --- */
    .has-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        display: none;
        background: transparent;
    }
    .has-dropdown.active-dropdown .dropdown-menu {
        display: block;
        transform: none;
    }
    .has-dropdown.active-dropdown > .nav-link svg {
        transform: rotate(180deg);
    }
    .has-dropdown > .nav-link svg {
        transition: transform 0.3s ease;
    }
    .dropdown-menu li a {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* ================== RESPONSIVE - MOBILE ================== */
@media (max-width: 768px) {
    /* quick-links mobile styles are centralized in the main .quick-links-strip section */

    .float-wa { bottom: 85px; right: 15px; }
    .float-wa img { width: 55px; height: 55px; }

    .float-ugd {
        display: flex;
        position: fixed;
        bottom: 140px;
        right: 15px;
        z-index: 1005;
        align-items: center;
        background-color: #d13030;
        border-radius: 50px;
        text-decoration: none;
        overflow: hidden;
        animation: strobe-ambulance 1.2s infinite;
        transform: translateZ(0);
    }
    .ugd-icon { width: 44px; height: 44px; }
    .ugd-icon svg { width: 20px; height: 20px; }
    .ugd-text {
        font-size: 0.85rem;
        font-weight: 600;
        color: white;
        padding: 0 1rem 0 0.5rem;
        white-space: nowrap;
    }

    #pelayanan { padding-top: 4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .promo-box { flex-direction: column; }
    .promo-image { height: 300px; clip-path: none; }
    .promo-content { padding: 2.5rem; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header .title { font-size: 2rem; }
    .align-between { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }

    /* Page-specific */
    .filter-form { grid-template-columns: 1fr; }
    .room-summary-strip { grid-template-columns: 1fr; }
    .room-grid { grid-template-columns: 1fr; }
    .room-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .room-stats { justify-content: flex-start; width: 100%; }
    .page-hero h1 { font-size: 1.75rem; }
    .article-title { font-size: 1.75rem; }
    .about-grid { grid-template-columns: 1fr; }
    .vision-mission { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
}

/* ================== SELAYANG PANDANG ================== */
.selayang-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.selayang-content .section-header {
    margin-bottom: 1.5rem;
}

.selayang-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-600);
}

.selayang-image {
    position: relative;
}

.selayang-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-lg);
}

.selayang-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.year-badge {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.year-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

/* SPORTIF Values - Landing Page */
.sportif-values {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.sportif-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: var(--transition-normal);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.sportif-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-orange);
}

.sportif-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.sportif-icon i {
    width: 24px;
    height: 24px;
}

.sportif-text h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 0.5px;
}

/* ================== VIDEO PROFIL ================== */
.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(12, 45, 90, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* ================== TENTANG PAGE - MOTTO & TUJUAN ================== */
.motto-tujuan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.motto-card, .tujuan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.motto-card:hover, .tujuan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.motto-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.motto-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.motto-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1.3;
}

.tujuan-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Visi Misi - Enhanced */
.vm-card-visi, .vm-card-misi {
    position: relative;
    padding: 2rem;
    border: 1px solid var(--gray-100);
}

.vm-icon-header {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-orange), #FF9B6A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-card p, .vm-card ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 0;
    text-align: justify;
}

.vm-card ul {
    padding-left: 0;
}

.vm-card li {
    margin-bottom: 0.85rem;
}

.nilai-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.nilai-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    width: calc(25% - 1.15rem);
}

.nilai-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-orange);
}

.nilai-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1.25rem;
}

.nilai-icon i {
    width: 28px;
    height: 28px;
}

.nilai-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.nilai-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
}


/* ================== BUDAYA RS ================== */
.budaya-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.budaya-strip-secondary {
    margin-bottom: 0;
}

.budaya-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: 16px;
    color: var(--white);
    transition: var(--transition-normal);
    min-width: 120px;
}

.budaya-item.secondary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

.budaya-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 45, 90, 0.2);
}

.budaya-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.budaya-icon i {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.budaya-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ================== FOOTER 3-COLUMN ================== */
.footer-3col {
    grid-template-columns: 1.2fr 0.8fr 1.5fr !important;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.footer-logo-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-logo-box .footer-logo-row {
    margin-bottom: 0;
}

.footer-logo-box .logo-title {
    color: var(--primary-purple) !important;
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-logo-box .logo-subtitle {
    color: var(--gray-500) !important;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-map iframe {
    opacity: 0.85;
    transition: var(--transition-normal);
}

.footer-map iframe:hover {
    opacity: 1;
}

/* ================== SOCIAL MEDIA ICONS ================== */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.socmed-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.socmed-link:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

/* Ensure icons are white by default */
.socmed-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

/* Hover: white icon on all socmed links */
.socmed-link:hover .socmed-icon { filter: brightness(0) invert(1); }

/* Footer slogan */
.footer-slogan {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    opacity: 0.9;
}

.unggulan-slide {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    min-width: 0;
}

/* ================== RESPONSIVE ADDITIONS ================== */
@media (max-width: 1024px) {
    .unggulan-slide {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
    
    .sportif-values {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .selayang-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .motto-tujuan-grid {
        grid-template-columns: 1fr;
    }
    
    .nilai-card {
        width: 100%;
    }
    
    .footer-3col {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .unggulan-slider-wrapper {
        padding: 0 10px;
        gap: 0;
    }

    .unggulan-slider {
        padding: 0;
        border-radius: 12px;
    }

    .unggulan-track {
        gap: 0;
    }

    .unggulan-slide {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        box-shadow: none;
    }

    .slider-nav {
        display: none;
    }

    .services-hero {
        height: 280px;
        border-radius: 12px;
    }

    .services-hero-overlay {
        padding: 1.25rem;
    }

    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-desc {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .sportif-values {
        grid-template-columns: 1fr 1fr;
    }
    .sportif-item:last-child {
        grid-column: span 2;
    }
    
    .selayang-badge {
        bottom: -15px;
        left: -10px;
        padding: 1rem 1.25rem;
    }
    
    .year-number {
        font-size: 1.5rem;
    }

    .motto-text {
        font-size: 1.35rem;
    }
    
    .nilai-card {
        width: 100%;
    }
    
    .budaya-strip {
        gap: 0.75rem;
    }
    
    .budaya-item {
        padding: 1rem 1.25rem;
        min-width: 100px;
    }
    
    .budaya-item span {
        font-size: 0.7rem;
    }
    
    .footer-3col {
        grid-template-columns: 1fr !important;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .video-wrapper iframe {
        border-radius: 12px;
    }
}

/* ================== SMOOTH SCROLL TARGET ================== */
#center-of-excellence {
    padding-top: 2rem;
    padding-bottom: 5rem;
    scroll-margin-top: 100px;
}

/* ================== SERVICES HERO ================== */
.services-hero {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.services-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.services-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.services-hero-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.services-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
}

/* ================== SLIDER NAV (UNGGULAN) ================== */
.slider-prev { left: -24px; }
.slider-next { right: -24px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* ================== NAVBAR WIDE LAYOUT ================== */
.header-wide {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3.5rem;
    height: 80px;
    transition: var(--transition-normal);
}

.header.scrolled .header-wide {
    height: 70px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-title-big {
    font-size: 1.3rem !important;
    letter-spacing: -0.3px;
}

/* Desktop topbar icon circles */
.topbar-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topbar-pill.pill-orange-custom {
    background-color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
}

.topbar-pill.pill-orange-custom:hover {
    background-color: var(--primary-orange-hover);
}

/* ================== MOBILE NAVBAR ================== */
.mobile-header-right {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================== TOPBAR RESPONSIVE ================== */
/* Desktop: pills aligned right per mockup */
.topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.topbar-pill-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.topbar-blink {
    animation: ugd-blink 1.2s infinite;
}

/* ================== MOBILE-SPECIFIC RESPONSIVE ================== */
@media (max-width: 1024px) {
    .header-wide, .hero-container {
        padding: 0 1rem;
    }

    .topbar-inner {
        padding: 0.45rem 1.5rem;
    }
}

@media (max-width: 768px) {
    /* ===== TOPBAR MOBILE: circle icons, no text ===== */
    .topbar {
        padding: 0.35rem 0;
    }

    .topbar-inner {
        justify-content: flex-end;
        gap: 0.5rem;
        padding: 0.25rem 1rem;
    }

    .topbar-pill {
        width: 32px;
        height: 32px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .topbar-pill-icon {
        width: 15px;
        height: 15px;
        margin: 0;
    }

    .topbar-pill-text {
        display: none;
    }

    /* ===== NAVBAR MOBILE ===== */
    .header-wide {
        justify-content: space-between;
        height: 60px;
        padding: 0 1rem;
    }

    .nav-buttons {
        display: none !important;
    }

    .mobile-header-right {
        display: flex;
    }

    .menu-toggle {
        display: flex !important;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-title {
        font-size: 0.7rem !important;
    }

    .logo-title-big {
        font-size: 0.95rem !important;
    }

    .logo-subtitle {
        display: none;
    }

    /* ===== HERO MOBILE: center ===== */
    .hero-section {
        align-items: center;
    }

    .hero-content-wrapper {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-title {
        font-size: 2.25rem !important;
        font-weight: 800 !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.2;
    }

    .hero-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 0.95rem !important;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 380px !important;
        justify-content: center !important;
    }

    .badge {
        text-align: center;
        font-size: 0.8rem;
    }

    /* Quick action form */
    .quick-search-form {
        grid-template-columns: 1fr;
    }

    /* Slider */
    .unggulan-slide {
        min-width: 100%;
    }

    .slider-prev, .slider-next { display: none !important; }

    /* quick-links mobile styles centralized — see main section */

    #center-of-excellence {
        padding-bottom: 5rem;
    }
}

#center-of-excellence .section-header {
    margin-bottom: 1.5rem;
}

/* ===== DESKTOP HERO: left-aligned, sejajar logo ===== */
@media (min-width: 769px) {
    .hero-content-wrapper {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        padding-top: 3rem !important;
    }

    .hero-title {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .hero-desc {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .hero-buttons {
        justify-content: flex-start !important;
    }
}

/* ================== HERO STATS COUNTER ================== */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 3;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .hero-stat {
        align-items: center;
        text-align: center;
    }
    .hero-stat-number {
        font-size: 1.6rem;
    }
    .hero-stat-label {
        font-size: 0.75rem;
    }
}

/* ================== QUICK SERVICE CARDS ================== */
.quick-service-section {
    position: relative;
    z-index: 5;
    margin-top: -2rem;
    padding-bottom: 0;
}

.quick-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.qs-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 1.25rem;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    color: white;
}

.qs-card.qs-orange {
    background: linear-gradient(135deg, #F68048, #FF9B6A);
}

.qs-card.qs-amber {
    background: linear-gradient(135deg, #E8811A, #F5A623);
}

.qs-card.qs-teal {
    background: linear-gradient(135deg, #2A8CBB, #3DB8E8);
}

.qs-card.qs-gradient {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
}

.qs-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qs-icon i {
    width: 22px;
    height: 22px;
    color: white;
}

.qs-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.15rem;
    line-height: 1.2;
}

.qs-text p {
    font-size: 0.75rem;
    opacity: 0.9;
    margin: 0;
    color: white;
    line-height: 1.3;
}

.qs-arrow {
    width: 18px;
    height: 18px;
    color: white;
    opacity: 0.7;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.qs-card:hover .qs-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.qs-badge-new {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #d13030;
    color: white;
    font-size: 0.6rem;
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .quick-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-service-section {
        margin-top: -1.5rem;
    }
}

@media (max-width: 768px) {
    .quick-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    .qs-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }
    .qs-arrow {
        display: none;
    }
    .qs-text h4 {
        font-size: 0.85rem;
    }
    .qs-text p {
        font-size: 0.7rem;
    }
    .quick-service-section {
        margin-top: -1rem;
    }
}

/* ================== SELAYANG PANDANG FLIPPED ================== */
.selayang-grid-flipped {
    grid-template-columns: 0.8fr 1.2fr;
}

@media (max-width: 1024px) {
    .selayang-grid-flipped {
        grid-template-columns: 1fr;
    }
}

/* Selayang Value Items (like Waron about section) */
.selayang-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.selayang-value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.sv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(12, 45, 90, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-purple);
}

.sv-icon i {
    width: 22px;
    height: 22px;
}

.sv-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 0 0.25rem;
}

.sv-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ================== TOPBAR ADDRESS STYLING ================== */
.topbar-left {
    font-size: 0.8rem;
    opacity: 0.9;
    color: white;
    white-space: nowrap;
}

.topbar-left span {
    font-weight: 400;
}

@media (max-width: 1024px) {
    .topbar-left {
        display: none !important;
    }
}

/* ================== FASILITAS PAGE ================== */
.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.fasilitas-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.fasilitas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.fasilitas-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.fasilitas-card-icon i,
.fasilitas-card-icon svg {
    width: 26px;
    height: 26px;
}
.fasilitas-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}
.fasilitas-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.fasilitas-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    transition: gap 0.2s;
    margin-top: auto;
}
.fasilitas-link:hover {
    gap: 0.7rem;
}

@media (max-width: 1024px) {
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .fasilitas-grid {
        grid-template-columns: 1fr;
    }
}

