/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

/* custom approve button used in pending jemaat list */
.btn-approve {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}
.btn-approve:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff;
}

/* allow notification message to wrap inside dropdown */
.dropdown-menu .text-wrap {
    white-space: normal !important;
    word-wrap: break-word;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/* Style Khusus Tombol cancel */
.btn-cancel-form {
    color: #dc3545;
    background-color: transparent;
    border: 2px solid #dc3545;
    padding: 8px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cancel-form:hover {
    background-color: #dc3545;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
    text-decoration: none;
}

.btn-cancel-form i {
    margin-right: 8px;
}


/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Roboto", sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: 0.5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: 0.5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/

/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/

/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination
    .tab-class
    .tab-content
    .tab-pane
    .destination-img
    .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;
}

.destination
    .tab-class
    .tab-content
    .tab-pane
    .destination-img
    .search-icon
    a
    i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination
    .tab-class
    .tab-content
    .destination-img:hover
    .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
        rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/

/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, 0.6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour
    #InternationalTab-2
    .international-item:hover
    .international-content {
    background: rgba(19, 53, 123, 0.6);
}

.ExploreTour
    #InternationalTab-2
    .international-item
    .international-content
    .international-info
    a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour
    #InternationalTab-2
    .international-item:hover
    .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour
    #InternationalTab-2
    .InternationalTour-carousel
    .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background:
        linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)),
        url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, 0.6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial
    .testimonial-carousel
    .owl-item.center
    .testimonial-item
    .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial
    .testimonial-carousel
    .owl-item.center
    .testimonial-item
    .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background:
        linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)),
        url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*** Custom Button Styles ***/
.btn-primarysubmit {
    background-color: #225582;
    border-color: #6c757d;
    color: #fff;
}

.btn-primarysubmit:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
}

.btn-primarysubmit:focus,
.btn-primarysubmit.focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 147, 0.5);
}

.btn-primarysubmit:active,
.btn-primarysubmit.active,
.btn-primarysubmit.show {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}
/*** Custom Button Styles End ***/


/* ============================================================
   TAMPILAN PAGES - SHARED COMPONENTS
   (Warta Jemaat, Detail Warta, Jadwal Ibadah, Detail Jadwal)
   ============================================================ */

/* Gold Divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: #C9A84C;
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Section Label */
.section-label {
    text-align: center;
    margin-bottom: 48px;
}
.section-label span {
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A84C;
    font-weight: 600;
}
.section-label h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #0D1B4B;
    margin-top: 6px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #7A7A7A;
    grid-column: 1 / -1;
}
.empty-state i {
    font-size: 3rem;
    color: #DDD;
    margin-bottom: 16px;
    display: block;
}

/* Shared Page Header */
.page-header-warta,
.page-header-jadwal {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-warta::before,
.page-header-jadwal::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-warta h1,
.page-header-jadwal h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
}
.page-header-warta .subtitle,
.page-header-jadwal .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* Shared Detail Header */
.detail-header {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.detail-header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 36px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.detail-header .breadcrumb-label {
    color: #F0D080;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}
.detail-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.35;
    position: relative;
}

/* Shared Detail Wrapper & Card */
.detail-wrapper {
    max-width: 960px;
    margin: 50px auto 80px;
    padding: 0 24px;
}
.surat-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 40px rgba(13,27,75,0.10);
    overflow: hidden;
}
.surat-topbar {
    background: #0D1B4B;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.surat-topbar .church-name {
    color: #F0D080;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.surat-topbar .warta-label {
    background: #C9A84C;
    color: #0D1B4B;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.surat-content {
    padding: 40px 40px 36px;
}
.surat-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F0EDE6;
}
.surat-title-row h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #0D1B4B;
    line-height: 1.35;
    max-width: 560px;
}
.surat-date-col { text-align: right; flex-shrink: 0; }
.surat-date-col .date-label {
    font-size: 0.72rem;
    color: #7A7A7A;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.surat-date-col .date-value {
    font-size: 1rem;
    font-weight: 700;
    color: #0D1B4B;
}
.surat-date-col .date-value i { color: #C9A84C; margin-right: 5px; }
.surat-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: start;
}
.surat-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,27,75,0.12);
    position: relative;
}
.surat-img-wrap img { width: 100%; display: block; object-fit: cover; }
.img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(13,27,75,0.75));
    padding: 24px 14px 12px;
    color: #F0D080;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.surat-text h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #0D1B4B;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.surat-text h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E8E4DC;
}
.surat-text p {
    font-size: 0.97rem;
    color: #2C2C2C;
    line-height: 1.9;
    text-align: justify;
}
.surat-divider {
    border: none;
    border-top: 1px dashed #DDD;
    margin: 32px 0;
}

/* Download Section */
.download-section {
    background: #F7F5F0;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.download-info { display: flex; align-items: center; gap: 16px; }
.pdf-icon {
    width: 52px; height: 52px;
    background: #0D1B4B;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pdf-icon i { color: #F0D080; font-size: 1.4rem; }
.download-info .doc-name { font-weight: 700; color: #0D1B4B; font-size: 0.95rem; }
.download-info .doc-desc { font-size: 0.8rem; color: #7A7A7A; margin-top: 2px; }
.btn-download {
    background: #C9A84C;
    color: #0D1B4B !important;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}
.btn-download:hover { background: #B8943A; transform: translateY(-2px); }

/* Back & Read Buttons */
.back-row { margin-top: 32px; text-align: center; }
.btn-back {
    color: #0D1B4B !important;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #0D1B4B;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.btn-back:hover { background: #0D1B4B; color: #fff !important; }
.btn-baca {
    background: #0D1B4B;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
}
.btn-baca:hover { background: #C9A84C; color: #0D1B4B !important; }

/* ============================================================
   WARTA JEMAAT - CARDS
   ============================================================ */
.warta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.warta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 32px;
}
.warta-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,27,75,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.warta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13,27,75,0.16);
}
.wcard-img {
    width: 100%; height: 210px;
    overflow: hidden;
    position: relative;
}
.wcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.warta-card:hover .wcard-img img { transform: scale(1.06); }
.wcard-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: #0D1B4B;
    color: #F0D080;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.wcard-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.wcard-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #0D1B4B;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.wcard-desc {
    font-size: 0.88rem;
    color: #7A7A7A;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #F0EDE6;
}
.wcard-date { font-size: 0.8rem; color: #7A7A7A; }
.wcard-date i { margin-right: 4px; color: #C9A84C; }

/* ============================================================
   JADWAL IBADAH - CARDS
   ============================================================ */
.jadwal-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.jadwal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}
.jadwal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,27,75,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.jadwal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13,27,75,0.16);
}
.jcard-img {
    width: 100%; height: 200px;
    overflow: hidden;
    position: relative;
}
.jcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.jadwal-card:hover .jcard-img img { transform: scale(1.06); }
.jcard-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: #0D1B4B;
    color: #F0D080;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.jcard-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.jcard-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: #0D1B4B;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.jcard-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.jcard-meta span {
    font-size: 0.85rem;
    color: #7A7A7A;
    display: flex;
    align-items: center;
    gap: 8px;
}
.jcard-meta span i { color: #C9A84C; width: 14px; }
.jcard-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #F0EDE6;
    display: flex;
    justify-content: flex-end;
}

/* ============================================================
   JADWAL DETAIL - INFO LIST
   ============================================================ */
.jadwal-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #F7F5F0;
    border-radius: 10px;
}
.info-icon {
    width: 38px; height: 38px;
    background: #0D1B4B;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.info-icon i { color: #F0D080; font-size: 0.9rem; }
.info-label {
    font-size: 0.72rem;
    color: #7A7A7A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}
.info-value {
    font-size: 0.97rem;
    font-weight: 600;
    color: #0D1B4B;
}

/* ============================================================
   GALERI PAGE
   ============================================================ */
.page-header-galeri {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-galeri::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-galeri h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
}
.page-header-galeri .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* Intro */
.galeri-intro {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 0;
    text-align: center;
}
.galeri-intro-text {
    font-size: 0.97rem;
    color: #7A7A7A;
    line-height: 1.85;
    margin-top: 8px;
}

/* Section */
.galeri-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* Tab Buttons */
.galeri-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gtab-btn {
    background: #fff;
    color: #0D1B4B;
    border: 2px solid #0D1B4B;
    border-radius: 30px;
    padding: 10px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s, color 0.25s;
    letter-spacing: 0.3px;
}
.gtab-btn i { font-size: 0.85rem; }
.gtab-btn.active,
.gtab-btn:hover {
    background: #0D1B4B;
    color: #F0D080;
    border-color: #0D1B4B;
}

/* Tab Content */
.gtab-content { display: none; }
.gtab-content.active { display: block; }

/* Description Card */
.galeri-desc-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 36px;
    box-shadow: 0 4px 20px rgba(13,27,75,0.08);
    border-left: 4px solid #C9A84C;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.gdesc-icon {
    width: 44px; height: 44px;
    background: #0D1B4B;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gdesc-icon i { color: #F0D080; font-size: 1rem; }
.galeri-desc-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Galeri Grid */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Galeri Card */
.galeri-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,27,75,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.galeri-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(13,27,75,0.15);
}
.gcard-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.gcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.galeri-card:hover .gcard-img img { transform: scale(1.07); }
.gcard-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(13,27,75,0.7));
    padding: 28px 14px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.galeri-card:hover .gcard-overlay { opacity: 1; }
.gcard-label {
    color: #F0D080;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gcard-label i { margin-right: 4px; }
.gcard-body {
    padding: 14px 16px;
}
.gcard-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.98rem;
    color: #0D1B4B;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* ============================================================
   DONASI PAGE
   ============================================================ */
.page-header-donasi {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-donasi::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-donasi h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
}
.page-header-donasi .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.donasi-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* Summary Cards */
.donasi-summary {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.summary-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 4px 20px rgba(13,27,75,0.09);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid #C9A84C;
    transition: transform 0.25s ease;
}
.summary-card:hover { transform: translateY(-4px); }
.summary-card.summary-total {
    background: #0D1B4B;
    border-left-color: #C9A84C;
}
.summary-card.summary-total .summary-label,
.summary-card.summary-total .summary-value { color: #fff; }
.summary-card.summary-total .summary-icon { background: rgba(201,168,76,0.2); }
.summary-icon {
    width: 46px; height: 46px;
    background: #F0EDE6;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.summary-icon i { color: #C9A84C; font-size: 1.1rem; }
.summary-label {
    font-size: 0.75rem;
    color: #7A7A7A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.summary-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0D1B4B;
}

/* Table Wrap */
.donasi-table-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,27,75,0.09);
    margin-bottom: 28px;
}
.dtable-header {
    background: #0D1B4B;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dtable-icon {
    width: 34px; height: 34px;
    background: rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dtable-icon i { color: #F0D080; font-size: 0.9rem; }
.dtable-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #F0D080;
    margin: 0;
    font-weight: 700;
}

/* Table */
.donasi-table {
    width: 100%;
    border-collapse: collapse;
}
.donasi-table thead tr {
    background: #F7F5F0;
}
.donasi-table thead th {
    padding: 12px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0D1B4B;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 2px solid #EEE;
    text-align: left;
}
.donasi-table tbody tr {
    border-bottom: 1px solid #F0EDE6;
    transition: background 0.2s;
}
.donasi-table tbody tr:hover { background: #FAFAF7; }
.donasi-table tbody td {
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #2C2C2C;
}
.donasi-table tbody td.amount {
    font-weight: 700;
    color: #0D1B4B;
}
.jenis-badge {
    background: #EEF1F8;
    color: #0D1B4B;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.donasi-table tfoot .subtotal-row td {
    padding: 12px 18px;
    background: #F7F5F0;
    font-weight: 700;
    color: #0D1B4B;
    font-size: 0.9rem;
    border-top: 2px solid #E8E4DC;
}

/* Grand Total */
.grand-total-card {
    background: #0D1B4B;
    border-radius: 14px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}
.gt-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #F0D080;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
}
.gt-left i { font-size: 1.2rem; }
.gt-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

/* ============================================================
   DATA JEMAAT PAGE
   ============================================================ */
.page-header-jemaat {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-jemaat::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-jemaat h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    position: relative;
}
.page-header-jemaat .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.jemaat-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}

/* Search */
.jemaat-search-wrap {
    margin-bottom: 32px;
}
.jemaat-search-box {
    position: relative;
    max-width: 480px;
}
.jemaat-search-box .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #C9A84C;
    font-size: 0.9rem;
}
.jemaat-search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid #E8E4DC;
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    box-shadow: 0 2px 10px rgba(13,27,75,0.06);
}
.jemaat-search-box input:focus { border-color: #C9A84C; }
.jemaat-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(13,27,75,0.12);
    overflow: hidden;
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}
.jemaat-dropdown-item {
    padding: 10px 16px;
    font-size: 0.88rem;
    color: #2C2C2C;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
}
.jemaat-dropdown-item i { color: #C9A84C; font-size: 0.8rem; }
.jemaat-dropdown-item:hover { background: #F7F5F0; }

/* Table */
.jemaat-table-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,27,75,0.09);
}
.jemaat-table {
    width: 100%;
    border-collapse: collapse;
}
.jemaat-table thead tr { background: #0D1B4B; }
.jemaat-table thead th {
    padding: 14px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #F0D080;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
}
.jemaat-table tbody tr {
    border-bottom: 1px solid #F0EDE6;
    transition: background 0.2s;
}
.jemaat-table tbody tr:hover { background: #FAFAF7; }
.jemaat-table tbody td {
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #2C2C2C;
    vertical-align: middle;
}
.jemaat-name {
    display: flex;
    align-items: center;
    gap: 10px;
}
.jemaat-avatar {
    width: 34px; height: 34px;
    background: #0D1B4B;
    color: #F0D080;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sektor-badge {
    background: #EEF1F8;
    color: #0D1B4B;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.alamat-cell {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0D1B4B;
    color: #F0D080;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-detail:hover { background: #C9A84C; color: #fff; }

/* Register Section */
.jemaat-register-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 80px;
}
.register-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(13,27,75,0.1);
    display: flex;
    overflow: hidden;
}
.register-qr {
    background: #F7F5F0;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #EEEAE0;
    flex-shrink: 0;
}
.qr-wrap {
    text-align: center;
}
.qr-wrap h6 {
    font-weight: 700;
    color: #0D1B4B;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.qr-wrap p {
    font-size: 0.78rem;
    color: #7A7A7A;
    margin-top: 14px;
    margin-bottom: 0;
}
.register-info {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.register-icon {
    width: 52px; height: 52px;
    background: #0D1B4B;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.register-icon i { color: #F0D080; font-size: 1.3rem; }
.register-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #0D1B4B;
    margin-bottom: 12px;
}
.register-info p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}
.register-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-daftar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0D1B4B;
    color: #F0D080;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-daftar:hover { background: #C9A84C; color: #fff; }
.btn-qr-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0D1B4B;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid #0D1B4B;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-qr-modal:hover { background: #0D1B4B; color: #F0D080; }

/* ============================================================
   PENDAFTARAN JEMAAT PAGE
   Tambahkan ke: public/Template/css/style.css
   ============================================================ */

/* --- Header --- */
.page-header-pendaftaran {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-pendaftaran::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-pendaftaran h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    position: relative;
}
.page-header-pendaftaran .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* --- Section Wrapper --- */
.pendaftaran-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 80px;
}

/* --- Form Card --- */
.form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(13,27,75,0.1);
    overflow: hidden;
}
.form-card-header {
    background: #0D1B4B;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.form-header-icon {
    width: 50px; height: 50px;
    background: rgba(201,168,76,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.form-header-icon i { color: #F0D080; font-size: 1.3rem; }
.form-card-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #F0D080;
    margin: 0 0 4px;
}
.form-card-header p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* --- Form Sections --- */
.form-section {
    padding: 28px 32px;
    border-bottom: 1px solid #F0EDE6;
}
.form-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0D1B4B;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-section-title i { color: #C9A84C; }
.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 6px;
    display: block;
}

/* --- Input Soft Border --- */
.border-soft {
    border: 1.5px solid #DDD !important;
    border-radius: 6px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.border-soft:focus {
    border-color: #C9A84C !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
    outline: none;
}
.border-soft:disabled {
    background: #F5F5F5;
    border-color: #E8E8E8 !important;
    color: #AAA;
}

/* --- Table Header --- */
.thead-main th {
    background: #0D1B4B;
    color: #F0D080;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    padding: 12px 10px;
    border-color: #1a3080 !important;
}
.thead-sub th {
    background: #132660;
    color: #F0D080;
    font-size: 0.72rem;
    padding: 8px 10px;
    border-color: #1a3080 !important;
}

/* --- Row Category (A, B, C) --- */
.row-category {
    background-color: #EEF1F8 !important;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: #0D1B4B;
    border-bottom: 2px solid #C9A84C !important;
}
.row-category td { padding: 10px 14px !important; }

/* --- Row Disabled --- */
.row-disabled {
    opacity: 0.45;
    background-color: #FAFAFA !important;
}

/* --- Buttons inside table --- */
.btn-tambah-anak {
    background: #0D1B4B;
    color: #F0D080;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
}
.btn-tambah-anak:hover { background: #C9A84C; color: #fff; }

.btn-hapus-baris {
    background: transparent;
    border: 1.5px solid #dc3545;
    color: #dc3545;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-hapus-baris:hover { background: #dc3545; color: #fff; }

/* --- Form Footer --- */
.form-footer {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAF7;
    border-top: 1px solid #F0EDE6;
}
.btn-batal {
    color: #dc3545;
    border: 1.5px solid #dc3545;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}
.btn-batal:hover { background: #dc3545; color: #fff; }
.btn-kirim {
    background: #0D1B4B;
    color: #F0D080;
    border: none;
    padding: 12px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-kirim:hover { background: #C9A84C; color: #fff; }

/* Fix select L/P di tabel - kolom sempit */
#tabelJemaat select.form-select-sm {
    min-width: 58px;
    padding-left: 4px;
    padding-right: 20px;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}
/* ============================================================
   PROFILE PENGURUS PAGE
   Tambahkan ke: public/Template/css/style.css
   ============================================================ */

/* --- Header --- */
.page-header-profile {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-profile::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-profile h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    position: relative;
}
.page-header-profile .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* --- About Section --- */
.profile-about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 24px 50px;
}
.profile-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.profile-about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(13,27,75,0.15);
}
.profile-about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.profile-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0D1B4B;
    color: #F0D080;
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
}
.profile-about-text p {
    color: #555;
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 28px;
}

/* --- Stats --- */
.profile-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.pstat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F7F5F0;
    border-radius: 12px;
    padding: 14px 18px;
    flex: 1;
    min-width: 130px;
}
.pstat-icon {
    width: 40px; height: 40px;
    background: #0D1B4B;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pstat-icon i { color: #F0D080; font-size: 1rem; }
.pstat-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0D1B4B;
    line-height: 1;
}
.pstat-label {
    font-size: 0.72rem;
    color: #7A7A7A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* --- Pengurus Grid Section --- */
.pengurus-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 80px;
}
.pengurus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 28px;
    margin-top: 10px;
}

/* --- Pengurus Card --- */
.pengurus-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13,27,75,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pengurus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(13,27,75,0.15);
}
.pengurus-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.pengurus-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pengurus-card:hover .pengurus-img img { transform: scale(1.06); }
.pengurus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(13,27,75,0.75));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pengurus-card:hover .pengurus-overlay { opacity: 1; }
.pengurus-overlay i { color: #F0D080; font-size: 1.4rem; }
.pengurus-body {
    padding: 18px 16px;
    text-align: center;
    border-top: 3px solid #C9A84C;
}
.pengurus-body h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #0D1B4B;
    margin-bottom: 8px;
    font-weight: 700;
}
.jabatan-badge {
    background: #EEF1F8;
    color: #0D1B4B;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ============================================================
   LOKASI PAGE
   Tambahkan ke: public/Template/css/style.css
   ============================================================ */

/* --- Header --- */
.page-header-lokasi {
    background: linear-gradient(135deg, #0D1B4B 60%, #1a3080 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-lokasi::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,0.12);
    pointer-events: none;
}
.page-header-lokasi h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    position: relative;
}
.page-header-lokasi .subtitle {
    color: #F0D080;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* --- Section Wrapper --- */
.lokasi-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* --- Map --- */
.lokasi-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13,27,75,0.14);
    margin-bottom: 48px;
    border: 4px solid #fff;
    outline: 2px solid #C9A84C;
}
.lokasi-map-wrap iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

/* --- Info Cards Grid --- */
.lokasi-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}

/* --- Info Card --- */
.lokasi-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(13,27,75,0.09);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #C9A84C;
}
.lokasi-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(13,27,75,0.14);
}
.linfo-icon {
    width: 48px; height: 48px;
    background: #0D1B4B;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.linfo-icon i { color: #F0D080; font-size: 1.1rem; }
.linfo-body h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0D1B4B;
    margin-bottom: 6px;
}
.linfo-body p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    word-break: break-word;      
    overflow-wrap: break-word;  
}
.linfo-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #C9A84C;
    text-decoration: none;
    transition: color 0.2s;
}
.linfo-link:hover { color: #0D1B4B; }
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
    .surat-body { grid-template-columns: 1fr; }
    .surat-title-row { flex-direction: column; }
    .surat-date-col { text-align: left; }
    .surat-content { padding: 24px 20px; }
    .detail-header h1 { font-size: 1.6rem; }
    .surat-topbar { padding: 14px 20px; }
    .page-header-warta h1,
    .page-header-jadwal h1,
    .page-header-galeri h1 { font-size: 2rem; }
    .warta-grid,
    .jadwal-grid,
    .galeri-grid { grid-template-columns: 1fr; }
    .download-section { flex-direction: column; align-items: flex-start; }
    .galeri-desc-card { flex-direction: column; }
    .galeri-tabs { gap: 10px; }
    .gtab-btn { padding: 8px 20px; font-size: 0.82rem; }
    .donasi-summary { grid-template-columns: 1fr; }
    .grand-total-card { flex-direction: column; align-items: flex-start; }
    .donasi-table thead th,
    .donasi-table tbody td,
    .donasi-table tfoot td { padding: 10px 12px; font-size: 0.82rem; }
    .page-header-donasi h1 { font-size: 2rem; }
    .page-header-jemaat h1 { font-size: 2rem; }
    .jemaat-grid { grid-template-columns: 1fr; }
    .register-card { flex-direction: column; }
    .register-qr { border-right: none; border-bottom: 2px solid #F0EDE6; padding-bottom: 28px; }
    .register-actions { flex-direction: column; }
    .page-header-pendaftaran h1 { font-size: 2rem; }
    .form-card-header { flex-direction: column; align-items: flex-start; padding: 20px; }
    .form-section { padding: 20px 16px; }
    .form-footer { flex-direction: column; gap: 12px; padding: 20px 16px; }
    .btn-batal, .btn-kirim { width: 100%; justify-content: center; }
    .page-header-profile h1 { font-size: 2rem; }
    .profile-about-inner { grid-template-columns: 1fr; gap: 32px; }
    .profile-about-img img { height: 280px; }
    .pengurus-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .profile-stats { flex-direction: column; }
    .page-header-lokasi h1 { font-size: 2rem; }
    .lokasi-map-wrap iframe { height: 280px; }
    .lokasi-info-grid { grid-template-columns: 1fr; }
}
