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

:root {
    --primary: #887528;
    --secondary: #f9f9f9;
    --accent: #fdb913;
    --text: #333;
    --background-light: #fffbe0;
    --background-white: #fff;
    --nav-bg: #766b41;
    --nav-hover: #887528;
    --submenu-bg: #e6f0ff;
    --submenu-hover: #cde2ff;
    --footer-bg: #887528;
    --footer-text: white;
    --contact-box-bg: #fffbe0;
    --contact-box-border: #887528;
    --tooltip-bg: #887528;
    --tooltip-text: #fff;
    --carousel-button-bg: rgba(0, 0, 0, 0.5);
    --carousel-button-hover: rgba(0, 0, 0, 0.8);
    --lightbox-bg: rgba(0, 0, 0, 0.9);
    --lightbox-close-btn: white;
    --lightbox-close-btn-hover: #bbb;
    --hero-boxed-bg: #fff;
    --hero-boxed-border: #887528;
    --program-item-bg: #fffbe0;
    --program-item-border: #887528;
    --profil-box-bg: white;
    --profil-box-border: #887528;
    --struktur-box-bg: white;
    --struktur-box-border: #887528;
    --fasilitas-item-border: #887528;
    --highlight-card-bg: var(--background-white);
    --highlight-card-border: #e0e0e0;
    --highlight-card-shadow: rgba(0, 0, 0, 0.08);
    --highlight-card-hover-shadow: rgba(0, 0, 0, 0.15);

    --lightbox-nav-bg: rgba(255, 255, 255, 0.2);
    --lightbox-nav-hover: rgba(255, 255, 255, 0.4);
    --lightbox-preview-border: #ccc;
    --lightbox-preview-active-border: var(--primary);
}

body[data-theme="dark"] {
    --primary: #fdb913;
    --secondary: #1a1a1a;
    --accent: #887528;
    --text: #e0e0e0;
    --background-light: #1a1a1a;
    --background-white: #1a1a1a;
    --nav-bg: #333;
    --nav-hover: #fdb913;
    --submenu-bg: #2a2a2a;
    --submenu-hover: #3a3a3a;
    --footer-bg: #333;
    --contact-box-bg: #2a2a2a;
    --contact-box-border: #fdb913;
    --tooltip-bg: #fdb913;
    --tooltip-text: #333;
    --carousel-button-bg: rgba(255, 255, 255, 0.3);
    --carousel-button-hover: rgba(255, 255, 255, 0.5);
    --lightbox-bg: rgba(0, 0, 0, 0.9);
    --lightbox-close-btn: #e0e0e0;
    --lightbox-close-btn-hover: #aaa;
    --hero-boxed-bg: #2a2a2a;
    --hero-boxed-border: #fdb913;
    --program-item-bg: #2a2a2a;
    --program-item-border: #fdb913;
    --profil-box-bg: #2a2a2a;
    --profil-box-border: #fdb913;
    --struktur-box-bg: #2a2a2a;
    --struktur-box-border: #fdb913;
    --fasilitas-item-border: #fdb913;
    --highlight-card-bg: #2a2a2a;
    --highlight-card-border: #444;
    --highlight-card-shadow: rgba(0, 0, 0, 0.2);
    --highlight-card-hover-shadow: rgba(0, 0, 0, 0.35);
    --lightbox-nav-bg: rgba(0, 0, 0, 0.3);
    --lightbox-nav-hover: rgba(0, 0, 0, 0.5);
    --lightbox-preview-border: #555;
    --lightbox-preview-active-border: var(--primary);
}

body[data-theme="dark"] .container {
    background-color: var(--secondary);
}


html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--secondary);
    color: var(--text);
    height: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

header {
    background: var(--primary);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    font-weight: 300;
}

nav {
    background: var(--nav-bg);
}

.highlight {
    text-align: center;
    padding: 3rem 1rem;
}

.highlight h3 {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1rem auto;
    max-width: 1200px;
}

.grid div {
    background: var(--highlight-card-bg);
    padding: 2rem;
    border: 1px solid var(--highlight-card-border);
    border-radius: 12px;
    box-shadow: 0 6px 15px var(--highlight-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--highlight-card-hover-shadow);
}

.grid div h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.grid div p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.grid div .icon-placeholder {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: white;
}


section {
    margin-bottom: 2rem;
}

section h3 {
    color: var(--primary);
}

.cta {
    text-align: center;
}

.cta a {
    color: var(--primary);
    font-weight: bold;
    text-decoration: underline;
}

.cta h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.cta-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--nav-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-text {
    flex: 1 1 300px;
}

.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.boxed {
    border: 2px solid var(--hero-boxed-border);
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--hero-boxed-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
}

.info {
    text-align: center;
    padding: 3rem 1rem;
    background-color: var(--background-light);
}

.info h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.info h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.program-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--background-white);
    border: 1px solid var(--highlight-card-border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.program-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.program-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.program-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.2rem;
    }

    .program-item img {
        width: 80px;
        height: 80px;
    }

    .program-item span {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .info h3 {
        font-size: 2rem;
    }

    .program-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .program-item img {
        width: 70px;
        height: 70px;
    }

    .program-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .info h3 {
        font-size: 1.8rem;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .program-item {
        padding: 1rem 0.5rem;
    }

    .program-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }

    .program-item span {
        font-size: 0.85rem;
    }
}

body[data-theme="dark"] .info {
    background-color: var(--secondary);
}

body[data-theme="dark"] .program-item {
    background: var(--highlight-card-bg);
    border-color: var(--highlight-card-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .program-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

body[data-theme="dark"] .program-item span {
    color: var(--text);
}

.contact {
    text-align: center;
    padding: 4rem 1rem;
    background-color: rgba(255, 255, 255, 0);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid var(--contact-box-border);
    border-radius: 15px;
    background-color: var(--background-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-box h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-box h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-address {
    font-size: 1rem;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item img {
    width: 48px;
    height: 48px;
    transition: filter 0.3s ease;
}

.contact-item a:hover img {
    filter: brightness(1.2);
}

.tooltip {
    visibility: hidden;
    background-color: var(--tooltip-bg);
    color: var(--tooltip-text);
    text-align: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item:hover .tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 135%;
}

.social-media-call-to-action {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
}

.responsive-map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.responsive-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.info-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 300px;
}

.info-overlay h2 {
    color: #e63946;
    margin-bottom: 8px;
    font-weight: bold;
}

.info-overlay p {
    margin-bottom: 4px;
    font-size: 14px;
}

.logo {
    height: 30px;
    margin-bottom: 10px;
}

body[data-theme="dark"] .contact {
    background-color: var(--secondary);
}

body[data-theme="dark"] .contact-box {
    background-color: var(--highlight-card-bg);
    border-color: var(--contact-box-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .contact-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .contact-box h2 {
    color: var(--primary);
}

body[data-theme="dark"] .contact-description,
body[data-theme="dark"] .contact-address {
    color: var(--text);
}

body[data-theme="dark"] .social-media-call-to-action {
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0.5rem;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .contact-box h2 {
        font-size: 2.2rem;
    }

    .contact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-icons {
        gap: 1.5rem;
    }

    .contact-item img {
        width: 40px;
        height: 40px;
    }

    .tooltip {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .social-media-call-to-action {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-box {
        padding: 1.5rem 1rem;
    }

    .contact-box h2 {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-icons {
        gap: 1rem;
    }

    .contact-item img {
        width: 36px;
        height: 36px;
    }

    .tooltip {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .social-media-call-to-action {
        font-size: 0.9rem;
    }
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--carousel-button-bg);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--carousel-button-hover);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--lightbox-bg);
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.85);
    transition: opacity 0.3s ease;
}

.lightbox-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-bottom: 20px;
}

.lightbox-content {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: red;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lightbox-nav:hover {
    background-color: var(--lightbox-nav-hover);
}

.lightbox-nav.prev {
    left: 10px;
}

.lightbox-nav.next {
    right: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--lightbox-close-btn);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--lightbox-close-btn-hover);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-preview-container {
    width: 100%;
    max-width: 900px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    /* -webkit-overflow-scrolling: touch;
    scrollbar-width: none; */
    /* -ms-overflow-style: none; */
}

.lightbox-preview-container::-webkit-scrollbar {
    display: none;
}

.lightbox-preview-carousel {
    display: inline-flex;
    gap: 10px;
    padding: 5px;
}


.lightbox-preview-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid var(--lightbox-preview-border);
    transition: border-color 0.3s, transform 0.2s;
}

.lightbox-preview-thumbnail:hover {
    transform: scale(1.05);
}

.lightbox-preview-thumbnail.active {
    border-color: var(--lightbox-preview-active-border);
    box-shadow: 0 0 5px var(--lightbox-preview-active-border);
}


.profil-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}

.profil-box {
    background: var(--profil-box-bg);
    border: 1px solid var(--profil-box-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profil-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.profil-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.profil-box h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.profil-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.profil-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.profil-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

.profil-box ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.struktur-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.struktur-box {
    background: var(--struktur-box-bg);
    border: 1px solid var(--struktur-box-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.struktur-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.struktur-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.struktur-box h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.org-image-wrapper {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.org-image {
    max-width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.fasilitas-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.fasilitas-box {
    background: var(--profil-box-bg);
    border: 1px solid var(--profil-box-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.fasilitas-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fasilitas-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.fasilitas-box h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.fasilitas-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text);
}

.fasilitas-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.fasilitas-item {
    background: var(--background-white);
    border: 1px solid var(--fasilitas-item-border);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fasilitas-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fasilitas-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    border: 2px solid var(--fasilitas-item-border);
}

.fasilitas-item span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .profil-section, .struktur-section, .fasilitas-section {
        padding: 3rem 1.5rem;
    }

    .profil-box, .struktur-box, .fasilitas-box {
        padding: 2.5rem;
    }

    .profil-box h2, .struktur-box h2, .fasilitas-box h2 {
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }

    .profil-box p, .fasilitas-box p {
        font-size: 1rem;
    }

    .profil-box ul li {
        font-size: 0.95rem;
    }

    .fasilitas-gallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }

    .fasilitas-item img {
        height: 130px;
    }

    .fasilitas-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .profil-section, .struktur-section, .fasilitas-section {
        padding: 2rem 1rem;
    }

    .profil-box, .struktur-box, .fasilitas-box {
        padding: 2rem;
    }

    .profil-box h2, .struktur-box h2, .fasilitas-box h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .profil-box h2::after, .struktur-box h2::after, .fasilitas-box h2::after {
        width: 60px;
    }

    .profil-box p, .fasilitas-box p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .profil-box ul li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .fasilitas-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .fasilitas-item img {
        height: 110px;
    }

    .fasilitas-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .profil-section, .struktur-section, .fasilitas-section {
        padding: 1.5rem 0.8rem;
    }

    .profil-box, .struktur-box, .fasilitas-box {
        padding: 1.5rem;
    }

    .profil-box h2, .struktur-box h2, .fasilitas-box h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .profil-box h2::after, .struktur-box h2::after, .fasilitas-box h2::after {
        width: 50px;
    }

    .profil-box p, .fasilitas-box p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .profil-box ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        padding-left: 20px;
    }

    .profil-box ul li::before {
        font-size: 0.9rem;
    }

    .fasilitas-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .fasilitas-item {
        padding: 0.8rem;
    }

    .fasilitas-item img {
        height: 90px;
    }

    .fasilitas-item span {
        font-size: 0.85rem;
    }
}

body[data-theme="dark"] .profil-section,
body[data-theme="dark"] .struktur-section,
body[data-theme="dark"] .fasilitas-section {
    background-color: var(--secondary);
}

body[data-theme="dark"] .profil-box,
body[data-theme="dark"] .struktur-box,
body[data-theme="dark"] .fasilitas-box {
    background-color: var(--profil-box-bg);
    border-color: var(--profil-box-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .profil-box:hover,
body[data-theme="dark"] .struktur-box:hover,
body[data-theme="dark"] .fasilitas-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .profil-box h2,
body[data-theme="dark"] .struktur-box h2,
body[data-theme="dark"] .fasilitas-box h2 {
    color: var(--primary);
}

body[data-theme="dark"] .profil-box h2::after,
body[data-theme="dark"] .struktur-box h2::after,
body[data-theme="dark"] .fasilitas-box h2::after {
    background-color: var(--accent);
}

body[data-theme="dark"] .profil-box p,
body[data-theme="dark"] .profil-box ul li,
body[data-theme="dark"] .fasilitas-box p {
    color: var(--text);
}

body[data-theme="dark"] .profil-box ul li::before {
    color: var(--primary);
}

body[data-theme="dark"] .fasilitas-item {
    background: var(--highlight-card-bg);
    border-color: var(--fasilitas-item-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .fasilitas-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .fasilitas-item img {
    border-color: var(--fasilitas-item-border);
}

body[data-theme="dark"] .fasilitas-item span {
    color: var(--primary);
}

.video-section {
    text-align: center;
    padding: 2rem 0rem;
    background-color: var(--background-light);
    margin-bottom: 2rem;
}

.video-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.video-section h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 30%;
    height: 10px;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 60%;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-section h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .video-section h3::after {
        width: 60px;
    }

    .video-container {
        padding-bottom: 50%;
        height: 300px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .video-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .video-section h3::after {
        width: 50px;
    }

    .video-container {
        padding-bottom: 50%;
        height: 300px;
        max-width: 100%;
    }
}

body[data-theme="dark"] .video-section {
    background-color: var(--secondary);
}

body[data-theme="dark"] .video-section h3 {
    color: var(--primary);
}

body[data-theme="dark"] .video-section h3::after {
    background-color: var(--accent);
}

body[data-theme="dark"] .video-container {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    height: 60px;
    padding: 0.5rem 0;
}

.nav-text {
    color: white;
    line-height: 1.2;
}

.nav-text .title {
    font-weight: 600;
}

.nav-text .subtitle {
    font-size: 0.9rem;
    font-weight: 400;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    padding: 1rem 1.2rem;
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu>li:hover>a {
    background: var(--nav-hover);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--submenu-bg);
    min-width: 200px;
    z-index: 1000;
    border-radius: 0 0 6px 6px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.submenu li a {
    color: var(--primary);
    padding: 0.75rem 1rem;
}

.submenu li a:hover {
    background: var(--submenu-hover);
}

.nav-menu li:hover .submenu {
    display: block;
}

.container {
    padding: 2rem;
}

.section {
    display: none;
}

.active {
    display: block;
}

footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 1rem;
}

footer p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    height: 100%;
    box-sizing: border-box;
}

.theme-switch {
    display: none;
}

.theme-switch-label {
    width: 55px;
    height: 30px;
    background-color: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    box-sizing: border-box;
    color: white;
}

.theme-switch-label .mode-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 5px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.theme-switch-label .icon {
    font-size: 1.2rem;
    position: absolute;
    transition: opacity 0.3s;
}

.theme-switch-label .sun {
    color: #000000;
    left: 35px;
    opacity: 1;
}

.theme-switch-label .moon {
    color: #e0e0e0;
    right: 30px;
    opacity: 0;
}

.theme-switch-label::after {
    content: '';
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    transition: transform 0.3s, background-color 0.3s;
}

.theme-switch:checked+.theme-switch-label {
    background-color: #555;
}

.theme-switch:checked+.theme-switch-label::after {
    transform: translateX(30px);
    background-color: #fdb913;
}

.theme-switch:checked+.theme-switch-label .sun {
    opacity: 0;
}

.theme-switch:checked+.theme-switch-label .moon {
    opacity: 1;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none;
        background: var(--nav-bg);
        align-items: center;
        text-align: center;
    }

    .nav-menu.show {
        display: flex;
    }

    .submenu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: var(--background-light);
        display: none;
    }

    .nav-menu li:hover>.submenu {
        display: block;
    }

    .submenu li a {
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .nav-logo {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

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

    .menu-toggle {
        margin-left: auto;
    }

    .theme-switch-wrapper {
        margin: 1rem 0;
        width: auto;
        padding: 0;
    }

    .theme-switch-label {
        width: 55;
        justify-content: flex-start;
    }

    .theme-switch-label .mode-text {
        position: static;
        transform: none;
        margin-right: 10px;
    }

    .theme-switch-label .sun {
        left: auto;
        position: static;
    }

    .theme-switch-label .moon {
        right: auto;
        position: static;
        margin-left: 8px;
    }

    .theme-switch-label::after {
        left: 1px;
        transform: none;
    }

    .theme-switch:checked+.theme-switch-label::after {
        transform: translateX(30px);
    }
}

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


.announcement-gallery h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 2rem auto;
}


.brochure-item {
    background: var(--background-white);
    border: 1px solid var(--program-item-border);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    min-height: 450px;
    justify-content: space-between;
}

.brochure-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}


.brochure-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid var(--program-item-border);
    margin-bottom: 15px;
}


.brochure-item p {
    font-weight: 600;
    color: var(--text);
    margin: 0;
    padding: 0 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.date-box {
    background: #766b41;
    border: 1px solid rgba(118, 107, 65, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    margin: auto 0 10px 0;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(118, 107, 65, 0.3);
    transition: all 0.3s ease;
}

.date-box:hover {
    box-shadow: 0 3px 8px rgba(118, 107, 65, 0.4);
    background: #8a7a4f;
}

.upload-date {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;
    display: block;
}

body[data-theme="dark"] .date-box {
    background: #fdb913;
    border-color: rgba(253, 185, 19, 0.5);
    box-shadow: 0 2px 4px rgba(253, 185, 19, 0.5);
}

body[data-theme="dark"] .date-box:hover {
    background: #e6a700;
    box-shadow: 0 3px 8px rgba(253, 185, 19, 0.6);
}

body[data-theme="dark"] .upload-date {
    color: #000;
}

@media (max-width: 768px) {
    .date-box {
        margin: 6px auto 0;
        padding: 5px 10px;
        width: 90%;
    }

    .upload-date {
        font-size: 0.8rem;
    }
}


.lightbox-content {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.closed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 5;
}

.brochure-item:hover .closed-overlay {
    opacity: 1;
}

.closed-overlay span {
    color: red;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(-15deg);
    padding: 10px 20px;
    border: 4px solid red;
    border-radius: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    max-width: 80%;
    text-align: center;
    box-sizing: border-box;
}

body[data-theme="dark"] .closed-overlay span {
    color: #ff4d4d;
    border-color: #ff4d4d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

@media (max-width: 1024px) {
    .closed-overlay span {
        font-size: 1.5rem;
        transform: rotate(-12deg);
    }
}

@media (max-width: 768px) {
    .closed-overlay span {
        font-size: 1.5rem;
        transform: rotate(-10deg);
        padding: 8px 15px;
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .closed-overlay span {
        font-size: 1.3rem;
        transform: rotate(-8deg);
        padding: 6px 12px;
        border-width: 2px;
        max-width: 90%;
    }
}


@media (max-width: 1024px) {
    .brochure-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .brochure-item img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .brochure-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .brochure-item img {
        height: 280px;
    }

    .brochure-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brochure-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .brochure-item img {
        height: 220px;
    }

    .brochure-item p {
        font-size: 0.95rem;
    }
}

.hero-new {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('img/blktbn.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
    box-sizing: border-box;
}

.hero-content-new h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content-new p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
}

.hero-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .secondary-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .secondary-button:hover {
    background-color: var(--nav-bg);
    border-color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-new {
        height: 500px;
    }

    .hero-content-new h1 {
        font-size: 3rem;
    }

    .hero-content-new p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-new {
        height: 600px;
    }

    .hero-content-new h1 {
        font-size: 2.5rem;
    }

    .hero-content-new p {
        font-size: 1rem;
    }

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

    .hero-buttons .cta-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero-new {
        height: 500px;
    }

    .hero-content-new h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content-new p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 200px;
        white-space: normal;
    }
}

body[data-theme="dark"] .hero-buttons .secondary-button {
    border: 2px solid var(--primary);
    color: var(--primary);
}

body[data-theme="dark"] .hero-buttons .secondary-button:hover {
    background-color: #333;
    border-color: var(--primary);
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.program-status-section {
    text-align: center;
    padding: 3rem 1rem;
    background-color: transparent;
    margin-bottom: 2rem;
}

.program-status-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.program-status-section h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.program-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.program-status-card {
    background: var(--background-light);
    border: 5px solid #000000;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 15px var(--highlight-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.program-status-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--highlight-card-hover-shadow);
}

.program-status-card .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.program-status-card h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

.ongoing .status-indicator {
    background-color: #28a745;
}

.coming-soon .status-indicator {
    background-color: #ffc107;
}

.program-list {
    list-style: none;
    padding: 0;
    width: 100%;
    margin-bottom: 2rem;
}

.program-list li {
    background-color: var(--background-white);
    border-left: 4px solid var(--accent);
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.program-list li:hover {
    background-color: var(--submenu-hover);
    border-color: var(--primary);
}

.view-all-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.view-all-button:hover {
    background-color: var(--nav-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .program-status-section {
    background-color: var(--secondary);
}

body[data-theme="dark"] .program-status-card {
    background: var(--highlight-card-bg);
    border-color: var(--highlight-card-border);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .program-status-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .program-status-card h4 {
    color: var(--primary);
}

body[data-theme="dark"] .program-list li {
    background-color: #2a2a2a;
    border-left-color: var(--accent);
    color: var(--text);
}

body[data-theme="dark"] .program-list li:hover {
    background-color: #3a3a3a;
    border-color: var(--primary);
}

body[data-theme="dark"] .view-all-button {
    background-color: var(--primary);
    color: var(--tooltip-text);
}

body[data-theme="dark"] .view-all-button:hover {
    background-color: var(--nav-hover);
}

@media (max-width: 768px) {
    .program-status-section h3 {
        font-size: 2rem;
    }

    .program-status-card {
        padding: 1.5rem;
    }

    .program-status-card h4 {
        font-size: 1.5rem;
    }

    .program-list li {
        font-size: 0.95rem;
        padding: 0.7rem 0.8rem;
    }

    .view-all-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .program-status-section h3 {
        font-size: 1.8rem;
    }

    .program-status-grid {
        grid-template-columns: 1fr;
    }

    .program-status-card {
        padding: 1.2rem;
    }

    .program-status-card h4 {
        font-size: 1.3rem;
    }

    .program-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0.7rem;
    }

    .view-all-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--background-white);
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

.modal-content h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content ul li {
    background-color: var(--background-light);
    border-left: 5px solid var(--accent);
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1rem;
    color: var(--text);
}

.modal-content ul li:hover {
    background-color: var(--submenu-hover);
    border-color: var(--primary);
}

.close-button {
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

body[data-theme="dark"] .modal-content {
    background-color: var(--highlight-card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .modal-content h2 {
    color: var(--primary);
}

body[data-theme="dark"] .modal-content ul li {
    background-color: #2a2a2a;
    border-left-color: var(--accent);
    color: var(--text);
}

body[data-theme="dark"] .modal-content ul li:hover {
    background-color: #3a3a3a;
    border-color: var(--primary);
}

body[data-theme="dark"] .close-button {
    color: #bbb;
}

body[data-theme="dark"] .close-button:hover,
body[data-theme="dark"] .close-button:focus {
    color: var(--primary);
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .modal-content ul li {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .close-button {
        font-size: 30px;
        top: 5px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content ul li {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .close-button {
        font-size: 28px;
        top: 5px;
        right: 10px;
    }
}

#programModal .modal-content .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    margin-top: 15px;
}

#moreInfoButtonContainer {
    text-align: center;
}

/* --- Layanan Section Styling --- */
.layanan {
    text-align: center;
    padding: 3rem 1rem;
    background-color: var(--background-light);
}

.layanan h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.layanan h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.layanan-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.layanan-boxes {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.layanan-card {
    background: var(--highlight-card-bg);
    padding: 2rem;
    border: 1px solid var(--highlight-card-border);
    border-radius: 12px;
    box-shadow: 0 6px 15px var(--highlight-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.layanan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--highlight-card-hover-shadow);
}

.layanan-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.layanan-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.layanan-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.layanan-button:hover {
    background-color: var(--nav-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.layanan-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.layanan-button span {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.layanan-button:hover span {
    transform: translateX(3px);
}

.jam-pelayanan {
    flex: 1;
    background: var(--highlight-card-bg);
    padding: 2rem;
    border: 1px solid var(--highlight-card-border);
    border-radius: 12px;
    box-shadow: 0 6px 15px var(--highlight-card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jam-pelayanan:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--highlight-card-hover-shadow);
}

.jam-pelayanan h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jam-pelayanan .icon {
    font-size: 1.8rem;
}

.jam-pelayanan .schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jam-pelayanan .schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--background-white);
    border: 1px solid var(--highlight-card-border);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.jam-pelayanan .schedule-item:hover {
    background: var(--submenu-hover);
}

.jam-pelayanan .schedule-item.break {
    background: rgba(253, 185, 19, 0.1);
    border-color: var(--accent);
}

.jam-pelayanan .day {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.jam-pelayanan .time {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

body[data-theme="dark"] .layanan {
    background-color: var(--secondary);
}

body[data-theme="dark"] .layanan h3 {
    color: var(--primary);
}

body[data-theme="dark"] .layanan h3::after {
    background-color: var(--accent);
}

body[data-theme="dark"] .layanan-card {
    background: var(--highlight-card-bg);
    border-color: var(--highlight-card-border);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .layanan-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .layanan-card h4 {
    color: var(--primary);
}

body[data-theme="dark"] .layanan-card p {
    color: var(--text);
}

body[data-theme="dark"] .layanan-button {
    background-color: var(--primary);
    color: var(--tooltip-text);
}

body[data-theme="dark"] .layanan-button:hover {
    background-color: var(--nav-hover);
}

body[data-theme="dark"] .jam-pelayanan {
    background: var(--highlight-card-bg);
    border-color: var(--highlight-card-border);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .jam-pelayanan:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .jam-pelayanan h4 {
    color: var(--primary);
}

body[data-theme="dark"] .jam-pelayanan li {
    color: var(--text);
}

@media (max-width: 1024px) {
    .layanan h3 {
        font-size: 2.2rem;
    }

    .layanan h3::after {
        width: 70px;
    }

    .layanan-card h4 {
        font-size: 1.4rem;
    }

    .layanan-card p {
        font-size: 0.95rem;
    }

    .jam-pelayanan h4 {
        font-size: 1.4rem;
    }

    .jam-pelayanan li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .layanan {
        padding: 2rem 1rem;
    }

    .layanan h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .layanan h3::after {
        width: 60px;
    }

    .layanan-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .layanan-boxes {
        flex: none;
    }

    .jam-pelayanan {
        flex: none;
    }

    .layanan-card {
        padding: 1.5rem;
    }

    .layanan-card h4 {
        font-size: 1.3rem;
    }

    .layanan-card p {
        font-size: 0.9rem;
    }

    .jam-pelayanan {
        padding: 1.5rem;
    }

    .jam-pelayanan h4 {
        font-size: 1.3rem;
    }

    .jam-pelayanan li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .layanan {
        padding: 1.5rem 0.8rem;
    }

    .layanan h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .layanan h3::after {
        width: 50px;
    }

    .layanan-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .layanan-card {
        padding: 1.2rem;
    }

    .layanan-card h4 {
        font-size: 1.2rem;
    }

    .layanan-card p {
        font-size: 0.85rem;
    }

    .layanan-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .layanan-button span {
        font-size: 1rem;
    }

    .jam-pelayanan {
        padding: 1.2rem;
    }

    .jam-pelayanan h4 {
        font-size: 1.2rem;
    }

    .jam-pelayanan li {
        font-size: 0.85rem;
    }
}

.lightbox-carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.lightbox-carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-carousel-slide.active {
    display: flex;
}

.lightbox-carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lightbox-carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-carousel-button.prev {
    left: 10px;
}

.lightbox-carousel-button.next {
    right: 10px;
}

#brochure-lightbox-img {
    display: none;
}

/* --- Kejuruan Section Styling --- */
.kejuruan-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.kejuruan-box {
    background: var(--profil-box-bg);
    border: 1px solid var(--profil-box-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.kejuruan-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.kejuruan-box h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.kejuruan-box h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.kejuruan-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kejuruan-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.kejuruan-item {
    background: var(--background-white);
    border: 1px solid var(--program-item-border);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, border-color 0.4s ease-out, background-color 0.4s ease-out;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.kejuruan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 1;
}

.kejuruan-item:hover::before {
    opacity: 0.8;
}

.kejuruan-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.kejuruan-img {
    width: 100%;
    max-width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    z-index: 2;
}

.kejuruan-item:hover .kejuruan-img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.kejuruan-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
    transition: color 0.4s ease-out;
    z-index: 2;

}

.kejuruan-item:hover h3 {
    color: white;
}

.kejuruan-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0;
    transition: color 0.4s ease-out;
    z-index: 2;
}

.kejuruan-item:hover p {
    color: white;
}

.kejuruan-note {
    margin-top: 4rem;
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
    text-align: center;
}

@media (max-width: 1024px) {
    .kejuruan-box {
        max-width: 700px;
    }

    .kejuruan-img {
        max-width: 300px;
        height: 200px;
    }

    .kejuruan-item h3 {
        font-size: 1.6rem;
    }

    .kejuruan-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .kejuruan-box {
        max-width: 600px;
        padding: 2rem;
    }

    .kejuruan-box h2 {
        font-size: 2.2rem;
    }

    .kejuruan-box p {
        font-size: 1rem;
    }

    .kejuruan-img {
        max-width: 280px;
        height: 180px;
    }

    .kejuruan-item h3 {
        font-size: 1.4rem;
    }

    .kejuruan-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .kejuruan-box {
        padding: 1.5rem;
    }

    .kejuruan-box h2 {
        font-size: 1.8rem;
    }

    .kejuruan-box p {
        font-size: 0.9rem;
    }

    .kejuruan-img {
        max-width: 100%;
        height: 160px;
    }

    .kejuruan-item h3 {
        font-size: 1.2rem;
    }

    .kejuruan-item p {
        font-size: 0.85rem;
    }
}

body[data-theme="dark"] .kejuruan-section {
    background-color: var(--secondary);
}

body[data-theme="dark"] .kejuruan-box {
    background-color: var(--profil-box-bg);
    border-color: var(--profil-box-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .kejuruan-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .kejuruan-box h2 {
    color: var(--primary);
}

body[data-theme="dark"] .kejuruan-box h2::after {
    background-color: var(--accent);
}

body[data-theme="dark"] .kejuruan-box p,
body[data-theme="dark"] .kejuruan-note {
    color: var(--text);
}

body[data-theme="dark"] .kejuruan-item {
    background: var(--highlight-card-bg);
    border-color: var(--program-item-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .kejuruan-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

body[data-theme="dark"] .kejuruan-item span {
    color: var(--primary);
}

body[data-theme="dark"] .kejuruan-img {
    border-color: var(--primary);
}

body[data-theme="dark"] .kejuruan-item::before {
    background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
}

body[data-theme="dark"] .kejuruan-item:hover h3,
body[data-theme="dark"] .kejuruan-item:hover p {
    color: #333;
}

.kejuruan-images {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kejuruan-item .kejuruan-img {
    position: absolute;
    width: 60%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, z-index 0.4s ease-out;
    z-index: 2;
}

.kejuruan-item:hover .kejuruan-img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.kejuruan-item .kejuruan-img.img-left {
    transform: rotate(-5deg) translateX(-20%);
    left: 0;
    z-index: 1;
}

.kejuruan-item .kejuruan-img.img-straight {
    transform: rotate(0deg);
    z-index: 3;
}

.kejuruan-item .kejuruan-img.img-right {
    transform: rotate(5deg) translateX(20%);
    right: 0;
    z-index: 1;
}

.kejuruan-item .kejuruan-img:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 4;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .kejuruan-item .kejuruan-img {
    border-color: var(--primary);
}

/* --- Standar Pelayanan Section Styling --- */
.standar-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.standar-box {
    background: var(--profil-box-bg);
    border: 1px solid var(--profil-box-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.standar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.standar-box h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.standar-box h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.standar-box>p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.standar-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--background-white);
    border: 1px solid var(--highlight-card-border);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.standar-item h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.standar-item .icon {
    font-size: 1.5rem;
}

.standar-item ul, .standar-item ol {
    padding-left: 1.5rem;
    margin: 0;
}

.standar-item li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.standar-item .highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
    text-align: center;
    background: rgba(253, 185, 19, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--accent);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-info .icon {
    font-size: 1.2rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .standar-section, .standar-box {
        padding: 2.5rem;
    }

    .standar-box h2 {
        font-size: 2.4rem;
    }

    .standar-item {
        padding: 1.5rem;
    }

    .standar-item h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .standar-section {
        padding: 2rem 1rem;
    }

    .standar-box {
        padding: 2rem;
    }

    .standar-box h2 {
        font-size: 2rem;
    }

    .standar-box>p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .standar-item {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }

    .standar-item h3 {
        font-size: 1.4rem;
    }

    .standar-item li {
        font-size: 0.95rem;
    }

    .standar-item .highlight {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .standar-section {
        padding: 1.5rem 0.8rem;
    }

    .standar-box {
        padding: 1.5rem;
    }

    .standar-box h2 {
        font-size: 1.8rem;
    }

    .standar-box>p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .standar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .standar-item {
        padding: 1rem;
        margin-bottom: 0;
    }

    .standar-item h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .standar-item .icon {
        font-size: 1.3rem;
    }

    .standar-item li {
        font-size: 0.9rem;
    }

    .standar-item .highlight {
        font-size: 1rem;
        padding: 0.6rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
}

body[data-theme="dark"] .standar-section {
    background-color: var(--secondary);
}

body[data-theme="dark"] .standar-box {
    background-color: var(--profil-box-bg);
    border-color: var(--profil-box-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .standar-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .standar-box h2 {
    color: var(--primary);
}

body[data-theme="dark"] .standar-box h2::after {
    background-color: var(--accent);
}

body[data-theme="dark"] .standar-box>p,
body[data-theme="dark"] .standar-item li,
body[data-theme="dark"] .contact-info p {
    color: var(--text);
}

body[data-theme="dark"] .standar-item {
    background: var(--highlight-card-bg);
    border-color: var(--highlight-card-border);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .standar-item:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .standar-item h3 {
    color: var(--primary);
}

body[data-theme="dark"] .standar-item .highlight {
    background: rgba(253, 185, 19, 0.2);
    color: var(--accent);
    border-color: var(--accent);
}

/* --- FAQ Section Styling --- */
.faq-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-white);
    border: 1px solid var(--highlight-card-border);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.faq-section h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.faq-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.faq-section details {
    margin-bottom: 1rem;
    border: 1px solid var(--highlight-card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section details:hover {
    border-color: var(--primary);
}

.faq-section summary {
    background: var(--submenu-bg);
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-section summary:hover {
    background: var(--submenu-hover);
}

.faq-section summary::marker {
    display: none;
}

.faq-section summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-section details[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-section details p {
    padding: 1rem 1.5rem;
    margin: 0;
    background: var(--background-light);
    color: var(--text);
    line-height: 1.6;
    border-top: 1px solid var(--highlight-card-border);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .faq-section h3 {
        font-size: 1.5rem;
    }

    .faq-section summary {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-section details p {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .faq-section h3 {
        font-size: 1.3rem;
    }

    .faq-section summary {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .faq-section details p {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

body[data-theme="dark"] .faq-section {
    background: var(--highlight-card-bg);
    border-color: var(--highlight-card-border);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .faq-section:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .faq-section h3 {
    color: var(--primary);
}

body[data-theme="dark"] .faq-section h3::after {
    background-color: var(--accent);
}

body[data-theme="dark"] .faq-section details {
    border-color: var(--highlight-card-border);
}

body[data-theme="dark"] .faq-section details:hover {
    border-color: var(--primary);
}

body[data-theme="dark"] .faq-section summary {
    background: var(--submenu-bg);
    color: var(--primary);
}

body[data-theme="dark"] .faq-section summary:hover {
    background: var(--submenu-hover);
}

body[data-theme="dark"] .faq-section details p {
    background: var(--secondary);
    color: var(--text);
    border-color: var(--highlight-card-border);
}