/*Global Setting*/
:root {
    --primary-color: #243949;
    --secondary-color: #517fa4;
    --accent-color: #fff;
    --yellow-color: #efb710;
}

.bg-yellow {
    background-color: var(--yellow-color) !important;
    color: var(--accent-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--accent-color) !important;
}
.border-primary {
    border-color: var(--primary-color) !important;
}
.border-warning {
    border-color: var(--yellow-color) !important;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.divider{
    width: 60px;
    height: 3px;
}
.divider.bg-secondary {
    background-color: var(--secondary-color) !important;
}
.divider.bg-yellow {
    background-color: var(--yellow-color) !important;
}
.btn.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.btn.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}
#filter-price .btn.active {
    background-color: var(--primary-color) !important;
    color: white !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-yellow {
    color: var(--yellow-color) !important;
}
.text-icon-corp {
    color: var(--accent-color);
}

body {
    line-height: 24px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
/* =========================================================================== */
.top-bar {
    font-size: 0.875rem;
    background-color: #f9f9f9;
}
.dropdown-item.active {
    background-color: #f0f8ff !important;
    color: var(--primary-color) !important;
}

.dropdown-menu {
    min-width: 180px;
    border-radius: 0.5rem;
}
.navbar {
    transition: all 0.3s ease;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: #333 !important;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
    }
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #3674B5);
    -webkit-background-clip: text;
    background-clip: text;
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.btn-book {
    background: linear-gradient(45deg, var(--primary-color), #3674B5);
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}
/* =========================================================================== */

/* Hero Section Styles */
.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-swiper {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 70vh;
        min-height: 450px;
    }
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features span {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-features i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    margin-top: 20px;
    bottom: auto !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
    padding: 0 15px;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scaleX(1.2);
}

/* Hero Navigation Buttons */
.hero-button-next,
.hero-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%; /* lebih aman agar tidak menutup teks */
    transform: translateY(-50%);
    z-index: 5; /* diturunkan agar tidak timpa konten utama */
    cursor: pointer;
}

.hero-button-next {
    right: 20px;
}

.hero-button-prev {
    left: 20px;
}

.hero-button-next:hover,
.hero-button-prev:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-button-next::after,
.hero-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* Responsive Adjustments */
@media (min-width: 1400px) {
    .hero-content {
        padding-left: 4rem;
    }
}

@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-swiper {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-button-next,
    .hero-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero-button-next {
        right: 15px;
    }

    .hero-button-prev {
        left: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}
.stack-slide {
    border-radius: 2rem;
}

#slideDescription {
    backdrop-filter: blur(8px);
}
/* ============================================================================================== */

/* Facilities Section */
.facility-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    transform: rotateY(180deg);
}
/* ============================================================================================== */
/* Room Filter */
/* .room-filter-wrapper {
    position: absolute;
    left: 50%;
    bottom: -250px;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    padding: 0 1rem;
    max-width: 1140px;
} */

.room-filter {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border: 1px solid #e5e5e5;
}

.room-filter .form-control,
.room-filter .form-select {
    border-radius: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.room-filter .form-control:focus,
.room-filter .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}

.room-filter .input-group-text {
    border-radius: 0.5rem 0 0 0.5rem;
    border-right: 0;
}

/* RESPONSIVE: saat mobile, pindah ke bawah hero */
@media (max-width: 768px) {
    .room-filter-wrapper {
        position: static;
        transform: none;
        bottom: auto;
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

/* ============================================================================================== */
/* Signature Room */
.card img.object-fit-cover {
    object-fit: cover;
}
.object-fit-cover {
    object-fit: cover;
}
.badge-sm {
    font-size: 0.75rem;   /* lebih kecil dari default 0.875rem */
    padding: 0.35em 0.6em;
    border-radius: 0.4rem;
}
/* ============================================================================================== */
/* About Us Section */
#about {
    /* margin-top: 150px; */
}
@media (max-width: 768px) {
    #about {
        margin-top: 0;
    }
}
/* ============================================================================================== */
/* About pages */
.about-hero {
    position: relative;
    z-index: 1;
    background: url("/images/rooms/room1.jpg") no-repeat center center;
    background-size: cover;
    height: 60vh;
    max-height: 300px;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-us-section h2 {
    font-size: 2rem;
}

.about-image img {
    object-fit: cover;
    max-height: 400px;
}

/* ============================================================================================== */

/* Rooms Section */
.info-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 576px) {
    .info-card {
        padding: 1rem 1.25rem;
    }
    .info-card .icon {
        width: 45px;
        height: 45px;
    }
    .info-card i {
        font-size: 1.2rem;
    }
    .info-card .h5 {
        font-size: 1.25rem;
    }
    .display-4 {
        font-size: 2rem;
    }
}

.room-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    padding: 0;
}
.room-facilities .icon-box i {
    color: var(--yellow-color);
}
.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px;
}
.room-image {
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffffdd;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    z-index: 2;
}

.room-play-button button:hover {
    transform: scale(1.05);
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.room-price + .text-muted {
    font-size: 0.9rem;
    color: #888;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 6px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.btn-view-details {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 6px;
    transition: all 0.25s ease;
    margin-top: auto;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.room-price .text-primary {
    font-weight: 600;
}

/* Swiper Styles */

.swiper-nav-buttons {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.swiper-nav-buttons .swiper-button-prev,
.swiper-nav-buttons .swiper-button-next {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 40px;
    height: 40px;
    margin: 0;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.swiper-nav-buttons .swiper-button-prev:hover,
.swiper-nav-buttons .swiper-button-next:hover {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.swiper-nav-buttons .swiper-button-prev:after,
.swiper-nav-buttons .swiper-button-next:after {
    font-size: 16px;
}

.swiper-nav-buttons .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* ============================================================================================== */
/* About Section Styles */
#about {
    position: relative;
    overflow: hidden;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* ============================================================================================== */
/* Service Section */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--yellow-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-description {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card-footer {
    margin-top: auto;
}

.service-features li {
    padding: 5px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.service-features li:before {
    content: "✓";
    color: #198754;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================================================================== */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bs-primary), #3674B5);
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section .btn {
    min-width: 200px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
/* ============================================================================================== */
.object-fit-cover {
    object-fit: cover;
}
.corporate-section {
    background-color: var(--bs-primary);
    background: linear-gradient(135deg, var(--bs-primary), #0056b3);
    color: white;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 1.5rem 2rem rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}
.group {
    position: relative;
    cursor: pointer;
}

.group img.transition {
    transition: transform 0.4s ease;
}

.group:hover img.transition {
    transform: scale(1.05);
}

.group-hover-opacity-100 {
    transition: opacity 0.3s ease-in-out;
}

.group:hover .group-hover-opacity-100 {
    opacity: 1 !important;
}
.facility-caption {
    font-size: 0.9rem;
    padding: 0.5rem;
    backdrop-filter: blur(3px);
    font-weight: 500;
}
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2) !important;
}
.transition {
    transition: all 0.3s ease-in-out;
}
/* ============================================================================================== */
/* Lokasi terdekat section */
.equal-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.equal-height-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px; /* kamu bisa sesuaikan ini */
}
/* ============================================================================================== */
/* FAQ Section */

/* Remove outline */
.accordion-button:focus {
    box-shadow: none;
}

/* Transition for smooth hover/active state */
.accordion-button {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active (opened) accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--bs-yellow) !important;
    color: #fff !important;
}

/* Icon (arrow) color adjustment when active */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1); /* makes arrow white */
}
/* ============================================================================================== */
/* Contact Section */
.contact-hero-section {
    position: relative;
    z-index: 1;
    background: url("/images/rooms/room1.jpg") no-repeat center center;
    background-size: cover;
    height: 60vh;
    max-height: 300px;
}
#contact input,
#contact textarea {
  border-radius: 0.5rem;
}

#contact .form-control:focus {
  box-shadow: none;
  border-color: #000;
}

#contact i {
  color: #000;
  transition: all 0.2s;
}

#contact i:hover {
  color: #4f46e5;
}
/* ============================================================================================== */
/* Footer */
.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link i {
    color: var(--yellow-color);
}

.footer-link:hover {
    color: var(--yellow-color);
}

.hover-social {
    transition: all 0.3s ease;
}
.hover-social:hover {
    color: var(--yellow-color) !important; /* Yellow on hover */
    transform: scale(1.2);
}


/* ============================================================================================== */
/* skeleton */
.skeleton {
    background-color: #e2e8f0;
    border-radius: 0.5rem;
    animation: skeleton-loading 1.5s infinite linear;
}

@keyframes skeleton-loading {
    0% { background-color: #e2e8f0; }
    50% { background-color: #f1f5f9; }
    100% { background-color: #e2e8f0; }
}

.skeleton-text { height: 1rem; margin-bottom: 0.5rem; }
.skeleton-img { height: 300px; aspect-ratio: 4 / 3; }
.skeleton-btn { height: 40px; border-radius: 0.375rem; }
/* ============================================================================================== */
/* Gallery */
.masonry {
    column-count: 3;
    column-gap: 1.2rem;
}

@media (max-width: 992px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.2rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    color: #fff;
    opacity: 0;
    transform: translateY(15%);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.value-card {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon-circle-value {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FFD43B;
}

.footer-hover-social:hover {
    color: #FFD43B !important;
}

.footer-gallery-thumb img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-gallery-thumb:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
/* ============================================================================================== */
/* Contact Section */
.map-contact-container {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
  }

  @media (max-width: 768px) {
    .map-contact-container {
      height: 300px;
    }
  }

  .contact-social-link {
    color: #f1c40f; /* warna kuning */
    transition: transform 0.2s, color 0.2s;
  }

  .contact-social-link:hover {
    color: #d4ac0d;
    transform: scale(1.2);
  }
/* ============================================================================================== */
/* Review Section */
.review-avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
}