h1,
h2,
h3,
h4 {
    line-height: 1.1;
    margin: 0;
}

p {
    font-size: 15px;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

input, button, textarea {
    font-family: 'Poppins', sans-serif;
}

/* =================================================================================
=================================[ WRAPPER GLOBAL ]=================================
================================================================================= */

.wrapper-mosque {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px 0px 0px;
    background-image:
        linear-gradient(rgba(1, 89, 49, 0.6), rgba(1, 89, 49, 0.6)),
        url('../images/bg-mosque.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper-mosque-page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 50px 150px 50px;
    background-image:
        linear-gradient(rgba(1, 89, 49, 0.6), rgba(1, 89, 49, 0.6)),
        url('../images/bg-mosque.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper-quran-page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 100px 50px;
    background-image:
        linear-gradient(rgba(1, 89, 49, 0.6), rgba(1, 89, 49, 0.6)),
        url('../images/bg-quran.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper-quran-page-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 100px 50px;
    background-image:
        linear-gradient(rgba(1, 89, 49, 0.6), rgba(1, 89, 49, 0.6)),
        url('../images/bg-quran-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper-quran-page-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 200px 50px;
    background-image:
        linear-gradient(rgba(1, 89, 49, 0.6), rgba(1, 89, 49, 0.6)),
        url('../images/bg-quran-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrapper-white-1 {
    width: 100%;
    display: flex;
    background-color: #FFFFFF;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 100px 50px;
}

.wrapper-white-2 {
    width: 100%;
    display: flex;
    background-color: #F1F5F8;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 100px 50px;
}

.wrapper-white-3 {
    width: 100%;
    display: flex;
    background-color: #F1F5F8;
    justify-content: center;
    align-items: center;
    padding: 0px 50px 100px 50px;
}

.wrapper-green {
    width: 100%;
    display: flex;
    background-color: #015931;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 100px 50px;
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-head h1 {
    text-align: center;
    color: #015931;
    font-size: 30px;
}

.section-head p {
    text-align: center;
    color: #000;
}

@media (max-width: 1024px) {

    .wrapper-white-1,
    .wrapper-white-2,
    .wrapper-white-3,
    .wrapper-mosque-page,
    .wrapper-quran-page,
    .wrapper-quran-page-2,
    .wrapper-quran-page-3,
    .wrapper-green {
        padding: 50px 20px 50px 20px;
    }
}

/* =================================================================================
================================[ HEADER & FOOTER ]=================================
================================================================================= */

/* ================== HEADER ================== */
header {
    width: 100%;
    background-color: #ffffff;
    color: white;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

nav {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    width: 50%;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.nav-link.active {
    color: #015931 !important;
    font-weight: 600;
}

.logo {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.logo1 {
    width: 150px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #015931;
}

.buttons {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.buttons-mobile {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    background: #ffffff;
    min-width: 160px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 999;
}

.dropdown-menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f2f2f2;
    color: #015931;
}

.dropdown-menu a.active {
    color: #015931;
    font-weight: 600;
}

@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

@media (max-width: 1024px) {

    header {
        padding: 10px 20px;
    }

    nav {
        justify-content: space-between;
    }

    .logo1 {
        width: 100px;
    }

    .logo2 {
        width: 120px;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 100px;
        right: 20px;
        background-color: #ffffff;
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 180px;
        padding: 20px;
        border-radius: 8px;
    }

    .menu.show {
        display: flex;
    }

    .nav-link {
        font-size: 14px;
        margin: 0;
    }

    .buttons {
        display: none;
    }

    .buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .dropdown-menu.show {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 0px;
    }

}

/* ================== FOOTER ================== */
footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #363636;
    color: #ffffff;
    text-align: center;
    padding: 100px 50px;
}

.footer-content {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: space-between;
}

.footer-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    flex: 1;
    text-align: left;
}

.footer-item h3 {
    font-size: 25px;
    margin-bottom: 12px;
    color: #ff6a00;
}

.footer-item p {
    margin-bottom: 15px;
}

.footer-item-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.footer-item-child i {
    color: #ff6a00;
}

.footer-item-child p {
    flex: 1;
    margin: 0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 15px;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 20px;
}

.footer-logo2 {
    width: 150px;
}

.footer-desc p {
    font-size: 15px;
    color: #ffffff;
}

.footer-bottom {
    background-color: #015931;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}

.footer-bottom a {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-social img {
    width: 50px;
    transition: all 0.3s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-social-icons {
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-social-icons {
    font-size: 25px;
    color: #2A348D;
    text-decoration: none;
    transition: 0.3s;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

@media (max-width: 1024px) {
    footer {
        padding: 50px 20px;
    }

    .footer-logo {
        padding: 20px;
    }

    .footer-logo2 {
        width: 100px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-item {
        text-align: left;
    }

    .footer-social {
        flex-direction: row;
    }

    .footer-social img {
        width: 40px;
    }

}

/* =================================================================================
=================================[ HOME PAGE ]=====================================
================================================================================= */

/* ========== HERO ========== */
.hero {
    width: 100%;
    padding: 0;
    gap: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.hero h2 {
    margin: 0;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
}

.hero .heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero .buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.hero .social a {
    width: 35px;
    height: 35px;
    background: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.hero .social i {
    color: white;
    font-size: 20px;
}

.hero .social a:hover {
    transform: scale(1.1);
}

.hero .mosque {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .hero .heading {
        padding: 0px 20px 0px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 20px;
    }

}

/* ========== JADWAL SHALAT ========== */

.jadwal {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.jadwal-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    justify-content: center;
    padding: 80px 20px;
}

.jadwal-card {
    position: relative;
    width: 100%;
    max-width: 170px;
    margin: auto;
}

.jadwal-card .bg {
    width: 100%;
    display: block;
}

.jadwal-card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

.jadwal-card .title {
    font-weight: 700;
    font-size: 18px;
}

.jadwal-card .arab {
    color: #FFC107;
    font-size: 18px;
    margin: 5px 0;
}

.jadwal-card .time {
    margin-top: 10px;
    background: #0d5c3c;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 1024px) {
    .jadwal-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .jadwal-container {
        grid-template-columns: 1fr;
    }
}

/* ========== ABOUT HOME ========== */
.about-home {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.about-home .left {
    flex: 1;
}

.about-home .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-items: start;
}

.about-home .right .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.about-home .right .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    font-size: 15px;
}

.about-home .right .title h1 {
    color: #015931;
    font-size: 30px;
}

.about-home .left img {
    width: 100%;
}

@media (max-width: 1024px) {
    .about-home {
        flex-direction: column;
    }
}

/* ========== ANGGOTA HOME ========== */

.anggota-home {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.anggota-home .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media(max-width: 1024px) {

    .anggota-home .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ========== PRODUCT HOME ========== */
.product-home {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.product-home .left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: start;
    color: #FFFFFF;
}

.product-home .left h1 {
    font-size: 40px;
}

.product-home .right {
    flex: 1;
}

.product-home .right img {
    width: 100%;
}

.product-home .left .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

@media(max-width: 1024px) {
    .product-home {
        flex-direction: column;
    }

    .product-home .left h1 {
        font-size: 30px;
    }

}

/* ========== BERITA HOME ========== */
.berita-home {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.berita-home .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media(max-width: 1024px) {
    .berita-home .grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SPONSOR HOME ========== */
.sponsor {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.sponsor .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media(max-width: 1024px) {
    .sponsor .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =================================================================================
================================[ ABOUT PAGE ]====================================
================================================================================= */

/* ========== ABOUT HERO ========== */
.about-hero {
    width: 100%;
    max-width: 1400px;
    gap: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #FFFFFF;
}

.about-hero h1 {
    font-size: 50px;
    font-weight: 700;
}

.about-hero h2 {
    margin: 0;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
}

.about-hero .heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.about-hero .buttons {
    width: 100%;
    display: flex;
    justify-content: start;
}

.about-hero i {
    margin-left: 10px;
}

@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 35px;
    }

    .about-hero h2 {
        font-size: 20px;
    }
}

/* ========== ABOUT ========== */
.about {
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 50px;
}

.about .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about .left h1 {
    color: #015931;
    font-size: 30px;
}

.about .left .content {
    display: flex;
    flex-direction: column;
}

.about .left .content p {
    font-size: 15px;
    margin-bottom: 10px;
}

.about .left .content ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.about .left .content li {
    margin-bottom: 8px;
}

.about .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .right img {
    width: 100%;
}

@media (max-width: 1024px) {
    .about {
        flex-direction: column-reverse;
    }
}

/* ========== SEJARAH ========== */
.sejarah {
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 50px;
}

.sejarah .left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sejarah .left img {
    width: 100%;
}

.sejarah .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sejarah .right h1 {
    color: #ff6a00;
    font-size: 30px;
}

.sejarah .right .content {
    display: flex;
    flex-direction: column;
}

.sejarah .right .content p {
    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.sejarah .right .content ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.sejarah .right .content li {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .sejarah {
        flex-direction: column-reverse;
    }
}

/* ========== VISI MISI ========== */

.visi-misi {
    display: flex;
    flex-direction: row;
}

.visi-misi .left,
.visi-misi .right {
    flex: 0 0 50%;
}

.visi-misi .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 30px;
    padding: 100px 50px;
}

.visi-misi .left h1 {
    color: #015931;
    font-size: 30px;
}

.visi-misi .left h2 {
    color: #015931;
    margin-bottom: 10px;
}

.visi-misi .right {
    display: flex;
}

.visi-misi .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .visi-misi {
        flex-direction: column-reverse;
    }

    .visi-misi .left,
    .visi-misi .right {
        flex: 100%;
        width: 100%;
    }

    .visi-misi .left {
        padding: 50px 20px;
    }
}

/* ========== TAGLINE ========== */

.tagline {
    display: flex;
    flex-direction: row;
}

.tagline .left,
.tagline .right {
    flex: 0 0 50%;
}

.tagline .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 30px;
    padding: 100px 50px;
}

.tagline .right p {
    font-size: 15px;
    margin-bottom: 10px;
}

.tagline .right ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.tagline .right li {
    margin-bottom: 8px;
    list-style: decimal;
}


.tagline .right h1 {
    color: #015931;
    font-size: 30px;
}

.tagline .right h2 {
    color: #015931;
    margin-bottom: 10px;
}

.tagline .left {
    display: flex;
}

.tagline .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .tagline {
        flex-direction: column;
    }

    .tagline .left,
    .tagline .right {
        flex: 100%;
        width: 100%;
    }

    .tagline .right {
        padding: 50px 20px;
    }
}

/* =================================================================================
=================================[ BERITA PAGE ]===================================
================================================================================= */

.berita-highlight {
    width: 100%;
    max-width: 1400px;
    display: flex;
    gap: 50px;
}

.berita-highlight .left {
    flex: 1;
}

.berita-highlight .left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.berita-highlight .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.berita-highlight .right h1 {
    color: #015931;
    font-size: 30px;
}

.berita-highlight .right .read {
    color: #015931;
}

@media (max-width: 1024px) {
    .berita-highlight {
        flex-direction: column;
    }

    .berita-highlight .left img {
        height: 200px;
    }

    .berita-highlight .right h1 {
        font-size: 25px;
    }

}

/* =================================================================================
=============================[ ANGGOTA/KATALOG PAGE ]===============================
================================================================================= */
/* ========== HERO ========== */
.katalog-hero {
    width: 100%;
    max-width: 1400px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.katalog-hero h1 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.katalog-hero h2 {
    margin: 0;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .katalog-hero h1 {
        font-size: 35px;
    }

    .katalog-hero h2 {
        font-size: 20px;
    }
}

.detail-katalog-logo {
    display: flex;
    justify-content: end;
}

.detail-katalog-photo {
    display: flex;
    justify-content: end;
}

.detail-katalog-photo img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: #04293B 2px solid;
}

.detail-katalog-logo img {
    width: 500px;
    height: auto;
    object-fit: contain;
}

.detail-katalog-texts {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px 100px 50px;
}

.detail-katalog-text {
    width: 100%;
    max-width: 1500px;
}

.detail-katalog-text p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
}

.details-katalog-images {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px 100px 50px;
}

.detail-katalog-images {
    width: 100%;
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-katalog-images img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: #04293B 1px solid;
    border-radius: 20px;
}

.detail-katalog-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px 100px 50px;
}

.detail-katalog-contact-map {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
}

.detail-katalog-contact {
    flex: 1;
}

.detail-katalog-contact h1 {
    margin-bottom: 50px;
}

.detail-katalog-map {
    flex: 1;
}

.map-embed {
    width: 700px;
    height: 450px;
    border: 1px solid #04293B;
    border-radius: 20px;
}

@media (max-width: 1024px) {

    .detail-katalog-logo img {
        width: 100%;
    }

    .detail-katalog-photo img {
        width: 100%;
        height: 300px;
    }

    .detail-katalog-logo {
        justify-content: center;
    }

    .detail-katalog-photo {
        justify-content: center;
    }

    .detail-katalog-texts {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px 50px 20px;
    }


    .detail-katalog-images {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .details-katalog-images {
        padding: 0px 20px 50px 20px;
    }

    .detail-katalog-images img {
        width: 100%;
        height: 200px;
    }

    .detail-katalog-text p {
        text-align: justify;
        font-size: 12px;
    }

    .detail-katalog-contacts {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px 50px 20px;
    }

    .detail-katalog-contact-map {
        display: flex;
        flex-direction: column;
    }

    .map-embed {
        width: 100%;
        height: 400px;
    }
}

/* =================================================================================
=============================[ PRODUK PAGE ]===============================
================================================================================= */

/* =================================================================================
=============================[ KONTAK PAGE ]===============================
================================================================================= */

.contact-card {
    width: 100%;
    padding: 100px;
    background-color: #FFFFFF;
    max-width: 1400px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: -200px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.contact-card h1 {
    color: #015931;
}

.contact-card .left h1 {
    font-size: 35px;
}

.contact-card .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.contact-card .info-item .icon {
    color: #ff5a00;
    font-size: 18px;
    width: 22px;
}

.contact-card .info-item span {
    line-height: 1.6;
}

.contact-card .right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card .right h1 {
    font-size: 25px;
}

.contact-card .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.contact-card textarea {
    height: 130px;
    resize: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-submit-contact {
    margin-top: 10px;
    background: #ff5a00;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-contact:hover {
    background: #e65000;
}

.maps .map {
    width: 100%;
    height: 500px;
    border: 0;
}

@media (max-width: 1024px) {
    .contact-card {
        margin-top: 0;
        padding: 20px;
        flex-direction: column;
    }

    .contact-card .left h1 {
        font-size: 25px;
    }
}

/* =================================================================================
=============================[ DETAIL BERITA PAGE ]=================================
================================================================================= */
.detail-beritas {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;

}

.detail-berita {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.detail-berita h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.detail-berita-content {
    width: 70%;
    text-align: justify;
}

.detail-berita-content img {
    width: 100%;
    max-width: 1500px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.berita-detail-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.berita-detail-right-item {
    display: flex;
    flex-direction: column;
}

.berita-detail-right-item-image img {
    width: 100%;
    max-width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.berita-detail-right-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.berita-detail-right-item-content {
    padding: 10px 0px 30px 0px;
    display: flex;
    flex-direction: column;
}

.berita-item a {
    text-decoration: none;
    color: #015931;
}

.berita-meta {
    display: flex;
    flex-direction: column;
    gap: 10 px;
}

.berita-meta>h3 {
    font-size: 20px;
    font-weight: 700;
    color: #015931;
}

@media (max-width: 1024px) {
    .detail-beritas {
        padding: 0px 20px 50px 20px;

    }

    .detail-berita {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .detail-berita h1 {
        font-size: 25px;
    }

    .detail-berita-content {
        width: 100%;
        text-align: justify;
    }

    .detail-berita-content p {
        font-size: 15px;
    }

    .berita-detail-right {
        width: 100%;
    }

    .berita-detail-right-item {
        display: flex;
        flex-direction: column;
    }

    .berita-detail-right-item-image img {
        width: 100%;
        max-width: 500px;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }

    .berita-detail-right-item-content {
        padding: 10px 0px 30px 0px;
        display: flex;
        flex-direction: column;
    }


    /* Fix text overflow untuk berita */
    .berita-item-content h3,
    .berita-item-content p,
    .berita-right-item-content h3,
    .berita-right-item-content p,
    .berita-detail-right-item-content h3,
    .berita-detail-right-item-content p,
    .detail-berita-content p,
    .page-banner h1 {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Batasi lebar konten */
    .berita-item-content,
    .berita-right-item-content,
    .berita-detail-right-item-content {
        max-width: 100%;
        overflow: hidden;
    }
}

/* =================================================================================
==================================[ JADI ANGGOTA ]==================================
================================================================================= */

.ja-page-banner {
    color: #04293B;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ja-page-banner h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.ja-page-banner p {
    font-size: 20px;
}

.rules {
    display: flex;
    flex-direction: column;
    padding: 50px 0px 50px 0px;
    gap: 20px;
}

.rules h3 {
    font-size: 30px;
}

/* Stepper Progress */
.stepper-container {
    margin: 60px 0 40px 0;
}

.stepper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.stepper-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E5E7EB;
    border: 3px solid #E5E7EB;
    transition: all 0.3s ease;
}

.stepper-item.active .stepper-circle {
    background-color: #10B981;
    border-color: #10B981;
}

.stepper-item.completed .stepper-circle {
    background-color: #10B981;
    border-color: #10B981;
}

.stepper-line.completed {
    background-color: #10B981;
}

.stepper-label {
    margin-top: 12px;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    white-space: nowrap;
}

.stepper-item.active .stepper-label {
    color: #04293B;
    font-weight: 600;
}

.stepper-line {
    flex: 1;
    height: 3px;
    background-color: #E5E7EB;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

/* Form Section */
.form-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    font-size: 32px;
    color: #04293B;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 16px;
    color: #04293B;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #EF4444;
    margin-left: 2px;
}

.form-control {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.form-control:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    height: 46px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    padding: 8px 16px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    color: #04293B;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #10B981;
}

.select2-dropdown {
    border: 2px solid #E5E7EB;
    border-radius: 6px;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    padding: 8px;
}

.select2-results__option--highlighted {
    background-color: #10B981 !important;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 8px;
}

.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #04293B;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #10B981;
}

.radio-label span {
    user-select: none;
}

/* File Upload */
.form-control-file {
    padding: 10px;
    font-size: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    background-color: #FFFFFF;
}

.form-control-file::-webkit-file-upload-button {
    padding: 8px 16px;
    background-color: #04293B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-right: 12px;
}

.form-control-file::-webkit-file-upload-button:hover {
    background-color: #032332;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.form-actions-two {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #04293B;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    padding: 14px 40px;
    background-color: #04293B;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #032332;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: #9CA3AF;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit:disabled:hover {
    background-color: #9CA3AF;
    transform: none;
}

.btn-secondary:hover {
    background-color: #032332;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* File Info */
.file-info {
    background-color: #F9FAFB;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 12px;
    border-left: 4px solid #10B981;
}

.file-info p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #374151;
}

.file-info ol {
    margin: 8px 0 0 20px;
    padding: 0;
}

.file-info ol li {
    margin: 4px 0;
    font-size: 14px;
    color: #374151;
}

/* Validation Styles */
.validation-info-box {
    background-color: #FEF2F2;
    border: 2px solid #FCA5A5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    display: none;
}

.validation-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #DC2626;
    margin-bottom: 12px;
}

.validation-header svg {
    flex-shrink: 0;
}

.validation-info-box ul {
    margin: 0;
    padding-left: 30px;
    color: #991B1B;
}

.validation-info-box li {
    margin: 6px 0;
    font-size: 14px;
}

.field-invalid {
    border-color: #EF4444 !important;
    background-color: #FEF2F2 !important;
}

.field-error {
    display: block;
    color: #DC2626;
    font-size: 13px;
    margin-top: 4px;
    min-height: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ja-page-banner {
        padding: 50px;
        text-align: left;
    }

    .ja-page-banner h1 {
        font-size: 30px;
    }

    .ja-page-banner p {
        font-size: 16px;
    }

    .form-section {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stepper-wrapper {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .stepper-label {
        font-size: 12px;
    }

    .stepper-circle {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    .ja-page-banner {
        padding: 30px 20px;
    }

    .ja-page-banner h1 {
        font-size: 24px;
    }

    .ja-page-banner p {
        font-size: 14px;
    }

    .rules {
        padding: 30px 0;
    }

    .rules h3 {
        font-size: 20px;
    }

    .form-section {
        padding: 20px 15px;
    }

    .radio-group {
        gap: 20px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 30px;
    }

    .btn-secondary {
        width: 100%;
        padding: 12px 30px;
    }

    .form-actions-two {
        flex-direction: column;
        gap: 12px;
    }

}