    html {
        scroll-behavior: smooth;
    }

    strong {
        font-weight: normal;
    }

    .hero-section {
        margin-top: 70px;
        position: relative;
        overflow: hidden;
    }

    .hero-slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero-slider-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .hero-slide {
        flex: 0 0 100%;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .hero-slide .container {
        position: relative;
        z-index: 2;
    }

    .hero-slide-1 {
        background-image: url('https://images.unsplash.com/photo-1610375233612-d6a66ac3af99?w=1200&h=500&fit=crop');
    }

    .hero-slide-2 {
        background-image: url('https://images.unsplash.com/photo-1526481280693-3bfa7568e0f3?w=1200&h=500&fit=crop');
    }

    .hero-slide-3 {
        background-image: url('https://images.unsplash.com/photo-1503899036084-c55cdd92da26?w=1200&h=500&fit=crop');
    }

    .hero-slide-4 {
        background-image: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1200&h=500&fit=crop');
    }

    .hero-slide h1 {
        font-size: 3rem;
        font-weight: bold;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-slide p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        color: white;
        font-size: 1.5rem;
    }

    .hero-slider-btn:hover {
        background: rgba(220, 53, 69, 0.8);
        transform: translateY(-50%) scale(1.1);
    }

    .hero-btn-prev {
        left: 20px;
    }

    .hero-btn-next {
        right: 20px;
    }

    .hero-indicators {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-dot.active {
        background: #dc3545;
        width: 30px;
        border-radius: 6px;
    }

    .hero-dot:hover {
        background: #dc3545;
        transform: scale(1.2);
    }

    .hero-slide .container {
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .hero-slide {
            min-height: 400px;
        }

        .hero-slide h1 {
            font-size: 1.8rem;
        }

        .hero-slide p {
            font-size: 1rem;
        }

        .hero-slider-btn {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
    }

    .whatsapp-bubble {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 1000;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .whatsapp-bubble .bubble-button {
        width: 65px;
        height: 65px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .whatsapp-bubble .bubble-button i {
        font-size: 35px;
        color: white;
    }

    .whatsapp-bubble .bubble-button:hover {
        transform: scale(1.1);
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .whatsapp-tooltip {
        position: absolute;
        left: 75px;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        color: #333;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .whatsapp-bubble:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        left: 85px;
    }

    .whatsapp-tooltip::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 50%;
        transform: translateY(-50%);
        border-width: 6px 8px 6px 0;
        border-style: solid;
        border-color: transparent white transparent transparent;
    }

    @media (max-width: 768px) {
        .whatsapp-bubble {
            bottom: 20px;
            left: 20px;
        }

        .whatsapp-bubble .bubble-button {
            width: 55px;
            height: 55px;
        }

        .whatsapp-bubble .bubble-button i {
            font-size: 28px;
        }

        .whatsapp-tooltip {
            display: none;
        }
    }

    .infinite-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .infinite-track {
        display: flex;
        gap: 1.5rem;
        width: max-content;
        animation: scrollInfinite 20s linear infinite;
    }

    @keyframes scrollInfinite {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .infinite-wrapper:hover .infinite-track {
        animation-play-state: paused;
    }

    .card-hover:hover {
        transform: translateY(-5px);
        transition: 0.3s;
    }

    .nav-link.active {
        color: #dc3545 !important;
        font-weight: bold;
    }

    section {
        scroll-margin-top: 70px;
    }

    .fade-in {
        animation: fadeIn 0.3s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .partner-card {
        min-width: 180px;
        background: white;
        border-radius: 12px;
        padding: 1rem 1.5rem;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        background: #dc3545;
        color: white;
    }

    .gallery-container {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .gallery-track {
        display: flex;
        transition: transform 0.3s ease-out;
        cursor: grab;
    }

    .gallery-track.dragging {
        cursor: grabbing;
        transition: none;
    }

    .gallery-slide {
        flex: 0 0 100%;
        display: flex;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .gallery-card {
        flex: 1;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .gallery-img {
        width: 100%;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .gallery-img i {
        font-size: 64px;
        color: white;
        opacity: 0.8;
    }

    .gallery-caption {
        padding: 1rem;
        text-align: center;
        background: white;
    }

    .gallery-caption h5 {
        margin: 0;
        color: #333;
        font-weight: 600;
    }

    .gallery-caption p {
        margin: 0.5rem 0 0;
        color: #666;
        font-size: 0.9rem;
    }

    .gallery-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(220, 53, 69, 0.9);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .gallery-btn:hover {
        background: #dc3545;
        transform: translateY(-50%) scale(1.1);
    }

    .gallery-btn i {
        color: white;
        font-size: 20px;
    }

    .gallery-btn-prev {
        left: -20px;
    }

    .gallery-btn-next {
        right: -20px;
    }

    .carousel-indicators-custom {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .indicator-dot {
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator-dot.active {
        background: #dc3545;
        width: 60px;
    }

    @media (max-width: 768px) {
        .gallery-slide {
            flex-direction: column;
            gap: 1rem;
        }

        .gallery-btn {
            width: 35px;
            height: 35px;
        }

        .gallery-btn-prev {
            left: -10px;
        }

        .gallery-btn-next {
            right: -10px;
        }

        .gallery-img {
            height: 200px;
        }
    }

    .ssw-info-box {
        background: #f8f9fa;
        border-left: 4px solid #dc3545;
        padding: 1.5rem;
        border-radius: 12px;
        margin: 2rem 0;
    }

    .ssw-step {
        background: white;
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        background: #dc3545;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-weight: bold;
    }

    .benefit-list li {
        margin-bottom: 0.5rem;
    }

    .job-field-badge {
        display: inline-block;
        background: #dc3545;
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        margin: 0.3rem;
        font-size: 0.85rem;
    }

    /* ========== CHART STYLING ========== */
    .chart-container {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin: 2rem 0;
    }

    .chart-bar-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.8rem;
    }

    .chart-label {
        min-width: 120px;
        font-weight: 500;
        text-align: right;
    }

    .chart-bar-track {
        flex: 1;
        height: 28px;
        background: #f0f0f0;
        border-radius: 14px;
        overflow: hidden;
    }

    .chart-bar-fill {
        height: 100%;
        border-radius: 14px;
        background: linear-gradient(90deg, #dc3545, #ff6b6b);
        transition: width 1s ease;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 10px;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .chart-bar-fill.blue {
        background: linear-gradient(90deg, #4a6fa5, #6b9bd2);
    }

    .chart-bar-fill.green {
        background: linear-gradient(90deg, #28a745, #5ddb7c);
    }

    .chart-bar-fill.orange {
        background: linear-gradient(90deg, #fd7e14, #ffb347);
    }

    .chart-bar-fill.purple {
        background: linear-gradient(90deg, #6f42c1, #a68bdb);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #dc3545;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #666;
    }

    .timeline-chart {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        height: 200px;
        padding: 1rem 0;
        border-bottom: 2px solid #ddd;
    }

    .timeline-bar {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .timeline-bar .bar {
        width: 40px;
        background: #dc3545;
        border-radius: 6px 6px 0 0;
        min-height: 10px;
        transition: height 0.8s ease;
    }

    .timeline-bar .year {
        font-size: 0.75rem;
        color: #666;
    }

    .timeline-bar .value {
        font-size: 0.75rem;
        font-weight: 600;
        color: #333;
    }

    .achievement-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .achievement-card {
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    @media (max-width: 768px) {
        .chart-bar-wrapper {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.3rem;
        }

        .chart-label {
            min-width: auto;
            text-align: left;
            font-size: 0.9rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }

        .timeline-bar .bar {
            width: 25px;
        }
    }

    /* ========== GALERI INFINITE SCROLL + LIGHTBOX ========== */
    .gallery-container {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .gallery-track {
        display: flex;
        transition: transform 0.5s ease-out;
        cursor: grab;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .gallery-track.dragging {
        cursor: grabbing;
        transition: none;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 220px;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-item .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        font-size: 0.85rem;
        font-weight: 500;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    /* ========== LIGHTBOX ========== */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.92);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s ease;
    }

    .lightbox.active {
        display: flex;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 85vh;
        border-radius: 12px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        object-fit: contain;
    }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 2.5rem;
        cursor: pointer;
        transition: transform 0.3s ease;
        z-index: 10;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-close:hover {
        transform: rotate(90deg);
        background: rgba(255, 255, 255, 0.25);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        background: rgba(0, 0, 0, 0.5);
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        z-index: 10;
    }

    /* ========== RESPONSIVE FIX ========== */

    /* Reset & Base */
    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* ========== NAVBAR RESPONSIVE ========== */
    .navbar-brand img {
        max-height: 50px;
        width: auto;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }

    .navbar-nav .btn {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    @media (max-width: 991px) {
        .navbar-nav {
            padding: 1rem 0;
        }

        .navbar-nav .nav-item {
            padding: 0.2rem 0;
        }

        .navbar-nav .btn {
            margin-left: 0 !important;
            width: 100%;
            text-align: center;
        }

        .navbar-collapse {
            max-height: 80vh;
            overflow-y: auto;
        }
    }

    /* ========== HERO RESPONSIVE ========== */
    .hero-slide {
        min-height: 500px;
        padding: 2rem 1rem;
    }

    .hero-slide h1 {
        font-size: 2.8rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }

    @media (max-width: 992px) {
        .hero-slide {
            min-height: 450px;
        }

        .hero-slide h1 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .hero-slide {
            min-height: 380px;
            padding: 1.5rem 1rem;
        }

        .hero-slide h1 {
            font-size: 1.6rem;
        }

        .hero-slide p {
            font-size: 0.95rem;
        }

        .hero-slide .btn {
            font-size: 0.9rem;
            padding: 0.4rem 1.2rem;
        }

        .hero-slider-btn {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }

        .hero-btn-prev {
            left: 5px;
        }

        .hero-btn-next {
            right: 5px;
        }
    }

    @media (max-width: 480px) {
        .hero-slide {
            min-height: 320px;
        }

        .hero-slide h1 {
            font-size: 1.3rem;
        }

        .hero-slide p {
            font-size: 0.85rem;
        }

        .hero-slide .btn {
            font-size: 0.8rem;
            padding: 0.3rem 1rem;
        }
    }

    /* ========== PROGRAM RESPONSIVE ========== */
    #program .card {
        min-height: 160px;
    }

    #program .card h5 {
        font-size: 1.1rem;
    }

    #program .card p {
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        #program .card {
            min-height: 140px;
        }

        #program .card h5 {
            font-size: 1rem;
        }

        #program .card p {
            font-size: 0.85rem;
        }
    }

    /* ========== SSW TABLE RESPONSIVE ========== */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table {
        min-width: 600px;
        font-size: 0.95rem;
    }

    .table th,
    .table td {
        padding: 0.75rem;
        vertical-align: middle;
    }

    @media (max-width: 768px) {
        .table {
            font-size: 0.85rem;
            min-width: 500px;
        }

        .table th,
        .table td {
            padding: 0.5rem;
        }
    }

    /* ========== SSW STEP RESPONSIVE ========== */
    .ssw-step {
        padding: 0.8rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ssw-step span {
        font-size: 0.9rem;
        text-align: center;
    }

    @media (max-width: 768px) {
        .ssw-step {
            min-height: 100px;
            padding: 0.6rem;
        }

        .ssw-step span {
            font-size: 0.85rem;
        }

        .step-number {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }
    }

    /* ========== JOB BADGE RESPONSIVE ========== */
    .job-field-badge {
        display: inline-block;
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
        margin: 0.2rem;
    }

    @media (max-width: 576px) {
        .job-field-badge {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            margin: 0.15rem;
        }
    }

    /* ========== HOTEL SECTION RESPONSIVE ========== */
    #hotel .card {
        height: 100%;
    }

    #hotel .card h4 {
        font-size: 1.2rem;
    }

    #hotel .card li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
        #hotel .card h4 {
            font-size: 1rem;
        }

        #hotel .card li {
            font-size: 0.85rem;
        }

        #hotel .col-md-6 {
            margin-bottom: 1rem;
        }
    }

    /* ========== CAPAIAN / ACHIEVEMENT RESPONSIVE ========== */
    .achievement-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .achievement-card {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .achievement-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.8rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }

        .stat-label {
            font-size: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .achievement-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }

        .achievement-card {
            padding: 0.8rem;
        }

        .stat-number {
            font-size: 1.5rem;
        }
    }

    /* ========== CHART RESPONSIVE ========== */
    .chart-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .chart-bar-wrapper {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .chart-label {
        min-width: 120px;
        font-size: 0.9rem;
    }

    .chart-bar-track {
        flex: 1;
        height: 24px;
    }

    .chart-bar-fill {
        font-size: 0.75rem;
    }

    @media (max-width: 768px) {
        .chart-container {
            padding: 1rem;
        }

        .chart-bar-wrapper {
            flex-direction: column;
            align-items: stretch;
            gap: 0.3rem;
        }

        .chart-label {
            min-width: auto;
            text-align: left;
            font-size: 0.85rem;
        }

        .chart-bar-track {
            height: 20px;
        }

        .chart-bar-fill {
            font-size: 0.7rem;
            padding-right: 5px;
        }
    }

    /* ========== TIMELINE CHART RESPONSIVE ========== */
    .timeline-chart {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        height: 200px;
        padding: 1rem 0.5rem;
        gap: 0.3rem;
    }

    .timeline-bar .bar {
        width: 30px;
        min-height: 10px;
    }

    .timeline-bar .year {
        font-size: 0.7rem;
    }

    .timeline-bar .value {
        font-size: 0.7rem;
    }

    @media (max-width: 768px) {
        .timeline-chart {
            height: 160px;
            gap: 0.2rem;
        }

        .timeline-bar .bar {
            width: 20px;
        }

        .timeline-bar .year {
            font-size: 0.6rem;
        }

        .timeline-bar .value {
            font-size: 0.6rem;
        }
    }

    @media (max-width: 480px) {
        .timeline-chart {
            height: 130px;
            gap: 0.1rem;
        }

        .timeline-bar .bar {
            width: 14px;
        }

        .timeline-bar .year {
            font-size: 0.5rem;
        }

        .timeline-bar .value {
            font-size: 0.5rem;
        }
    }

    /* ========== VISI MISI RESPONSIVE ========== */
    #visi-misi .card {
        min-height: 250px;
    }

    #visi-misi .card p,
    #visi-misi .card li {
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        #visi-misi .card {
            min-height: auto;
        }

        #visi-misi .card p,
        #visi-misi .card li {
            font-size: 0.9rem;
        }

        #visi-misi .col-lg-6 {
            margin-bottom: 1rem;
        }
    }

    /* ========== ABOUT RESPONSIVE ========== */
    #tentang .card {
        padding: 1.2rem;
    }

    #tentang p {
        font-size: 1rem;
    }

    @media (max-width: 992px) {
        #tentang .col-lg-7 {
            margin-bottom: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        #tentang p {
            font-size: 0.9rem;
        }

        #tentang .card {
            padding: 1rem;
        }

        #tentang .stat-number {
            font-size: 1.5rem;
        }
    }

    /* ========== GALLERY RESPONSIVE ========== */
    .gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }

    .gallery-wrapper {
        padding: 0 0.5rem;
    }

    @media (max-width: 992px) {
        .gallery-item {
            flex: 0 0 230px;
            height: 180px;
        }
    }

    @media (max-width: 768px) {
        .gallery-item {
            flex: 0 0 180px;
            height: 140px;
        }

        .gallery-track {
            gap: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .gallery-item {
            flex: 0 0 140px;
            height: 110px;
        }

        .gallery-track {
            gap: 0.5rem;
        }
    }

    /* ========== PARTNER INFINITE RESPONSIVE ========== */
    .partner-card {
        min-width: 180px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .partner-card {
            min-width: 140px;
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
        }

        .infinite-track {
            gap: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .partner-card {
            min-width: 110px;
            padding: 0.5rem 0.8rem;
            font-size: 0.7rem;
        }
    }

    /* ========== FOOTER RESPONSIVE ========== */
    footer p {
        margin-bottom: 0.3rem;
        font-size: 0.95rem;
    }

    footer small {
        font-size: 0.8rem;
    }

    @media (max-width: 768px) {
        footer p {
            font-size: 0.85rem;
        }

        footer small {
            font-size: 0.7rem;
        }
    }

    /* ========== LIGHTBOX RESPONSIVE ========== */
    .lightbox img {
        max-width: 90%;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 20px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    @media (max-width: 768px) {
        .lightbox img {
            max-width: 95%;
            max-height: 70vh;
        }

        .lightbox-close {
            top: 10px;
            right: 15px;
            width: 40px;
            height: 40px;
            font-size: 1.8rem;
        }

        .lightbox-nav {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }
    }

    @media (max-width: 480px) {
        .lightbox img {
            max-width: 98%;
            max-height: 60vh;
        }

        .lightbox-close {
            top: 5px;
            right: 10px;
            width: 35px;
            height: 35px;
            font-size: 1.5rem;
        }

        .lightbox-nav {
            width: 35px;
            height: 35px;
            font-size: 1.2rem;
        }

        .lightbox-prev {
            left: 5px;
        }

        .lightbox-next {
            right: 5px;
        }

        .lightbox-counter {
            font-size: 0.7rem;
            padding: 0.3rem 1rem;
            bottom: 15px;
        }
    }

    /* ========== CTA RESPONSIVE ========== */
    #daftar h2 {
        font-size: 2.2rem;
    }

    .ssw-badge {
        display: block;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
        font-size: clamp(14px, 2vw, 18px);
    }

    .chart-container {
        overflow-x: auto;
    }

    .timeline-chart {
        display: flex;
        min-width: 500px;
    }

    /* ========== RESPONSIVE END ========== */

    #daftar p {
        font-size: 1.1rem;
    }

    #daftar .btn {
        font-size: 1.1rem;
        padding: 0.6rem 2rem;
    }

    @media (max-width: 768px) {
        #daftar h2 {
            font-size: 1.6rem;
        }

        #daftar p {
            font-size: 0.95rem;
        }

        #daftar .btn {
            font-size: 0.95rem;
            padding: 0.5rem 1.5rem;
        }
    }

    @media (max-width: 480px) {
        #daftar h2 {
            font-size: 1.3rem;
        }

        #daftar p {
            font-size: 0.85rem;
        }

        #daftar .btn {
            font-size: 0.85rem;
            padding: 0.4rem 1.2rem;
        }
    }

    /* ========== WHATSAPP BUBBLE RESPONSIVE ========== */
    .whatsapp-bubble {
        bottom: 30px;
        left: 30px;
    }

    .whatsapp-bubble .bubble-button {
        width: 65px;
        height: 65px;
    }

    .whatsapp-bubble .bubble-button i {
        font-size: 35px;
    }

    @media (max-width: 768px) {
        .whatsapp-bubble {
            bottom: 20px;
            left: 20px;
        }

        .whatsapp-bubble .bubble-button {
            width: 55px;
            height: 55px;
        }

        .whatsapp-bubble .bubble-button i {
            font-size: 28px;
        }

        .whatsapp-tooltip {
            display: none;
        }
    }

    /* ========== UTILITY ========== */
    .text-center {
        text-align: center;
    }

    .mt-3 {
        margin-top: 1rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    .mt-5 {
        margin-top: 3rem;
    }

    .mb-3 {
        margin-bottom: 1rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mb-5 {
        margin-bottom: 3rem;
    }

    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    @media (max-width: 768px) {
        .py-5 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .mt-5 {
            margin-top: 2rem;
        }

        .mb-5 {
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 768px) {
        .gallery-item {
            flex: 0 0 200px;
            height: 160px;
        }

        .lightbox img {
            max-width: 95%;
            max-height: 70vh;
        }

        .lightbox-close {
            top: 10px;
            right: 15px;
            width: 40px;
            height: 40px;
            font-size: 1.8rem;
        }

        .lightbox-nav {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }
    }

    /* ========== INFINITE SCROLL ========== */
    .gallery-wrapper {
        overflow: hidden;
        position: relative;
    }

    .gallery-track-clone {
        display: flex;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    [data-key] {
        transition: all 0.2s ease;
    }

    /* ========== PAGE HERO (sub pages) ========== */
    .page-hero {
        margin-top: 70px;
        background: linear-gradient(135deg, #dc3545 0%, #a52834 100%);
        color: white;
        padding: 4rem 0 3rem;
        text-align: center;
    }

    .page-hero h1 {
        font-weight: 700;
        font-size: 2.4rem;
        margin-bottom: 0.5rem;
    }

    .page-hero p {
        font-size: 1.05rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

    .page-hero .breadcrumb-custom {
        font-size: 0.85rem;
        opacity: 0.85;
        margin-bottom: 1rem;
    }

    .page-hero .breadcrumb-custom a {
        color: white;
        text-decoration: none;
    }

    .page-hero .breadcrumb-custom a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .page-hero {
            padding: 2.5rem 0 2rem;
        }

        .page-hero h1 {
            font-size: 1.5rem;
        }

        .page-hero p {
            font-size: 0.9rem;
        }
    }

    /* ========== GOAL / FEATURE CARDS ========== */
    .goal-card {
        background: white;
        border-radius: 16px;
        padding: 1.5rem 1.2rem;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: 0.3s;
    }

    .goal-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .goal-card i {
        font-size: 2rem;
        color: #dc3545;
        margin-bottom: 0.8rem;
    }

    .goal-card h5 {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .goal-card p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
    }

    /* ========== DONUT / SIMPLE PERCENT CHART ========== */
    .donut-chart {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .donut-chart .donut-center {
        width: 120px;
        height: 120px;
        background: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .donut-center .big-num {
        font-size: 1.6rem;
        font-weight: 700;
        color: #dc3545;
    }

    .donut-center .small-label {
        font-size: 0.7rem;
        color: #666;
        text-align: center;
    }

    .legend-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-right: 6px;
    }

    /* ========== PROGRAM CARD LINK ========== */
    .program-card-link {
        display: inline-block;
        margin-top: 0.8rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #dc3545;
        text-decoration: none;
    }

    .program-card-link:hover {
        text-decoration: underline;
        color: #a52834;
    }

    /* ========== NUMBERED CIRCLE STEP (reuse ssw-step look with icon) ========== */
    .flow-step {
        background: white;
        border-radius: 12px;
        padding: 1.2rem 1rem;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
        height: 100%;
    }

    .flow-step .flow-icon {
        width: 48px;
        height: 48px;
        background: #dc3545;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.8rem;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .flow-step h6 {
        font-weight: 700;
        margin-bottom: 0.4rem;
        font-size: 0.95rem;
    }

    .flow-step p {
        font-size: 0.82rem;
        color: #666;
        margin: 0;
    }

    /* ========== DURATION BADGE ROW ========== */
    .duration-badge {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: #fff0f1;
        border: 3px solid #dc3545;
        margin: 0.5rem;
    }

    .duration-badge .num {
        font-size: 1.6rem;
        font-weight: 700;
        color: #dc3545;
        line-height: 1;
    }

    .duration-badge .unit {
        font-size: 0.7rem;
        color: #666;
    }

    /* ========== FACILITY LIST ========== */
    .facility-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        background: white;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin-bottom: 0.8rem;
    }

    .facility-item i {
        font-size: 1.4rem;
        color: #dc3545;
        min-width: 32px;
        text-align: center;
    }

    .facility-item span {
        font-size: 0.92rem;
    }