/*
Theme Name: Badewa Jaffran Theme
Theme URI: https://github.com/jaffran
Author: Jaffran Tirta Artika
Author URI: https://github.com/jaffran
Description: A modern, professional WordPress theme designed for educational institutions and schools. Developed by Jaffran Tirta Artika, a software developer from ITM Bali. Features include responsive design, customizable colors, smooth scroll animations, and comprehensive customization options.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: badewatheme
Tags: education, school, health, custom-colors, custom-menu, featured-images, responsive-design, translation-ready
*/

/* CSS Variables are now defined dynamically in functions.php via WordPress Customizer */
/* Default fallback values */
:root {
    --primary: #007e41;
    --primary-dark: #28a828;
    --accent: #4cd44c;
    --cream: #f5f7fb;
    --ink: #0b1b36;
    --muted: #5c6b86;
}

body {
    font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(30, 111, 217, 0.12), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(12, 61, 145, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f2f5fb 100%);
}

h1, h2, h3, h4, h5 {
    font-family: "Playfair Display", "Times New Roman", serif;
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(8, 41, 95, 0.1);
}

/* Top Bar */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid rgba(12, 61, 145, 0.1);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    transition: all 0.3s ease;
}

.blog-card-placeholder {
    background: #f4faf8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-health-school {
    padding: 24px;
    height: 100%;
    object-fit: contain;
}


.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-link svg {
    width: 14px;
    height: 14px;
}

/* Main Navigation */
.site-header .navbar {
    background: #ffffff !important;
    padding: 1rem 0;
    box-shadow: none;
}

.navbar .navbar-brand {
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.navbar-logo img,
.navbar .custom-logo {
    height: clamp(40px, 6vw, 60px);
    width: clamp(40px, 6vw, 60px);
    object-fit: contain;
    display: block;
}

.navbar .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.navbar-title {
    color: var(--ink);
    margin-left: 0.35rem;
}

.navbar .nav-link {
    color: var(--ink);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.navbar-nav {
    gap: 0.1rem;
}

.navbar-nav .menu-item {
    list-style: none;
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    padding: 0.5rem 0.25rem;
    box-shadow: 0 16px 30px rgba(8, 41, 95, 0.2);
}

.navbar-nav .menu-item-has-children {
    position: relative;
}

.navbar-nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.25rem;
    border-radius: 0.75rem;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(8, 41, 95, 0.2);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    display: none;
    z-index: 1000;
}

.navbar-nav .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.navbar-nav .sub-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--ink);
    text-decoration: none;
}

.navbar-nav .sub-menu a:hover,
.navbar-nav .sub-menu a:focus {
    color: var(--primary);
    background: rgba(12, 61, 145, 0.08);
}

.navbar-nav .dropdown-item {
    padding: 0.6rem 1rem;
    color: var(--ink);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    color: var(--primary);
    background: rgba(12, 61, 145, 0.08);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--primary);
}

/* CTA Button */
.btn-cta {
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 61, 145, 0.25);
}

/* Hero Section - New Single Hero with Overlay */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(8, 41, 95, 0.85) 0%, rgba(12, 61, 145, 0.65) 50%, rgba(30, 111, 217, 0.45) 100%); */
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-hero:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* Sambutan Section */
#sambutan {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.sambutan-content {
    padding-right: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sambutan-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.sambutan-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sambutan-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sambutan-signature {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(12, 61, 145, 0.15);
}

.sambutan-signature strong {
    display: block;
    color: var(--ink);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.sambutan-signature .text-muted {
    color: var(--muted);
    font-size: 0.95rem;
}

.sambutan-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
}

.sambutan-image.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.sambutan-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 61, 145, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.sambutan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.sambutan-image:hover img {
    transform: scale(1.05);
}

/* Program Carousel */
.program-carousel {
    margin-top: 2rem;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.program-carousel.animate-in {
    opacity: 1;
    transform: scale(1);
}

.program-slide-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 30, 70, 0.12);
    min-height: 450px;
}

.program-slide-image {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 111, 217, 0.15), rgba(12, 61, 145, 0.15));
}

.program-slide-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 41, 95, 0.3) 100%);
    z-index: 1;
}

.program-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-slide-card:hover .program-slide-image img {
    transform: scale(1.08);
}

.program-slide-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
}

.program-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(12, 61, 145, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.program-slide-title {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    color: var(--ink);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.program-slide-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Carousel Controls Styling */
.program-carousel .carousel-control-prev,
.program-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(8, 41, 95, 0.15);
    transition: all 0.3s ease;
}

.program-carousel .carousel-control-prev {
    left: -30px;
}

.program-carousel .carousel-control-next {
    right: -30px;
}

.program-carousel .carousel-control-prev:hover,
.program-carousel .carousel-control-next:hover {
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(8, 41, 95, 0.25);
}

.program-carousel .carousel-control-prev-icon,
.program-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
    filter: invert(19%) sepia(73%) saturate(1794%) hue-rotate(200deg) brightness(87%) contrast(96%);
}

.program-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.program-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.program-carousel .carousel-indicators {
    margin-bottom: 1.5rem;
}

.program-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(12, 61, 145, 0.3);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.program-carousel .carousel-indicators button.active {
    background-color: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Old carousel styles - keeping for backwards compatibility */
.hero-section .carousel-item {
    position: relative;
}

.hero-section .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 41, 95, 0.75), rgba(12, 61, 145, 0.35));
}

.hero-section .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    padding: 0 0 5rem;
}

.hero-card {
    max-width: 560px;
    background: rgba(8, 41, 95, 0.75);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(5, 22, 50, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.hero-actions .btn {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.section-pad {
    padding: 80px 0;
}

.section-accent {
    background: #e9effa;
}

.section-header {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
}

.kompetensi-card,
.blog-card,
.feature-card {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(10, 30, 70, 0.08);
    background: #ffffff;
}

.blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.blog-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* For front page where blog cards are direct children */
.col-md-6:nth-child(1) .blog-card.animate-in,
.col-lg-4:nth-child(1) .blog-card.animate-in {
    transition-delay: 0.1s;
}

.col-md-6:nth-child(2) .blog-card.animate-in,
.col-lg-4:nth-child(2) .blog-card.animate-in {
    transition-delay: 0.2s;
}

.col-md-6:nth-child(3) .blog-card.animate-in,
.col-lg-4:nth-child(3) .blog-card.animate-in {
    transition-delay: 0.3s;
}

.col-md-6:nth-child(4) .blog-card.animate-in,
.col-lg-4:nth-child(4) .blog-card.animate-in {
    transition-delay: 0.4s;
}

.col-md-6:nth-child(5) .blog-card.animate-in,
.col-lg-4:nth-child(5) .blog-card.animate-in {
    transition-delay: 0.5s;
}

.col-md-6:nth-child(6) .blog-card.animate-in,
.col-lg-4:nth-child(6) .blog-card.animate-in {
    transition-delay: 0.6s;
}

.kompetensi-card .card-body {
    padding: 2.25rem;
}

.card-kicker {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.kompetensi-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    color: var(--muted);
}

.kompetensi-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.kompetensi-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--accent);
}

.feature-card {
    background: #ffffff;
    border-radius: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 30, 70, 0.15);
}

.feature-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(49, 202, 49, 0.1), rgba(40, 168, 40, 0.1));
}

.feature-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem 1.75rem;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(49, 202, 49, 0.12);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: "Playfair Display", serif;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.feature-content p {
    color: var(--muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 1.75rem;
}

.blog-card .card-title a {
    color: var(--ink);
}

.blog-card .card-text {
    color: var(--muted);
}

.blog-card .card-footer {
    background: transparent;
    border-top: none;
    padding: 0 1.75rem 1.75rem;
}

.blog-card .btn-link {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
}

.blog-thumb-placeholder {
    height: 200px;
    background: linear-gradient(120deg, rgba(30, 111, 217, 0.35), rgba(12, 61, 145, 0.25));
}

.sidebar {
    display: grid;
    gap: 1.5rem;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(10, 30, 70, 0.08);
    padding: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.35rem;
}

.sidebar-divider {
    height: 1px;
    background: rgba(12, 61, 145, 0.15);
    margin: 1rem 0 1.25rem;
}

.sidebar-muted {
    color: var(--muted);
}

.map-embed iframe {
    border-radius: 0.75rem;
}

.sidebar-list {
    display: grid;
    gap: 1rem;
    color: var(--muted);
}

.sidebar-item {
    border-bottom: 1px solid rgba(12, 61, 145, 0.12);
    padding-bottom: 0.75rem;
}

.sidebar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-label {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.sidebar-value {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
}

.sidebar-button {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border-color: var(--primary);
}

.sidebar-button:hover,
.sidebar-button:focus {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

/* Modern Sidebar Contact & Social Styles */
.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #f8f9fc;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1e293b;
    border: 1px solid transparent;
}

.sidebar-contact-item:hover {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(12, 61, 145, 0.08);
}

.sidebar-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.sidebar-contact-item:hover .sidebar-icon {
    transform: scale(1.1);
}

.sidebar-contact-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.sidebar-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(12, 61, 145, 0.1);
}

.sidebar-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.sidebar-social-links {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.sidebar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f8f9fc;
    border-radius: 0.625rem;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.sidebar-social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(12, 61, 145, 0.2);
}

.sidebar-social-link svg {
    transition: transform 0.3s ease;
}

.sidebar-social-link:hover svg {
    transform: scale(1.1);
}

.sidebar-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: #25D366;
    color: #ffffff;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.sidebar-whatsapp-btn:hover {
    background: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.sidebar-whatsapp-icon {
    flex-shrink: 0;
}

.sidebar-whatsapp-btn span {
    line-height: 1;
}

/* Responsive adjustments for sidebar */
@media (max-width: 767px) {
    .sidebar-contact-item {
        padding: 0.75rem 0.875rem;
    }

    .sidebar-social-link {
        width: 40px;
        height: 40px;
    }

    .sidebar-whatsapp-btn {
        padding: 0.875rem 1.25rem;
    }
}

.pagination,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination {
    justify-content: flex-start;
}

.page-numbers li {
    list-style: none;
}

.nav-links .page-numbers,
ul.page-numbers .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(12, 61, 145, 0.18);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(8, 41, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-links .page-numbers.current,
ul.page-numbers .page-numbers.current {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(12, 61, 145, 0.22);
    position: relative;
}

.nav-links .page-numbers.current::after,
ul.page-numbers .page-numbers.current::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-links a.page-numbers:hover,
.nav-links a.page-numbers:focus,
ul.page-numbers a.page-numbers:hover,
ul.page-numbers a.page-numbers:focus {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(8, 41, 95, 0.16);
}

.nav-links a.page-numbers:focus-visible,
ul.page-numbers a.page-numbers:focus-visible {
    outline: 2px solid rgba(30, 111, 217, 0.5);
    outline-offset: 2px;
}

.nav-links .dots,
ul.page-numbers .dots {
    color: var(--muted);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    min-width: auto;
}

.nav-links .prev,
.nav-links .next,
ul.page-numbers .prev,
ul.page-numbers .next {
    padding: 0 1.15rem;
}

.empty-state {
    background: #ffffff;
    padding: 2.5rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(10, 30, 70, 0.08);
}

.site-footer {
    padding: 70px 0 30px;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-list a:hover,
.footer-list a:focus {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .top-bar {
        font-size: 0.8rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-link {
        font-size: 0.8rem;
    }

    .navbar .navbar-brand {
        gap: 0.5rem;
        max-width: 70%;
    }

    .navbar-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .navbar-nav {
        gap: 0;
        padding-top: 1rem;
    }

    .navbar-nav .dropdown-menu,
    .navbar-nav .sub-menu {
        box-shadow: none;
        position: static;
        display: none !important;
        background: transparent;
        padding: 0 0 0 1rem;
        margin-top: 0.5rem;
    }

    .navbar-nav .menu-item-has-children.dropdown-open > .sub-menu,
    .navbar-nav .menu-item-has-children.dropdown-open > .dropdown-menu {
        display: block !important;
    }

    .navbar-nav .menu-item-has-children > a {
        position: relative;
        padding-right: 2rem;
    }

    .navbar-nav .menu-item-has-children > a::after {
        content: "+";
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    .navbar-nav .menu-item-has-children.dropdown-open > a::after {
        content: "−";
    }

    .navbar-nav .sub-menu a,
    .navbar-nav .dropdown-menu a {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    .btn-cta {
        display: block;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .hero-section .carousel-caption {
        padding: 0 0 3rem;
    }

    .hero-card {
        margin: 0 1rem;
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .hero-container {
        height: 70vh;
        min-height: 500px;
    }

    .hero-text-wrapper {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .sambutan-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .sambutan-title {
        font-size: 1.75rem;
    }

    .program-slide-image {
        height: 300px;
    }

    .program-slide-content {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .program-number {
        font-size: 3rem;
    }

    .program-slide-title {
        font-size: 1.5rem;
    }

    .program-carousel .carousel-control-prev,
    .program-carousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .program-carousel .carousel-control-prev {
        left: 10px;
    }

    .program-carousel .carousel-control-next {
        right: 10px;
    }

    .hero-actions {
        display: grid;
        gap: 0.75rem;
    }
}

@media (max-width: 991px) {
    .program-carousel .carousel-control-prev {
        left: 10px;
    }

    .program-carousel .carousel-control-next {
        right: 10px;
    }

    .sambutan-content {
        padding-right: 0;
    }

    .feature-image {
        height: 180px;
    }

    .feature-content {
        padding: 1.5rem 1.25rem;
    }
}

/* ========================================
   FAQ Page Styles
   ======================================== */

/* FAQ Hero Section */
.faq-hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.faq-hero-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
}

.faq-hero-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.faq-hero-text {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* FAQ Section */
.faq-section {
    background: transparent;
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1).animate-in { transition-delay: 0.05s; }
.faq-item:nth-child(2).animate-in { transition-delay: 0.10s; }
.faq-item:nth-child(3).animate-in { transition-delay: 0.15s; }
.faq-item:nth-child(4).animate-in { transition-delay: 0.20s; }
.faq-item:nth-child(5).animate-in { transition-delay: 0.25s; }
.faq-item:nth-child(6).animate-in { transition-delay: 0.30s; }
.faq-item:nth-child(7).animate-in { transition-delay: 0.35s; }
.faq-item:nth-child(8).animate-in { transition-delay: 0.40s; }
.faq-item:nth-child(9).animate-in { transition-delay: 0.45s; }
.faq-item:nth-child(10).animate-in { transition-delay: 0.50s; }

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(12, 61, 145, 0.15);
    transform: translateY(-2px);
}

.faq-item .accordion-header {
    margin-bottom: 0;
}

.faq-item .accordion-button {
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: none;
    box-shadow: none;
    font-weight: 500;
    color: var(--ink);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1b36'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) .faq-number {
    background: #ffffff;
    color: var(--primary);
}

.faq-question {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}

.faq-answer {
    padding: 1.5rem 2rem 2rem 2rem;
    background: #f8f9fa;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid rgba(12, 61, 145, 0.08);
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ Responsive Styles */
@media (max-width: 991px) {
    .faq-hero-container {
        height: 300px;
    }

    .faq-hero-title {
        font-size: 2.25rem;
    }

    .faq-hero-text {
        font-size: 1.1rem;
    }

    .faq-item .accordion-button {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 1.25rem 1.5rem 1.75rem 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .faq-hero-container {
        height: 250px;
    }

    .faq-hero-title {
        font-size: 1.75rem;
    }

    .faq-hero-text {
        font-size: 1rem;
    }

    .faq-item .accordion-button {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .faq-answer {
        padding: 1rem 1.25rem 1.5rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-number {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ============================
   About Us Page
   ============================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-hero-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-text-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    color: #ffffff;
    font-size: 2.75rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-text {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About Content Section */
.about-content-section {
    background: #ffffff;
}

.about-content {
    padding-right: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-content-title {
    color: var(--ink);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content-text {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content-text p {
    margin-bottom: 1rem;
}

.about-content-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
}

.about-image.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 5rem 0;
}

.vm-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vm-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.vision-card.animate-in {
    transition-delay: 0.1s;
}

.mission-card.animate-in {
    transition-delay: 0.2s;
}

.vm-card:hover {
    box-shadow: 0 8px 30px rgba(8, 41, 95, 0.15);
    transform: translateY(-5px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-card .vm-icon {
    background: linear-gradient(135deg, rgba(49, 202, 49, 0.1) 0%, rgba(76, 212, 76, 0.15) 100%);
    color: var(--primary);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, rgba(49, 202, 49, 0.1) 0%, rgba(76, 212, 76, 0.15) 100%);
    color: var(--primary);
}

.vm-title {
    color: var(--ink);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.vm-content {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    flex-grow: 1;
}

.vm-content p {
    margin-bottom: 1rem;
}

.vm-content p:last-child {
    margin-bottom: 0;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.mission-list li:last-child {
    margin-bottom: 0;
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .about-hero-container {
        height: 300px;
    }

    .about-hero-title {
        font-size: 2.25rem;
    }

    .about-hero-text {
        font-size: 1.15rem;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .about-content-title {
        font-size: 2rem;
    }

    .about-image img {
        height: 400px;
    }

    .vm-card {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }

    .vm-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .about-hero-container {
        height: 250px;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .about-content-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .about-content-text {
        font-size: 1rem;
    }

    .about-image img {
        height: 300px;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
    }

    .vm-icon svg {
        width: 30px;
        height: 30px;
    }

    .vm-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .vm-content {
        font-size: 0.95rem;
    }

    .mission-list li {
        padding-left: 1.75rem;
        font-size: 0.95rem;
    }

    .mission-list li::before {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.8rem;
    }
}

/* ============================
   Fasilitas Page
   ============================ */

/* Fasilitas Hero Section */
.fasilitas-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fasilitas-hero-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fasilitas-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fasilitas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

.fasilitas-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.fasilitas-hero-text-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fasilitas-hero-title {
    color: #ffffff;
    font-size: 2.75rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.fasilitas-hero-text {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Fasilitas Content Section */
.fasilitas-content-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.fasilitas-item {
    margin-bottom: 6rem;
    position: relative;
}

.fasilitas-content {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fasilitas-image {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.fasilitas-item-reverse .fasilitas-content {
    transform: translateX(40px);
}

.fasilitas-item-reverse .fasilitas-image {
    transform: translateX(-40px);
}

.fasilitas-item.animate-in .fasilitas-content,
.fasilitas-item.animate-in .fasilitas-image {
    opacity: 1;
    transform: translateX(0);
}

.fasilitas-item:last-child {
    margin-bottom: 0;
}

.fasilitas-content {
    padding-right: 2rem;
}

.fasilitas-item-reverse .fasilitas-content {
    padding-right: 0;
    padding-left: 2rem;
}

.fasilitas-title {
    color: var(--ink);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.fasilitas-text {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.fasilitas-text p {
    margin-bottom: 1rem;
}

.fasilitas-text p:last-child {
    margin-bottom: 0;
}

.fasilitas-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 41, 95, 0.15);
    transition: all 0.4s ease;
}

.fasilitas-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(49, 202, 49, 0.08) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fasilitas-item:hover .fasilitas-image::before {
    opacity: 1;
}

.fasilitas-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.fasilitas-item:hover .fasilitas-image img {
    transform: scale(1.05);
}

.fasilitas-item:hover .fasilitas-image {
    box-shadow: 0 25px 70px rgba(8, 41, 95, 0.2);
}

/* Responsive styles */
@media (max-width: 991px) {
    .fasilitas-hero-container {
        height: 300px;
    }

    .fasilitas-hero-title {
        font-size: 2.25rem;
    }

    .fasilitas-hero-text {
        font-size: 1.15rem;
    }

    .fasilitas-item {
        margin-bottom: 4rem;
    }

    .fasilitas-content,
    .fasilitas-item-reverse .fasilitas-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .fasilitas-title {
        font-size: 2rem;
    }

    .fasilitas-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .fasilitas-hero-container {
        height: 250px;
    }

    .fasilitas-hero-title {
        font-size: 1.75rem;
    }

    .fasilitas-hero-text {
        font-size: 1rem;
    }

    .fasilitas-item {
        margin-bottom: 3rem;
    }

    .fasilitas-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .fasilitas-text {
        font-size: 1rem;
    }

    .fasilitas-image {
        border-radius: 12px;
    }

    .fasilitas-image img {
        height: 300px;
    }
}

/* ============================
   Contact Us Page
   ============================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-hero-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-text-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    color: #ffffff;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-text {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Content Section */
.contact-content-section {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(8, 41, 95, 0.08);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-title {
    color: var(--ink);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.contact-info-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.contact-info-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-item:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.contact-info-item:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary);
}

/* Contact Social Media */
.contact-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(12, 61, 145, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: 0.4s;
}

.contact-social.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-social-title {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #f8f9fc;
    border-radius: 12px;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
    opacity: 0;
    transform: scale(0.8);
}

.contact-social-link.animate-in {
    opacity: 1;
    transform: scale(1);
}

.contact-social-link:nth-child(1).animate-in {
    transition-delay: 0.5s;
}

.contact-social-link:nth-child(2).animate-in {
    transition-delay: 0.6s;
}

.contact-social-link:nth-child(3).animate-in {
    transition-delay: 0.7s;
}

.contact-social-link:nth-child(4).animate-in {
    transition-delay: 0.8s;
}

.contact-social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(12, 61, 145, 0.2);
}

.contact-social-link svg {
    transition: transform 0.3s ease;
}

.contact-social-link:hover svg {
    transform: scale(1.1);
}

/* Contact Map Card */
.contact-map-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8, 41, 95, 0.08);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.2s;
}

.contact-map-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.contact-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 3rem;
    text-align: center;
    color: var(--muted);
}

.contact-map-placeholder svg {
    color: rgba(12, 61, 145, 0.2);
    margin-bottom: 1.5rem;
}

.contact-map-placeholder p {
    max-width: 400px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 991px) {
    .contact-hero-container {
        height: 300px;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-hero-text {
        font-size: 1.15rem;
    }

    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-info-title {
        font-size: 1.75rem;
    }

    .contact-map-iframe {
        min-height: 400px;
    }

    .contact-map-placeholder {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-hero-container {
        height: 250px;
    }

    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-hero-text {
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

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

    .contact-info-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-content h3 {
        font-size: 1rem;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 0.9rem;
    }

    .contact-social-link {
        width: 48px;
        height: 48px;
    }

    .contact-social-link svg {
        width: 20px;
        height: 20px;
    }

    .contact-map-iframe {
        min-height: 350px;
    }

    .contact-map-placeholder {
        min-height: 350px;
        padding: 2rem;
    }

    .contact-map-placeholder svg {
        width: 60px;
        height: 60px;
    }

    .contact-map-placeholder p {
        font-size: 0.9rem;
    }

    .contact-whatsapp-cta {
        margin-top: 2rem;
    }

    .contact-whatsapp-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .contact-whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

/* WhatsApp CTA Button */
.contact-whatsapp-cta {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: 0.3s;
}

.contact-whatsapp-cta.animate-in {
    opacity: 1;
    transform: scale(1);
}

.contact-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.contact-whatsapp-btn:active {
    transform: translateY(0);
}

.contact-whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    cursor: pointer;
}

.floating-whatsapp-right {
    right: 24px;
}

.floating-whatsapp-left {
    left: 24px;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
}

.floating-whatsapp:active {
    transform: translateY(-2px) scale(1.05);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Pulse animation */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }

    .floating-whatsapp-right {
        right: 16px;
    }

    .floating-whatsapp-left {
        left: 16px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   Our Team Section
   =================================== */
.team-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

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

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

.team-section .section-description {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Team Image Container */
.team-image-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-image-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-image-placeholder {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--cream) 0%, #e8e9ed 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--muted);
    padding: 3rem;
}

.team-image-placeholder svg {
    opacity: 0.4;
}

.team-image-placeholder p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .team-section .section-title {
        font-size: 2rem;
    }

    .team-image-placeholder {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .team-section .section-title {
        font-size: 1.75rem;
    }

    .team-section .section-description {
        font-size: 1rem;
    }

    .team-section .section-header {
        margin-bottom: 2.5rem;
    }

    .team-image-placeholder {
        min-height: 300px;
        padding: 2rem;
    }

    .team-image-placeholder svg {
        width: 80px;
        height: 80px;
    }

    .team-image-placeholder p {
        font-size: 1rem;
    }
}

/* ============================================
   GALERI PAGE STYLES
   ============================================ */

/* Galeri Hero Section */
.galeri-hero-section {
    position: relative;
    width: 100%;
}

.galeri-hero-container {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.galeri-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeri-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.galeri-hero-content {
    position: relative;
    z-index: 2;
}

.galeri-hero-text-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.galeri-hero-title {
    color: #ffffff;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.galeri-hero-text {
    color: #ffffff;
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Gallery Grid */
.galeri-content-section {
    background-color: #f8f9fa;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.galeri-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.galeri-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.galeri-item-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.galeri-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeri-item-inner:hover img {
    transform: scale(1.1);
}

.galeri-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-item-inner:hover .galeri-item-overlay {
    opacity: 1;
}

.galeri-zoom-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.galeri-item-inner:hover .galeri-zoom-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.galeri-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    color: #6c757d;
}

/* Lightbox Styles */
.galeri-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.galeri-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.galeri-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.galeri-lightbox-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.galeri-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.galeri-lightbox-close:hover {
    transform: scale(1.1);
    opacity: 1;
}

.galeri-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeri-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.galeri-lightbox-prev {
    left: 20px;
}

.galeri-lightbox-next {
    right: 20px;
}

.galeri-lightbox-image-wrapper {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeri-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.galeri-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive styles for Gallery */
@media (max-width: 1199px) {
    .galeri-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .galeri-hero-container {
        height: 300px;
    }

    .galeri-hero-title {
        font-size: 2.25rem;
    }

    .galeri-hero-text {
        font-size: 1.15rem;
    }

    .galeri-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .galeri-lightbox-content {
        padding: 60px 60px;
    }
}

@media (max-width: 767px) {
    .galeri-hero-container {
        height: 250px;
    }

    .galeri-hero-title {
        font-size: 1.75rem;
    }

    .galeri-hero-text {
        font-size: 1rem;
    }

    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .galeri-item-inner {
        border-radius: 8px;
    }

    .galeri-lightbox-content {
        padding: 50px 15px;
    }

    .galeri-lightbox-nav {
        padding: 10px;
    }

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

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

    .galeri-zoom-icon {
        width: 45px;
        height: 45px;
    }

    .galeri-zoom-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 575px) {
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .galeri-item-inner {
        border-radius: 6px;
    }
}

/* ============================================
   PROGRAM PAGE STYLES
   ============================================ */

/* Program Hero Section */
.program-hero-section {
    position: relative;
    width: 100%;
}

.program-hero-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.program-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.program-hero-content {
    position: relative;
    z-index: 2;
}

.program-hero-text-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.program-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.program-hero-text {
    color: #ffffff;
    font-size: 1.35rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

/* Program Content Section */
.program-content-section {
    background-color: #ffffff;
}

.program-item {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.program-item:last-child {
    margin-bottom: 0;
}

.program-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.program-content {
    padding: 1rem 0;
}

.program-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
    position: relative;
}

.program-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.program-item-reverse .program-title::after {
    left: auto;
    right: 0;
}

.program-item-reverse .program-content {
    text-align: right;
}

.program-text {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.program-text p {
    margin-bottom: 1rem;
}

.program-text p:last-child {
    margin-bottom: 0;
}

.program-text ul,
.program-text ol {
    text-align: left;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style-position: outside;
}

.program-text ul {
    list-style-type: disc;
}

.program-text ol {
    list-style-type: decimal;
}

.program-text li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.program-text li:last-child {
    margin-bottom: 0;
}

.program-item-reverse .program-text ul,
.program-item-reverse .program-text ol {
    text-align: left;
}

.program-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.program-image:hover img {
    transform: scale(1.03);
}

/* Additional Post Content */
.program-additional-content {
    background-color: #f8f9fa;
}

.program-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ink);
}

.program-post-content h2,
.program-post-content h3,
.program-post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.program-post-content p {
    margin-bottom: 1.5rem;
}

.program-post-content ul,
.program-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.program-post-content li {
    margin-bottom: 0.5rem;
}

.program-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Responsive styles for Program */
@media (max-width: 991px) {
    .program-hero-container {
        height: 350px;
    }

    .program-hero-title {
        font-size: 2.5rem;
    }

    .program-hero-text {
        font-size: 1.2rem;
    }

    .program-item {
        margin-bottom: 4rem;
    }

    .program-title {
        font-size: 1.75rem;
    }

    .program-item-reverse .program-content {
        text-align: left;
    }

    .program-item-reverse .program-title::after {
        left: 0;
        right: auto;
    }
}

@media (max-width: 767px) {
    .program-hero-container {
        height: 300px;
    }

    .program-hero-title {
        font-size: 2rem;
    }

    .program-hero-text {
        font-size: 1.1rem;
    }

    .program-item {
        margin-bottom: 3rem;
    }

    .program-title {
        font-size: 1.5rem;
    }

    .program-text {
        font-size: 1rem;
    }

    .program-image {
        border-radius: 12px;
        margin-top: 1.5rem;
    }

    .program-content {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .program-hero-container {
        height: 250px;
    }

    .program-hero-title {
        font-size: 1.75rem;
    }

    .program-hero-text {
        font-size: 1rem;
    }
}
