/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

.section-dark {
    background: #111;
    color: white;
    padding: 100px 0;
}

.section-light {
    background: #f5f5f5;
    padding: 100px 0;
}

.section-title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    color: #D4AF37;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

/* NAVBAR */
.navbar {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    color: #D4AF37 !important;
}

.nav-link {
    color: white !important;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

.navbar-toggle {
    border-color: #D4AF37;
}

.dropdown-dark-custom {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 15px;
}

.dropdown-dark-custom .dropdown-item {
    color: black;
}

.dropdown-dark-custom .dropdown-item:hover {
    background: #D4AF37;
    color: white;
}

/* BUTTON LOGIN */
.btnLogin-popup {
    background: linear-gradient(45deg, #D4AF37, #f5e6a3);
    color: black;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 22px;
    border: none;
    transition: 0.3s;
}

.btnLogin-popup:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* BERANDA */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-content h1 {
    font-size: 3rem;
    color: white;
}

.hero-content p {
    color: #D4AF37;
    font-size: 18px;
}

/* SEJARAH */
.img-sejarah-main {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

.img-sejarah-main:hover {
    transform: scale(1.03);
}

.img-sejarah-second {
    width: 40%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 30px auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.img-sejarah-second:hover {
    transform: scale(1.03);
}

.isi-sejarah p {
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 900px;
    margin: auto;
}


/* VISI MISI */
.visi-misi-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.vm-title {
    margin-bottom: 50px;
}

.vm-title h5 {
    color: black;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vm-title h1 {
    font-size: 34px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 25px;
}

.title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.title-line span {
    width: 100px;
    height: 2px;
    background: #D4AF37;
}

.title-line i {
    color: #D4AF37;
    font-size: 22px;
}

.vm-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
    transition: .4s;
    border-left: 6px solid #D4AF37;
}

.vm-box:hover {
    transform: translateY(-10px);
}

.vm-icon {
    width: 120px;
    height: 120px;
    background: #D4AF37;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.vm-icon i {
    font-size: 50px;
    color: #111;
    margin-bottom: 15px;
}

.vm-icon h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.vm-content {
    z-index: 2;
}

.vm-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vm-content p {
    font-size: 16px;
    line-height: 38px;
    color: black;
}

.vm-content ul {
    padding: 0;
    margin: 0;
}

.vm-content ul li {
    list-style: none;
    font-size: 16px;
    color: black;
    margin-bottom: 5px;
    position: relative;
    padding-left: 40px;
    line-height: 35px;
}

.vm-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    font-weight: bold;
}

/* BACKGROUND MASJID */
.bg-mosque {
    position: absolute;
    right: 40px;
    bottom: -10px;
    font-size: 180px;
    color: rgba(212, 175, 55, .08);
}


/* PENGURUS */
#pengurus .section-title>span {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

#pengurus .section-title h1 {
    color: #D4AF37 !important;
    -webkit-text-fill-color: #D4AF37 !important;
}

.testimonial-section {
    padding: 120px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    letter-spacing: 5px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: black !important;
}

.section-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 25px;
}

.testimonial-wrap {
    position: relative;
    padding: 0 70px;
}

.testimonial-slider {
    overflow: hidden !important;
    padding: 30px 5px 10px;
}

.testimonial-slider .swiper-wrapper {
    align-items: stretch;
}

.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-item {
    background: #fff;
    border-radius: 6px;
    padding: 35px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
}

.ribbon {
    position: absolute;
    top: 15px;
    left: -10px;
    background: #D4AF37;
    color: #fff;
    padding: 7px 18px 7px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 0 4px 4px 0;
}

.ribbon:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid #D4AF37;
    border-left: 10px solid transparent;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 10px;
}

.client-img {
    position: relative;
    margin-right: 20px;
    flex: 0 0 70px;
}

.client-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.quote-icon {
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.client-name h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
}


.social-links {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    background: white;
    transform: translateY(-2px);
}

.client-text {
    color: black;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #D4AF37;
    border-radius: 6px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #D4AF37;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-prev::before,
.swiper-button-next::before {
    font-family: "bootstrap-icons";
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.swiper-button-prev::before {
    content: "\F284";
}

.swiper-button-next::before {
    content: "\F285";
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

@media (max-width: 991px) {
    .testimonial-wrap {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 36px;
    }

    .testimonial-wrap {
        padding: 0;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }
}


/* KEGIATAN RUTIN */
.kegiatan-section {
    padding: 100px 0;
    background: #111;
    position: relative;
}

.kegiatan-title span {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.kegiatan-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin-top: 10px;
}

.kegiatan-title p {
    width: 60%;
    margin: 20px auto 30px;
    color: #aaaaaa;
    line-height: 30px;
    font-weight: 600;
}

.timeline-wrapper {
    position: relative;
    padding-left: 70px;
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #D4AF37;
}

.kegiatan-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.kegiatan-item:hover {
    transform: translateY(-5px);
}

.kegiatan-item::before {
    content: "";
    position: absolute;
    left: -58px;
    width: 25px;
    height: 25px;
    background: #0f172b;
    border: 5px solid #D4AF37;
    border-radius: 50%;
}

.kegiatan-date {
    min-width: 220px;
    background: #0B3D2E;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
}

.kegiatan-date span {
    font-size: 15px;
    letter-spacing: 2px;
}

.kegiatan-date h2 {
    font-size: 18px;
    margin: 8px 0;
    color: #D4AF37;
    font-weight: 600;
}

.kegiatan-date p {
    margin: 0;
    font-size: 15px;
}

.kegiatan-content {
    flex: 1;
}

.kegiatan-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172b;
    margin-bottom: 10px;
}

.kegiatan-content p {
    color: black;
    line-height: 20px;
    margin-bottom: 10px;
}

.join-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #D4AF37;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.join-btn:hover {
    background: #0f172b;
    color: #fff;
}

.kegiatan-image {
    width: 220px;
    height: 120px;
    overflow: hidden;
    border-radius: 20px;
}

.kegiatan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.kegiatan-item:hover .kegiatan-image img {
    transform: scale(1.1);
}

/* MODAL JOIN KEGIATAN - STYLE SAMA KAYAK KEUANGAN */
.modal-header {
    background: #1a4d2e;
    color: #fff;
    border-bottom: none;
    padding: 16px 24px;
}
.modal-header .modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.modal-body {
    padding: 24px;
}
.field-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.field-row label {
    width: 140px;
    font-weight: 600;
    color: #1a4d2e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    flex-shrink: 0;
    font-size: 15px;
}
.field-row label i {
    width: 18px;
    text-align: center;
}
.field-row span {
    margin: 0 10px;
    color: #1a4d2e;
    font-weight: 600;
}
.field-row .form-control, .field-row .form-select {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
}
.field-row .form-control:focus, .field-row .form-select:focus {
    border-color: #1a4d2e;
    box-shadow: 0 0 0 0.2rem rgba(26, 77, 46, 0.15);
}
.field-box {
    padding: 12px 0;
}
.field-box label {
    font-weight: 600;
    color: #1a4d2e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
}
.field-box textarea {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-left: 4px solid #D4AF37;
    font-size: 15px;
}
.field-box textarea:focus {
    border-color: #1a4d2e;
    box-shadow: 0 0 0 0.2rem rgba(26, 77, 46, 0.15);
    background: #fff;
}
.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 16px 24px;
}
.btn-emas {
    background-color: #D4AF37;
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
}
.btn-emas:hover { 
    background-color: #c19b2e; 
    color: #1a1a1a; 
}

/* RESPONSIVE MOBILE*/
@media(max-width:991px) {

    .kegiatan-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .kegiatan-image {
        width: 100%;
    }

    .kegiatan-title h1 {
        font-size: 45px;
    }

    .kegiatan-title p {
        width: 100%;
    }

}

@media(max-width:768px) {

    .timeline-wrapper {
        padding-left: 40px;
    }

    .timeline-wrapper::before {
        left: 15px;
    }

    .kegiatan-item::before {
        left: -38px;
    }

    .kegiatan-date {
        width: 100%;
        min-width: 100%;
    }

    .kegiatan-title h1 {
        font-size: 35px;
    }

}

/* KEUANGAN */
.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: #D4AF37;
}

.section-divider i {
    font-size: 24px;
    color: #D4AF37;
}

/* CARD STYLE */
.laporan-keuangan {
    background: #f8f9fa;
}

.card-laporan {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    transition: 0.3s;
}

.card-laporan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 16px;
}

.card-chart {
    position: absolute;
    top: 28px;
    right: 28px;
    opacity: 0.3;
}

.card-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.card-desc {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

.card-footer-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-footer-box i {
    font-size: 22px;
    color: #6c757d;
}

.btn-card {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.btn-hijau {
    border: 2px solid #28a745;
    color: #28a745;
    background: #f0f9f4;
}

.btn-hijau:hover {
    background: #28a745;
    color: #fff;
}

.btn-merah {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: #fdf2f3;
}

.btn-merah:hover {
    background: #dc3545;
    color: #fff;
}

.btn-kuning {
    border: 2px solid #ffc107;
    color: #b8860b;
    background: #fffbf0;
}

.btn-kuning:hover {
    background: #ffc107;
    color: #1a1a1a;
}

.btn-biru {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: #f0f6ff;
}

.btn-biru:hover {
    background: #0d6efd;
    color: #fff;
}

.mini-stat {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.mini-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bg-success-light {
    background: #d4edda;
    color: #28a745;
}

.bg-info-light {
    background: #d1ecf1;
    color: #17a2b8;
}

.bg-secondary-light {
    background: #e2e3e5;
    color: #6c757d;
}

.bg-warning-light {
    background: #fff3cd;
    color: #ffc107;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

/* JADWAL SHOLAT */
.jadwal-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.section-title span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff !important;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin: 10px 0 20px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.title-divider .line {
    width: 80px;
    height: 2px;
    background: #D4AF37;
}

.title-divider i {
    color: #D4AF37;
    font-size: 24px;
}

.namakota {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.input-tanggal {
    position: relative;
    width: 320px;
    margin: 0 auto 40px;
}

.input-tanggal input[type="date"] {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
}

.input-tanggal input[type="date"]:focus {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.input-tanggal i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    font-size: 18px;
}

.input-tanggal input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(70%) sepia(50%) saturate(500%) hue-rotate(10deg);
    cursor: pointer;
}

.jadwal-card {
    background: linear-gradient(135deg, #D4AF37 0%, #c19b2e 100%);
    border-radius: 20px;
    padding: 40px 30px;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.bg-mosque {
    position: absolute;
    right: 0px;
    top: 25%;
    transform: translateY(-50%);
    font-size: 150px;
    color: rgba(26, 26, 26, .1);
    z-index: 1;
    pointer-events: none;
}

.jadwal-card .row {
    position: relative;
    z-index: 2;
}

.wtime h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.wtime p {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* KONTAK */
.contact-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h5 {
    color: black;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 25px;
}

.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: .4s;
}

.contact-box:hover {
    transform: translateY(-8px);
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-box h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-box p {
    color: #555;
    line-height: 16px;
    margin: 0;
}

.map-box {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.message-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
    height: 100%;
}

.message-form h3 {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-control {
    height: 65px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px 20px;
    font-size: 17px;
    box-shadow: none;
    transition: .3s;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, .2);
}

.send-btn {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.send-btn i {
    margin-right: 10px;
}

.send-btn:hover {
    background: #111;
    transform: translateY(-5px);
}


/* LOGIN POPUP */
.wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 400px;
    height: 440px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(223, 177, 99, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform .5s ease, height .2s ease;
    z-index: 1000;
}

.wrapper.active-popup {
    transform: translate(-50%, -50%) scale(1);
}

.wrapper.active {
    height: 520px;
}

.wrapper .form-box {
    width: 100%;
    padding: 40px;
}

.form-box h2 {
    font-size: 2em;
    color: #D4AF37;
    text-align: center;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #D4AF37;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: black;
    font-weight: 600;
    padding: 0 35px 0 5px;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #D4AF37;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;
}

.btn {
    width: 100%;
    height: 45px;
    background: #D4AF37 !important;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: #1f1f1f;
    font-weight: 600 !important;
}

.input-box .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #fff;
    line-height: 57px;
}

.icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: #D4AF37;
    font-size: 2em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
    z-index: 1;
}



/* FOOTER */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    padding: 10px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TAMPILAN DI HP */
@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}