* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

.top-salam {
    background-color: #F49D00;
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

html.nav-open,
body.nav-open {
    overflow: hidden;
    overscroll-behavior: none; 
}

header, 
.navbar {
    position: relative; 
    z-index: 9999 !important; 
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: #f59e0b;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1150;
    backdrop-filter: blur(3px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

.info-bar {
    display: flex;
    justify-content: space-between;
    background-color: #AC7F5E;
    color: white;
    padding: 12px 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.95rem;
}

.info-item {
    flex: 1;
}

.info-title {
    font-weight: 700;
    font-size: 0.8rem;
}

.home-section {
    padding: 40px 50px;
    display: flex;
    justify-content: center;
    background-color: #f9f5ed;
}

.card-container {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #AC7F5E, #F49D00);
    border-radius: 20px;
    padding: 30px;
}

.card-inner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('assets/bg/sej.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.greeting-badge {
    background: linear-gradient(to right, #F49D00, #FFFFFF, #AC7F5E);
    color: #000;
    font-weight: 800;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    margin-left: -20px;
}

.history-text {
    text-align: center;
    color: #000;
    max-width: 900px;
}

.history-text p {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1250;
        cursor: pointer;
    }

    .logo img {
        height: 60px;
    }

    .top-salam {
        font-size: 1rem;
        padding: 5px 10px;
        text-align: center;
    }

    .navbar {
        flex-direction: row;
        padding: 15px;
        gap: 15px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(280px, 82vw);
        background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
        border-radius: 16px 0 0 16px;
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.18);
        padding: 90px 20px 30px;
        text-align: center;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
        z-index: 10000 !important;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(24px);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.45s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.55s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.65s; }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
    }

    .info-bar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 10px;
    }

    .home-section {
        padding: 20px 15px;
    }

    .card-container {
        padding: 15px;
        border-radius: 15px;
    }

    .card-inner {
        padding: 30px 20px;
    }

    .greeting-badge {
        align-self: center;
        margin-left: 0;
        margin-bottom: 25px;
        font-size: 1rem;
        text-align: center;
    }

    .history-text p {
        font-size: 1rem;
        text-align: justify;
    }
}

.visi-misi-container {
    display: flex;
    flex-direction: row; 
    width: 100%;
}

.visi-section {
    flex: 1;
    background-color: #f5ece5; 
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.misi-section {
    flex: 1;
    background-color: #e6d3c4; 
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iconvm-img {
    width: 90px; 
    height: 90px;
    object-fit: contain; 
    margin-bottom: 15px;
}

.vmtitle {
    font-size: 1.5rem; 
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1;
}

.dividervm-img {
    width: 200px; 
    height: auto;
    margin-bottom: 20px;
}

.visi-text {
    text-align: center;
    font-size: 1.1rem; 
    font-weight: 600;
    line-height: 1.5; 
    color: #000;
    max-width: 90%;
}

.misi-list {
    text-align: left;
    font-size: 1rem; 
    font-weight: 600;
    line-height: 1.8; 
    color: #000;
    padding-left: 20px;
    width: 100%;
}

.misi-list li {
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .visi-misi-container {
        flex-direction: column; 
    }

    .visi-section, .misi-section {
        width: 100%;
        padding: 30px 20px; 
    }

    .iconvm-img {
        width: 60px;  
        height: 60px; 
        margin-bottom: 15px;
    }

    .dividervm-img {
        width: 150px; 
        margin-bottom: 15px;
    }

    .visi-text {
        font-size: 0.8rem; 
    }
    
    .misi-list {
        font-size: 0.7rem;
    }
    
    .vmtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

.biaya-section {
    padding: 50px 50px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.biaya-header {
    background: linear-gradient(to bottom, #dca843, #b8860b);
    border: 3px solid #fff;
    outline: 3px solid #dca843;
    border-radius: 50px;
    padding: 8px 70px;
    margin-bottom: 65px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.biaya-header h2 {
    color: #000;
    font-size: 1.4rem;
    font-weight: 800;
}

.biaya-cards-container {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.biaya-card-wrapper {
    position: relative;
    width: 380px;
    border: 2px solid #7c5843;
    border-radius: 40px;
    padding: 20px;
}

.quote-top {
    position: absolute;
    top: -20px;
    left: 30px;
    height: 30px;
    padding: 0 10px;
}

.quote-bottom {
    position: absolute;
    bottom: -20px;
    right: 30px;
    height: 30px;
    padding: 0 10px;
}

.biaya-card {
    background-color: #e3d3bd;
    border-radius: 30px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 40px;
    margin-bottom: 8px;
    width: 100%;
}

.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    text-align: center;
}

.card-icon {
    position: absolute;
    height: 40px;
    object-fit: contain;
}

.card-header:not(.right-icon) .card-icon {
    left: 0;
}

.card-header.right-icon .card-icon {
    right: 0;
}

.biaya-card hr {
    border: none;
    border-top: 1px solid #7c5843;
    margin-bottom: 25px;
}

.card-body {
    flex-grow: 1;
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.card-body.center-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body p {
    line-height: 1.6;
}

.card-body strong {
    font-size: 1.2rem;
    font-weight: 800;
}

.card-body ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.8;
}

.btn-detail {
    display: block;
    text-align: center;
    background: linear-gradient(to bottom, #dca843, #b8860b);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 10px 0;
    border-radius: 15px;
    border: 2px solid #e3d3bd;
    outline: 2px solid #b8860b;
    transition: transform 0.2s;
}

.btn-detail:hover {
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {

    .biaya-section {
        padding: 30px 15px;
    }

    .biaya-header {
        padding: 8px 30px;
        margin-bottom: 50px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .biaya-header h2 {
        font-size: 1.1rem;
    }

    .biaya-cards-container {
        gap: 50px;
        width: 100%;
    }

    .biaya-card-wrapper {
        width: 80%;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .quote-top {
        left: 15px;
    }

    .quote-bottom {
        right: 15px;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .card-body {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .card-body strong {
        font-size: 1rem;
    }

    .btn-detail {
        font-size: 1rem;
        padding: 8px 0;
    }
}

.pemanis-section {
    background-color: #f9f5ed;
    padding: 60px 50px;
    display: flex;
    justify-content: center;
}

.pemanis-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 60px;
}

.pemanis-kiri {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-quran {
    width: 100px;
    margin-bottom: 30px;
}

.img-anak {
    width: 290px;
}

.pemanis-kanan {
    flex: 1.5;
}

.pemanis-card-outer {
    background-color: #bfa888;
    padding: 17px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pemanis-card-inner {
    background-color: #fdfaf5;
    border-radius: 10px;
    padding: 40px 50px;
    position: relative;
}

.pemanis-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.icon-toa {
    position: absolute;
    left: 10px;
    top: -20px;
    width: 100px;
    z-index: 2;
}

.pemanis-title-box {
    background-color: #f2eadb;
    border: 5px solid #e3d3bd;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    text-align: center;
    color: #000;
    margin-left: 30px;
}

.pemanis-body {
    color: #8b5a2b;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 600;
}

.pemanis-body p {
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {

    .pemanis-section {
        padding: 30px 15px;
    }

    .pemanis-container {
        flex-direction: column-reverse;
        gap: 0;
        width: 100%;
    }

    .pemanis-kanan {
        width: 100%;
    }

    .pemanis-card-outer {
        padding: 10px;
    }

    .pemanis-card-inner {
        padding: 40px 20px 40px 20px;
    }

    .icon-toa {
        width: 75px;
        left: -10px;
        top: -25px;
    }

    .pemanis-title-box {
        font-size: 1rem;
        margin-left: 20px;
        padding: 8px 15px;
    }

    .pemanis-body {
        font-size: 0.95rem;
    }

    .pemanis-kiri {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-end;
        margin-top: -40px;
        position: relative;
        z-index: 10;
    }

    .img-quran {
        width: 80px;
        margin-bottom: 0;
    }

    .img-anak {
        width: 180px;
    }
}

.page-kurikulum {
    background-color: #fcf6ec;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

.floral-corner {
    position: absolute;
    z-index: 1;
    max-width: 800px;
    pointer-events: none;
}

.floral-corner.top-left {
    top: 0;
    left: 0;
}

.floral-corner.bottom-right {
    bottom: 0;
    right: 0;
}

.kurikulum-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.pill-badge {
    background: linear-gradient(to bottom, #dca843, #b8860b);
    border: 3px solid #ffffff;
    outline: 3px solid #dca843;
    color: #000000;
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.title-badge {
    padding: 12px 40px;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.card-wrapper {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
}

.card-bg-img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.fasilitas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 50px;
}

.fasilitas-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fasilitas-item img {
    height: 35px;
    width: 45px;
    object-fit: contain;
    object-position: center;
}

.fasilitas-item span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-daftar-overlap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 40%);
    padding: 10px 30px;
    font-size: 1.3rem;
    white-space: nowrap;
    transition: transform 0.2s;
}

.btn-daftar-overlap:hover {
    transform: translate(-50%, 45%);
}

@media screen and (max-width: 768px) {

    .page-kurikulum {
        min-height: auto;
        padding: 50px 15px 70px 15px;
    }

    .title-badge {
        font-size: 1rem;
        padding: 10px 30px;
        margin-bottom: 25px;
    }

    .card-wrapper {
        width: 90%;
        max-width: 100%;
    }

    .card-overlay {
        padding: 30px 20px 45px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .fasilitas-list {
        margin: 0 auto;
        width: fit-content;
        gap: 5px;
        align-items: flex-start;
        transform: translateX(20px);
    }

    .fasilitas-item {
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }

    .fasilitas-item img {
        height: 25px;
        width: 25px;
    }

    .fasilitas-item span {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .btn-daftar-overlap {
        font-size: 1rem;
        padding: 10px 25px;

        transform: translate(-50%, 50%);
    }
}

.mengaji-wrapper {
    background-color: #fcf6ec;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 80px 20px;
    overflow: hidden;
    border-top: 4px dotted #c19a5b;
}

.floral-mengaji {
    position: absolute;
    z-index: 1;
    max-width: 800px;
    pointer-events: none;
}

.floral-mengaji.bottom-left {
    bottom: 0;
    left: 0;
}

.floral-mengaji.bottom-right {
    bottom: 0;
    right: 0;
}

.mengaji-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

.cards-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.card-small-wrapper {
    position: relative;
    width: 440px;
    display: flex;
    justify-content: center;
}

.card-bg-small {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.card-overlay-small {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    gap: 20px;
}

.list-mengaji {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: 120px;
}

.ulya-list {
    gap: 22px;
}

.item-mengaji {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-mengaji img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    object-position: center;
}

.item-mengaji span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-title-overlap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 20%);
    padding: 10px 40px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.btn-daftar-huge {
    margin-top: 20px;
    padding: 18px 50px;
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-daftar-huge:hover {
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {

    .mengaji-wrapper {
        min-height: auto;
        padding: 40px 15px 60px 15px;
    }

    .cards-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 30px;
    }

    .card-small-wrapper {
        width: 95%;
        max-width: 340px;
    }

    .card-overlay-small {
        padding: 30px 15px 45px 15px;
        gap: 15px;
        justify-content: center;
    }

    .list-mengaji {
        margin-left: 0;
        gap: 11px;
        transform: translateX(35px);
    }

    .item-mengaji img {
        width: 23px;
        height: 23px;
    }

    .item-mengaji span {
        font-size: 0.8rem;
    }

    .card-title-overlap {
        font-size: 1rem;
        padding: 8px 30px;
        transform: translate(-50%, 30%);
    }

    .btn-daftar-huge {
        font-size: 1rem;
        padding: 13px 30px;
        margin-top: 30px;
    }
}

.page-kegiatan {
    background-color: #fcf6ec;
    min-height: 100vh;
    position: relative;
    padding-top: 50px;
    padding-bottom: 120px;
}

.frame-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.kegiatan-header-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.ribbon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ribbon-bg {
    width: 270px;
    display: block;
}

.ribbon-text {
    position: absolute;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
    left: 52%;
    top: 60%;
    transform: translate(-50%, -50%);
}

.divider-gold {
    width: 250px;
    margin-top: 10px;
}

.kegiatan-gallery {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    width: 100%;
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(-n+3) img,
.gallery-item:nth-child(n+10) img {
    height: 240px;
}

.gallery-item:nth-child(n+4):nth-child(-n+9) img {
    height: 350px;
}

@media screen and (max-width: 768px) {

    .page-kegiatan {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .kegiatan-header-container {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .kegiatan-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 30px;
    }

    .gallery-item img {
        height: 180px !important;
    }

    .ribbon-text {
        font-size: 1.1rem;
    }

    .ribbon-bg {
        width: 180px;
    }

    .divider-gold {
        width: 160px;
        margin-top: 8px;
    }
}

.lokasi-section {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    color: #ffffff;
}

.lokasi-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.lokasi-container {
    width: 100%;
    max-width: 900px;
}

.lokasi-card {
    background-color: transparent;
    border: 3px solid #ffffff;
    border-radius: 20px;
    padding: 40px 40px;
    text-align: center;
    width: 100%;
}

.lokasi-name {
    color: #ffb703;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.lokasi-address {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.map-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: #eee;
}

.image-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: #1a1a1a;
}

.map-link {
    display: block;
    position: relative;
    width: 100%;
    height: 35vh;
    min-height: 200px;
    text-decoration: none;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-text {
    background-color: #ffb703;
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.map-link:hover .map-image {
    transform: scale(1.05);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-link:hover .overlay-text {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {

    .lokasi-section {
        min-height: auto;
        padding: 40px 30px 60px 30px;
    }

    .lokasi-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .lokasi-card {
        padding: 25px 20px;
        border-width: 2px;
        border-radius: 15px;
    }

    .lokasi-name {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .lokasi-address {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .map-link {
        height: 250px;
        min-height: auto;
    }

    .overlay-text {
        font-size: 0.8rem;
        padding: 10px 10px;
    }
}

.quotes-section {
    background-color: #fcf6ec;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    overflow: hidden;
}

.quotes-section .floral-corner {
    position: absolute;
    z-index: 1;
    max-width: 800px;
    pointer-events: none;
}

.quotes-section .floral-corner.top-left {
    top: 0;
    left: 0;
}

.quotes-section .floral-corner.top-right {
    top: 0;
    right: 0;
}

.quotes-section .floral-corner.bottom-left {
    bottom: 0;
    left: 0;
}

.quotes-section .floral-corner.bottom-right {
    bottom: 0;
    right: 0;
}

.quote-box {
    background-color: #bda27e;
    position: relative;
    z-index: 10;
    padding: 60px 50px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.quote-text {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

@media screen and (max-width: 768px) {

    .quotes-section {
        min-height: auto;
        padding: 50px 30px 50px 30px;
    }

    .quote-box {
        padding: 40px 20px;
    }

    .quote-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .quote-author {
        font-size: 0.9rem;
    }

    .quotes-section .floral-corner {
        max-width: 350px;
    }
}

.page-daftar-full {
    background-color: #fcf6ec;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}

.form-header-full {
    background-color: #ceb793;
    width: 100%;
    border-bottom: 1px solid #a38c6a;
}

.form-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.form-title {
    flex-grow: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    padding-right: 40px;
    letter-spacing: 0.5px;
}

.daftar-form-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.form-body-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    margin-top: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.form-group label {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
}

.form-control {
    padding: 15px;
    border: 1px solid #777;
    border-radius: 6px;
    font-size: 1.1rem;
    background-color: #ffffff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #ceb793;
}

textarea.form-control {
    resize: vertical;
}

.radio-options {
    display: flex;
    gap: 40px;
    align-items: center;
    height: 52px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit-section {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 0px;
    padding-bottom: 40px;
}

.form-submit-section::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #999;
    z-index: 1;
}

.btn-daftar-submit {
    position: relative;
    z-index: 2;
    background-color: #ceb793;
    border: 1px solid #333;
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 12px 60px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-daftar-submit:hover {
    transform: translateY(-4px);
}

@media screen and (max-width: 768px) {

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-body-inner {
        padding: 40px 25px 30px 25px;
    }

    .section-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .form-control {
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
    }

    .radio-options {
        gap: 20px;
        height: auto;
        padding-top: 5px;
    }

    .form-title {
        font-size: 1.2rem;
        padding-right: 0;
    }

    .btn-daftar-submit {
        font-size: 1.1rem;
        padding: 10px 40px;
    }

    .form-submit-section::before {
        top: 23px;
    }
}

.payment-info-wrapper {
    background-color: #ceb793;
    min-height: 100vh;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    box-sizing: border-box;
}

.payment-card {
    background-color: #fcf6ec;
    border: 1px solid #777;
    padding: 50px 80px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.payment-text {
    font-size: 1.3rem;
    color: #111;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 0;
}

.payment-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    margin-bottom: 35px;
    margin-top: 0;
}

.payment-highlight:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {

    .payment-info-wrapper {
        min-height: auto;
        padding: 50px 30px 50px 30px;
    }

    .payment-card {
        padding: 40px 33px;
        border-radius: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .payment-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .payment-highlight {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
}

.page-login {
    margin: 0;
    padding: 0;
    background-image: url('assets/bg/sej.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.login-top-bar {
    background-color: #f59e0b;
    color: #000000;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.login-overlay {
    background-color: rgba(255, 255, 255, 0.75);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    box-sizing: border-box;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    margin-top: -35px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo {
    width: 130px;
    height: auto;
    margin-bottom: 5px;
}

.login-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: 0.5px;
    margin-top: 5px
}

.login-box {
    background: linear-gradient(to right, #f0a01a, #a87241);
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    padding: 35px 40px 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    box-sizing: border-box;
}

.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    margin-left: 15px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    border-radius: 30px;
    border: 1px solid #333;
    font-size: 1.1rem;
    outline: none;
    box-sizing: border-box;
}

.input-icon {
    position: absolute;
    right: 20px;
    width: 20px;
    height: auto;
    pointer-events: none;
}

.btn-login-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.btn-login {
    background-color: #ffffff;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 12px 60px;
    border-radius: 30px;
    border: 1px solid #333;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: translateY(-3px);
    background-color: #f1f1f1;
}

@media screen and (max-width: 600px) {

    .login-top-bar {
        font-size: 1rem;
        padding: 5px 10px;
    }

    .login-logo {
        width: 110px;
    }

    .login-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .login-box {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .input-group label {
        font-size: 1rem;
        margin-left: 10px;
    }

    .input-wrapper input {
        padding: 14px 45px 14px 20px;
        font-size: 1rem;
    }

    .input-icon {
        right: 15px;
        width: 18px;
    }

    .btn-login {
        font-size: 1rem;
        padding: 12px 40px;
    }
}

.page-dashboard {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.dashboard-top-bar {
    background-color: #f59e0b;
    color: #000;
    padding: 15px 20px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.top-bar-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.dashboard-container {
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 40px;
    box-sizing: border-box;
}

.dashboard-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.dashboard-cards {
    display: flex;
    gap: 15px;
}

.card {
    border-radius: 8px;
    padding: 15px 20px;
    color: #000;
    min-width: 160px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.bg-teal {
    background-color: #00cba9;
}

.bg-blue {
    background-color: #00bcf2;
}

.bg-pink {
    background-color: #e8a7bc;
}

.card-title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dashboard-icon {
    height: 45px;
    width: auto;
    display: block;
    position: static;
}

.card-number {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-align: right;
    display: block;
}

.data-list-container {
    display: flex;
    flex-direction: column;
}

.row-dark {
    background-color: #e6d3c4;
}

.row-light {
    background-color: #f5ece5;
}

.col-name {
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s;
}

.col-name:hover {
    color: #f59e0b;
}

.data-alamat-row {
    display: none;
    padding: 15px 100px 20px 100px;
    font-size: 1rem;
    color: #444;
    border-top: 1px dashed #ccc;
}

.btn-logout {
    position: absolute;
    right: 30px;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.btn-logout:hover {
    background-color: #ff4d4d;
    transform: translateY(-2px);
}

.search-form-top {
    position: absolute;
    left: 30px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 3px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input-top {
    border: none;
    outline: none;
    padding: 5px 0;
    font-size: 0.9rem;
    width: 180px;
    background: transparent;
}

.search-btn-top {
    background: none;
    border: none;
    color: #f59e0b;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: transform 0.2s;
}

.search-btn-top:hover {
    transform: scale(1.1);
}

.search-reset-top {
    color: #f59e0b;
    text-decoration: none;
    font-size: 1rem;
    margin-left: 8px;
}

.data-row {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 1.5fr 1.5fr 10px;
    padding: 20px 100px;
    gap: 15px;
    align-items: center;
    font-size: 1.1rem;
    color: #222;
}

.data-row>div {
    text-align: left;
    justify-self: start;
}

.data-row>.col-aksi {
    justify-self: end;
    text-align: right;
    padding-left: 0;
}

.btn-hapus {
    background-color: transparent;
    color: #ff4d4d;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-hapus:hover {
    color: #cc0000;
    transform: translateY(-2px);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.card-link:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

@media screen and (max-width: 768px) {

    .dashboard-top-bar {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
        height: auto;
    }

    .search-form-top,
    .btn-logout {
        position: static;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
    }

    .search-input-top {
        width: 100%;
    }

    .dashboard-header {
        flex-direction: column;
        padding: 0 30px;
        margin-top: 5px;
        margin-bottom: 35px;
    }

    .dashboard-title {
        font-size: 2.2rem;
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .dashboard-cards {
        flex-direction: column;
        width: 100%;
    }

    .card {
        width: 100%;
        box-sizing: border-box;
    }

    .data-row {
        display: flex;
        flex-direction: column;
        padding: 20px 15px;
        gap: 10px;
        position: relative;
    }

    .col-name {
        font-size: 1.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 10px;
        margin-bottom: 5px;
        width: 85%;
    }

    .data-row>.col-aksi {
        position: absolute;
        top: 20px;
        right: 15px;
    }

    .data-alamat-row {
        padding: 15px 15px 25px 15px !important;
        font-size: 0.95rem;
    }

    .btn-logout {
        order: 1;
    }

    .top-bar-title {
        order: 2;
        margin: 3px 0;
    }

    .search-form-top {
        order: 3;
    }
}

.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    transition: all 0.3s ease;
}

.wa-icon {
    width: 40px;
    height: 40px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
    .wa-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 10px;
    }

    .wa-icon {
        width: 32px;
        height: 32px;
    }
}

.footer-section {
    background-color: #666666;
    color: #ffffff;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    padding: 30px 20px 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 120px;
    text-align: left;
}

.footer-logo img {
    width: 160px;
    height: auto;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 800;
    margin-top: 0;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item p,
.footer-address p {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #d1d1d1;
}

.footer-address {
    align-self: center;
}

.contact-item strong,
.footer-address strong {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.5;
}

.footer-bottom {
    background-color: #333333;
    text-align: center;
    padding: 8px 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #ffffff;
}

.ig-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ig-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 35px;
        padding: 40px 20px 20px 20px;
    }

    .footer-logo {
        align-self: center;
        margin-bottom: 3px;
    }

    .footer-address {
        align-self: flex-start;
        margin-top: -35px;
    }

    .footer-bottom {
        padding: 8px 70px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .contact-item p,
    .footer-address p {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .contact-item strong,
    .footer-address strong {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* ========== Scroll Reveal Animation Styles ========== */

[data-aos] {
    opacity: 1;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    opacity: 1;
    transform: scale(1);
}

[data-aos="slide-left"] {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="slide-right"] {
    opacity: 1;
    transform: translateX(0);
}

.data-row[data-aos],
.data-alamat-row[data-aos] {
    transition: all 0.6s ease-in-out;
}

.card[data-aos] {
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dashboard-title[data-aos],
.dashboard-cards[data-aos] {
    transition: all 0.8s ease-in-out;
}

/* ========== End Scroll Reveal Styles ========== */