body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background: #f8fafc;
}

.container {
    max-width: 1140px;
}

/* NAVBAR */
.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.navbar-brand {
    display: flex;
    align-items: center;

    padding-right: 14px;
    margin-right: 18px;

    border-right: 1px solid #e5e7eb;
}

.brand-logo {
    width: 42px;
    height: auto;
}

.navbar-brand span {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937 !important;
}

.navbar-nav {
    gap: 2px;
}

.navbar .nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;

    font-size: 15px;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #7B1E3A;
}

/* HERO */
.hero-carousel {
    position: relative;
}

.hero-slide {
    height: 720px;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(70, 10, 25, 0.88) 0%,
        rgba(123, 30, 58, 0.72) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 720px;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.hero-content .btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

/* COLOR */
.bg-maroon {
    background: #7B1E3A !important;
}

.btn-maroon {
    background: #7B1E3A;
    border-color: #7B1E3A;
    color: #ffffff;
}

.btn-maroon:hover {
    background: #65152f;
    border-color: #65152f;
    color: #ffffff;
}

/* STATS */
.stats-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    background: linear-gradient(135deg, #7B1E3A 0%, #5C1028 100%);
}

.stats-section h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-section p {
    font-size: 18px;
    margin-bottom: 0;
}

/* SERVICE */
.service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 35px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 52px;
    color: #7B1E3A;
}

.service-card h5 {
    margin-top: 20px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 24px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 20px;
    margin-top: 80px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #d1d5db;
    line-height: 1.9;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-slide {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .navbar-brand span {
        font-size: 22px;
    }

    .brand-logo {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 520px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .service-card {
        padding: 30px;
    }

    .stats-section h2 {
        font-size: 32px;
    }

    .stats-section p {
        margin-bottom: 25px;
    }
}

/* DROPDOWN MENU */

.dropdown-menu {
    border: none;
    border-radius: 14px;

    padding: 10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: 10px;

    font-weight: 500;

    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #7B1E3A;
    color: #ffffff;
}

.dropdown-toggle::after {
    margin-left: 6px;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    gap: 8px;
}

.latest-news-section {
    background: #f8fafc;
}

.news-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.news-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.news-body {
    padding: 28px;
}

.news-body h5 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 14px;
    color: #1f2937;
}

.news-body p {
    color: #6b7280;
    line-height: 1.8;
}

.read-more {
    color: #7B1E3A;
    font-weight: 700;
    text-decoration: none;
}

.read-more:hover {
    color: #65152f;
}

.maps-section {
    background: #ffffff;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.06);
}

.contact-info-card p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #4b5563;
}

.text-maroon {
    color: #7B1E3A;
}

.maps-wrapper {
    overflow: hidden;
    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);
}



.maps-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 22px;
}

.page-header{
    background: linear-gradient(
        135deg,
        #7B1E3A,
        #5e1028
    );

    padding:35px 0 30px;

    color:#ffffff;
}

.page-header h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:8px;
}

.page-header p{
    font-size:16px;
    margin-bottom:0;
    opacity:0.9;
}

.page-header .badge{
    margin-bottom:10px !important;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
}

.page-header p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.9;
}

.article-content {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
}

.article-content p {
    margin-bottom: 20px;
}

.gallery-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;

    transition:0.3s;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    height:100%;
}

.gallery-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.12);
}

.gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;

    transition:0.4s;
}

.gallery-card:hover .gallery-img{
    transform:scale(1.05);
}

.gallery-body{
    padding:18px;
}

.gallery-body h6{
    margin:0;
    font-weight:600;
    color:#1f2937;
    line-height:1.5;
}

.contact-info,
.contact-form{
    background:#ffffff;
    padding:40px;
    border-radius:24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    height:100%;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.contact-item i{
    width:55px;
    height:55px;

    background:#7B1E3A;
    color:#ffffff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}

.contact-item h6{
    margin-bottom:6px;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:#6b7280;
}

.contact-form label{
    font-weight:600;
    margin-bottom:8px;
}

.contact-form .form-control{
    border-radius:14px;
    padding:14px 16px;
    border:1px solid #d1d5db;
}

.contact-form .form-control:focus{
    border-color:#7B1E3A;
    box-shadow:none;
}

.map-section iframe{
    display:block;
}

.profile-content {
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
}

.profile-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.profile-icon {
    width: 64px;
    height: 64px;
    background: #7B1E3A;
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.profile-card h4 {
    font-weight: 700;
    margin-bottom: 16px;
}

.profile-card p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 0;
}

.org-chart {
    text-align: center;
}

.org-level {
    display: flex;
    justify-content: center;
}

.org-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.org-director {
    max-width: 420px;
    border-top: 5px solid #7B1E3A;
}

.org-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f3e8ed;
    color: #7B1E3A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 48px;
}

.org-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-card h5 {
    font-size: 15px;
    color: #7B1E3A;
    font-weight: 700;
    margin-bottom: 10px;
}

.org-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.org-card p {
    color: #6b7280;
    margin-bottom: 0;
}

.org-line {
    width: 2px;
    height: 55px;
    background: #7B1E3A;
    margin: 0 auto 25px;
}

.employee-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 22px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.employee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.employee-photo {
    width: 125px;
    height: 125px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #f3e8ed;
    color: #7B1E3A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 52px;
}

.employee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-body h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.employee-nip {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.employee-position {
    display: inline-block;
    background: #7B1E3A;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.employee-unit {
    color: #6b7280;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 0;
}

.employee-filter{
    background:#ffffff;

    padding:28px;

    border-radius:24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    border:
        1px solid rgba(0,0,0,0.04);
}

.employee-filter .form-select{
    height:52px;

    border-radius:14px;

    border:
        1px solid #d1d5db;
}

.employee-filter .form-select:focus{
    border-color:#7B1E3A;

    box-shadow:none;
}

.schedule-filter {
    background: #ffffff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.schedule-filter .form-select {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
}

.schedule-filter .form-select:focus {
    border-color: #7B1E3A;
    box-shadow: none;
}

.schedule-table thead {
    background: #f9fafb;
}

.schedule-table th {
    color: #1f2937;
    font-weight: 700;
}

.schedule-table td {
    color: #4b5563;
}

.bed-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.bed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.bed-icon {
    width: 64px;
    height: 64px;
    background: #7B1E3A;
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.bed-card h4 {
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.bed-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bed-info div {
    background: #f9fafb;
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.bed-info span {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.bed-info strong {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
}

.bed-progress .progress {
    height: 12px;
    border-radius: 20px;
    background: #f3e8ed;
}

.bed-progress .progress-bar {
    background: #7B1E3A;
    border-radius: 20px;
}

.tariff-table thead {
    background: #f9fafb;
}

.tariff-table th {
    color: #1f2937;
    font-weight: 700;
}

.tariff-table td {
    color: #4b5563;
    padding-top: 18px;
    padding-bottom: 18px;
}

.tariff-price {
    display: inline-block;
    background: #f3e8ed;
    color: #7B1E3A;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
}