/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Spasi antar elemen */
}

.navbar .logo img {
    width: 150px;
}

.navbar .menu a {
    color: #244b44;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar .menu a:hover {
    color: #abc927;
}

.navbar .menu .active {
    border-bottom: 2px solid #abc927;
}

.slideshow-container {
    position: sticky;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides.active {
    opacity: 1;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: left;
    padding: 40px;
}

.content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeIn 2s;
}

.content p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 700px;
    animation: fadeIn 2.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.content p {
    font-size: 1em;
}

/* Home Activities */
.home-activities {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.home-activities h2 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 20px;
}

.activities-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.activities-gallery img {
    width: fit-content;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Home Programs */
.home-programs,
.home-menu-sehat,
.home-testimonials {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.home-programs h2,
.home-menu-sehat h2,
.home-testimonials h2 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 20px;
}

.programs-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.menu-gallery,
.testimonials-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.program-item,
.menu-item,
.testimonial-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    max-width: calc(33.333% - 20px);
}

.program-item img,
.menu-item img,
.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.welcome-section {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.welcome-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.welcome-section p {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
}

.zoom-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.zoom-container {
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.zoom-container h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
}

.zoom-container .desc {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
}

.zoom-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.day-choice {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.day-radio input[type="radio"] {
    display: none;
}

.day-radio span {
    display: inline-block;
    padding: 14px 30px;
    background: #f0f0f0;
    color: #333;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 3px 3px 8px #dcdcdc, -3px -3px 8px #ffffff;
    cursor: pointer;
}

.day-radio input[type="radio"]:checked+span {
    background-color: #abc927;
    color: white;
}

.day-radio span:hover {
    background-color: #244b44;
    color: #fff;
}

.phone-input-modern {
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #f0f0f0;
    font-size: 1rem;
    box-shadow: inset 2px 2px 5px #dcdcdc, inset -2px -2px 5px #ffffff;
    outline: none;
    width: 50%;
    display: block;
    margin: 0 auto 15px auto; /* Tambahkan jarak bawah di sini */
}

.modern-submit-btn {
    padding: 14px;
    background-color: #abc927;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    width: 50%;
    display: block;
    margin: 0 auto;
}


.modern-submit-btn:hover {
    background-color: #244b44;
}

.note-modern {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.gratis-badge {
    background-color: #e74c3c;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.5);
}


/* Buttons */
.btn {
    display: inline-block;
    background-color: #abc927;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #244b44;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown .dropdown-menu a {
    display: block;
    color: #244b44;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.dropdown .dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown .dropdown-menu a:hover {
    background-color: #f4f4f4;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Profile Section */
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

.profile-card {
    text-align: center;
    padding: 30px;
}

.profile-card img {
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Description Section */
.profile-description {
    margin: 20px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.profile-description h2 {
    font-size: 1.8rem;
    color: #244b44;
    margin-bottom: 10px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.profile-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Menu Sehat Section */
.menu-sehat-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.menu-sehat-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 10px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.menu-sehat-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.menu-sehat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.menu-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 4px solid #abc927;
}

.menu-item h3 {
    font-size: 1.2rem;
    color: #244b44;
    margin: 15px 0;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Join Section */
.join-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
    margin-top: 20px;
}

.join-container p {
    font-size: 1.2rem;
    color: #244b44;
    margin-bottom: 15px;
    font-weight: bold;
}

.join-container .btn {
    background-color: #abc927;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.join-container .btn:hover {
    background-color: #244b44;
    transform: scale(1.05);
}

/*Program Section*/
.programs-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.programs-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 10px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.programs-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.programs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.programs-item {
    display: flex;
    justify-content: space-between;

    align-items: center;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-desc {
    max-width: 50%;
    text-align: left;
}

.program-desc h3 {
    font-size: 1.8rem;
    color: #244b44;
    margin-bottom: 10px;
}

.program-desc p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.program-img {
    max-width: 50%;
}

.program-img img {
    width: 100%;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    background-color: #abc927;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #244b44;
}

/*Testimonials Section*/
.testimonials-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.testimonials-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 10px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.testimonials-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 4px solid #abc927;
}

.testimonial-content {
    padding: 20px;
    text-align: left;
}

.testimonial-content h3 {
    font-size: 1.5rem;
    color: #244b44;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 1rem;
    color: #555;
}

/* Program Detail Section */
.program-detail-container {
    text-align: center;
    padding: 62px;
    background-color: #ffffff;
}

.program-detail-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 20px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.program-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detail-img {
    max-width: 50%;
    text-align: center;
}

.detail-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.detail-desc {
    max-width: 50%;
    text-align: left;
}

.detail-desc p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.detail-desc ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.detail-desc ul li {
    font-size: 1rem;
    color: #244b44;
    margin-bottom: 10px;
}

.detail-desc .btn {
    display: inline-block;
    background-color: #abc927;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.detail-desc .btn-kembali {
    display: inline-block;
    background-color: #c92727;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.detail-desc .btn-kembali:hover {
    background-color: #4b2424;
}

.detail-desc .btn:hover {
    background-color: #244b44;
}

/* Kegiatan Section */
.kegiatan-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.kegiatan-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 10px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.kegiatan-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-kmbl {
    display: inline-block;
    background-color: #c92727;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1%;
}

.btn-kmbl:hover {
    background-color: #4b2424;
}

.testimonial-text {
    overflow: hidden;
    max-height: 100px;
    /* Set the height limit for the visible part */
    position: relative;
}

.more-text {
    display: none;
    /* Hide the rest of the text initially */
}

.btn-more {
    background-color: #abc927;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    /* Set a fixed width if necessary */
}

.btn-more:hover {
    background-color: #244b44;
}

.testimonial-item {
    text-align: center;
    /* Ensure the content inside the item is centered */
}

/* Footer */
.footer {
    background-color: #244b44;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
}

.footer p {
    margin: 0;
}

/* Program Detail Section */
.program-detail-container {
    text-align: center;
    padding: 40px 20px;
    /* Adjusted padding for mobile */
    background-color: #ffffff;
}

.program-detail-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 20px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.program-detail {
    display: flex;
    flex-direction: column;
    /* Changed to column for mobile */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detail-img {
    max-width: 100%;
    /* Changed from 50% to 100% */
    text-align: center;
}

.detail-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.detail-desc {
    max-width: 100%;
    /* Changed from 50% to 100% */
    text-align: left;
}

.detail-desc p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.detail-desc ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.detail-desc ul li {
    font-size: 1rem;
    color: #244b44;
    margin-bottom: 10px;
}

.detail-desc .btn {
    display: inline-block;
    background-color: #abc927;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-bottom: 10px;
    /* Added margin for better spacing on mobile */
}

.detail-desc .btn-kembali {
    display: inline-block;
    background-color: #c92727;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.detail-desc .btn-kembali:hover {
    background-color: #4b2424;
}

.detail-desc .btn:hover {
    background-color: #244b44;
}

/* Kegiatan Section */
.kegiatan-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.kegiatan-container h1 {
    font-size: 2rem;
    color: #244b44;
    margin-bottom: 10px;
    border-bottom: 2px solid #abc927;
    display: inline-block;
    padding-bottom: 5px;
}

.kegiatan-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-kmbl {
    display: inline-block;
    background-color: #c92727;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
    /* Adjusted margin for mobile */
}

.btn-kmbl:hover {
    background-color: #4b2424;
}

.testimonial-text {
    overflow: hidden;
    max-height: 100px;
    /* Set the height limit for the visible part */
    position: relative;
}

.more-text {
    display: none;
    /* Hide the rest of the text initially */
}

.btn-more {
    background-color: #abc927;
    color: white;
    padding: 8px 15px;
    /* Adjusted padding for mobile */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    /* Adjusted width for mobile */
    max-width: 150px;
    /* Added max-width */
}

.btn-more:hover {
    background-color: #244b44;
}

.testimonial-item {
    text-align: center;
    /* Ensure the content inside the item is centered */
}

/* Social Media Section */
.social-media {
    text-align: center;
    margin: 40px 0;
}

.social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.social-media a {
    display: inline-block;
    margin: 0 15px;
    font-size: 32px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-media a:hover i.fa-whatsapp {
    color: #128C7E;
}

.social-media a:hover i.fa-instagram {
    color: #E1306C;
}

.social-media a:hover i.fa-facebook {
    color: #4267B2;
}

/* Footer */
.footer {
    background-color: #244b44;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    /* Adjusted padding for mobile */
    font-size: 0.9rem;
    position: relative;
}

.footer p {
    margin: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #244b44;
    font-size: 1.5rem;
    cursor: pointer;
}

.hamburger:focus {
    outline: none;
}

.harga {
    color: #2d572c;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.notif-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4BB543;
    /* warna hijau sukses */
    color: white;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
    text-align: center;
    width: 300px;
    /* Ukuran kotak di desktop */
    max-width: 90%;
    /* Supaya responsif di layar kecil */
}

/* Saat muncul */
.notif-popup.show {
    opacity: 1;
    visibility: visible;
}

/* Profil Coach */
.coach-profile {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.coach-profile h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.coach-card {
    margin: 0 auto;
    max-width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
}

.coach-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.coach-card h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #abc927;
}

.coach-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsif untuk mobile: ubah padding dan font */
@media (max-width: 500px) {
    .notif-popup {
        font-size: 14px;
        padding: 14px 20px;
        width: 90%;
    }
}

@media (max-width: 500px) {
    .coach-card p {
        font-size: 0.7rem;
    }
}

@media (max-width: 500px) {
    .profile-description p {
        font-size: 0.7rem;
    }
}

@media (max-width: 500px) {
    .phone-input-modern,
    .modern-submit-btn {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .zoom-container desc {
        font-size: 0.7rem;
    }
}

@media (max-width: 500px) {
    .zoom-container h2 {
        font-size: 1.8rem;
    }
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #abc927;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
        align-items: flex-start;
    }

    .navbar .menu.active {
        display: flex;
    }

    .navbar .menu a {
        margin: 10px 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        width: 100%;
        font-size: 0.9rem;
    }

    .navbar .menu a:last-child {
        border-bottom: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        display: none;
        padding-left: 20px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 1.2rem;
    }

    .content h1 {
        font-size: 2em;
    }

    .content p {
        font-size: 1rem;
    }

    /* Perbarui bagian gambar */
    .activities-gallery img,
    .program-item img,
    .menu-item img,
    .testimonial-item img {
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .program-item,
    .menu-item,
    .testimonial-item {
        max-width: 100%;
    }

    .programs-item {
        flex-direction: column;
    }

    .program-desc,
    .program-img {
        max-width: 100%;
        text-align: center;
    }

    .detail-img img {
        max-width: 100%;
        height: auto;
    }

    .btn,
    .btn-more,
    .btn-kmbl {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 12px 0;
    }

    .profile-card img {
        width: 100%;
        /* Membuat gambar responsif sesuai lebar kontainer */
        height: auto;
        /* Menjaga proporsi gambar */
        object-fit: fill;
        /* Gambar akan menyesuaikan tanpa terpotong */
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        width: 120px;
    }

    .content h1 {
        font-size: 1.5em;
    }

    .content p {
        font-size: 0.9em;
    }

    .home-activities h2,
    .home-programs h2,
    .home-menu-sehat h2,
    .home-testimonials h2,
    .programs-container h1,
    .testimonials-container h1,
    .kegiatan-container h1 {
        font-size: 1.5rem;
    }

    .menu-item h3 {
        font-size: 1rem;
    }

    .activities-gallery,
    .programs-gallery,
    .menu-gallery,
    .testimonials-gallery,
    .programs,
    .testimonials {
        flex-direction: column;
    }

    .programs-item,
    .testimonial-item,
    .program-item,
    .menu-item {
        max-width: 100%;
    }
}