html{
    scroll-behavior: smooth;
}

* {
    margin:0;
    padding:0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}


/* Logo styles */
.logo-left {
    display: flex;
    align-items: center;
}

.logo-left img {
    height: 40px;
    width: auto;
    max-width: 120px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-left .logo-dark {
    display: none;
}

.navbar.scrolled .logo-left .logo-light {
    display: none;
}

.navbar.scrolled .logo-left .logo-dark {
    display: block;
}

.logo-right {
    color: white;
    font-size: 1.5rem;
    font-weight: bolder;
    font-family: "EB Garamond", serif;
    transition: color 0.3s ease;
    text-decoration: none;
}

.logo-right a {
    color: inherit !important;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    text-decoration: none !important;
    transition: color 0.3s;
}
.logo-right a:hover,
.logo-right a:focus {
    color: #bfa14a;
}


.navbar.scrolled .logo-right {
    color: #674C1D;
}

.navbar.scrolled{
    background-color: #FFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.burger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.burger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #674c1d;
    border-radius: 3px;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.navbar.scrolled .burger-icon span {
    background: #674C1D;
}

.burger-icon span:first-child {
    top: 0;
    transform-origin: left center;
}

.burger-icon span:nth-child(2) {
    top: 8px;
    width: 22px;
    transform-origin: left center;
}

.burger-icon span:last-child {
    top: 16px;
    transform-origin: left center;
}

/* Burger Menu Active State */
.burger-menu.active .burger-icon span:first-child {
    transform: rotate(45deg);
    top: -3px;
    left: 4px;
}

.burger-menu.active .burger-icon span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.burger-menu.active .burger-icon span:last-child {
    transform: rotate(-45deg);
    top: 19px;
    left: 4px;
}

/* Close button styling */
.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #674C1D;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1002;
    display: none;
}

.nav-links.active .close-menu-btn {
    display: block;
}
    
.close-menu-btn:hover {
    opacity: 0.5;
}

/* Navigation Links */
.nav-links {
    z-index: 1001;
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.2rem 1rem;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-weight:200;
    display: inline-block;
    position: relative;
}

.nav-links a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffffff;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after
{
    width: 100%;
}

.navbar.scrolled .nav-links a{
    color: #674C1D;
}

.navbar.scrolled .nav-links a::after{
    background: #674C1D;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1130px) {
    .burger-menu {
        display: block;
        margin-right: auto;
        opacity: 1;
        visibility: visible;
        position: fixed;
        top: 15px;
        left: 20px;
    }

    .burger-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .close-menu-btn {
        display: none;
    }

    .nav-links.active .close-menu-btn {
        display: block;
    }

    .navbar {
        background-color: #FFFFFF;
    }

    .logo-left .logo-light {
        display: none;
    }

    .logo-left .logo-dark {
        display: block;
    }

    .nav-content {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }

    .logo-right {
        order: 1;
        color: #674C1D;
    }

    .logo-left {
        order: 2;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 200px;
        height: 100vh;
        background: #FFFFFFFF;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px;
        padding-bottom: 40px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        overflow-y: none;
        border-bottom: 1px solid #674C1D;
    }

    .nav-links.active{
        left: 100px;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        margin: 0.2rem 0;
    }

    .nav-links a {
        color: #674C1D;
        font-size: 1.2rem;
        width: 100%;
        padding: 0.8rem 2rem;
        transition: all 0.3s ease;
        position: relative;
        border-bottom: 1px solid #674C1D;   
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: #674C1D;
        left: 2rem;
        bottom: 0.5rem;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        padding-left: 3rem;
        background-color: rgba(103, 76, 29, 0.1);
    }

    .nav-links a:hover::after {
        width: calc(100% - 4rem);
    }
}

@media screen and (max-width: 768px) {
    .burger-menu {
        top: 12px;
    }
}

@media screen and (max-width: 480px) {
    .burger-menu {
        top: 10px;
    }
}

@media screen and (max-width: 360px) {
    .burger-menu {
        top: 8px;
    }
}

@media screen and (max-width: 280px) {
    .burger-menu {
        top: 8px;
    }
}

/* Additional responsive adjustments */
@media screen and (max-width: 480px) {
    .nav-content {
        padding: 0 10px;
    }

    .logo-left img {
        height: 35px;
    }

    .logo-right {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 360px) {
    .logo-left img {
        height: 30px;
    }

    .logo-right {
        font-size: 1rem;
    }
}

/* Header Styles */
.header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

/* Menambahkan bayangan transisi */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}


/* Hapus gradasi overlay pada carousel */
.carousel::before {
    display: none;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.219);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 24px;
    z-index: 100;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 107;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #674c1d1b;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #674C1D;
}

/* Styling untuk Sewa Apartemen page mulai */
.header-text-overlay-discover {
    position: absolute;
    font-family: "Montserrat", sans-serif;
    font-weight: bolder;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 100;
    width: 80%;
    max-width: 800px;
    padding: 2rem;

}

.header-text-overlay-discover p {
    font-size: 3rem;
    line-height: 1.6;
    text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 760px){
    .header-text-overlay-discover p{
        font-size: 2rem;
    }
}
@media screen and (max-width: 530px){
    .header-text-overlay-discover p{
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 418px){
    .header-text-overlay-discover p{
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 350px){
    .header-text-overlay-discover p{
        font-size: 1rem;
    }
}
@media screen and (max-width: 305px){
    .header-text-overlay-discover p{
        font-size: 0.8rem;
    }
}

.service-container-apart {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
}

.service-item-apart {
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    padding-bottom: 10px;
}

.service-item-apart i {
    font-size: 2.5rem;
    color: #674C1D ;
    margin-bottom: 50px;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 808px) {
    .service-item-apart i {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .service-item-apart i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

.book-now-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    width: 100vw;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.book-now-container.visible {
    opacity: 1;
    visibility: visible;
}

/* Prevent Book Now button from being affected by menu-open state */
body.menu-open .book-now-container.visible {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}



/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.book-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    padding: 5px 0;
    background: linear-gradient(to right, #674c1d, #d4af37, #674c1d);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: none;
    text-decoration: none;
    transform: translateY(20px);
    transition: background 0.6s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.6s cubic-bezier(0.4,0,0.2,1),
                color 0.3s cubic-bezier(0.4,0,0.2,1),
                transform 0.3s cubic-bezier(0.4,0,0.2,1);
    isolation: isolate;
    overflow: hidden;
    max-width: none;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0.08) 100%);
    transform: skewX(-25deg);
    transition: left 1s cubic-bezier(0.4,0,0.2,1), background 0.6s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    z-index: 1;
}

.book-now-btn:hover::before {
    left: 120%;
}

.book-now-btn:hover {
    background: linear-gradient(to right, #bfa14a, #ffe066, #bfa14a);
    color: #fff8e1;
    box-shadow: 0 8px 24px 0 rgba(212, 175, 55, 0.35), 0 1.5px 8px 0 rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.03);
}

.book-now-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.18);
}

.book-now-container.visible .book-now-btn {
    transform: translateY(0);
}


/* Memperbaiki responsivitas dan visibilitas */
@media screen and (max-width: 1130px) {
    .book-now-container {
        z-index: 998;
    }
    
    body.menu-open .book-now-container {
        opacity: 0;
        visibility: hidden;
    }
}

.book-now-icon {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-now-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Facilities Section Styles */
.facilities-section {
    padding: 20px 20px;
    background: #FFFFFF;
}

.facilities-title {
    text-align: center;
    color: #674C1D;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
    font-family: 'poppins', sans-serif;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 ;
}

.facility-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 6px 6px rgba(0, 0, 0, 0.1),
                0 0 15px rgba(103, 76, 29, 0.3);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(103, 76, 29, 0.8);
    color: #FFFFFF;
    padding: 15px;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .facilities-title {
        font-size: 2rem;
    }

    .facility-item img {
        width: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 500px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
}

@media screen and (max-width: 480px) {

    .facilities-title {
        font-size: 1.8rem;
    }

    .facility-item img {
        height: 100%;
        object-fit: cover;
    }

    .facility-item p {
        font-size: 1rem;
        padding: 10px;
    }
}

/* Room Section Styles */
.room-section {
    padding: 20px 0px;
    background: #FFFFFF;
    width: 100%;
}

.room-title {
    text-align: center;
    color: #674C1D;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
    font-family: 'poppins', sans-serif;
}

.room-slider-container {
    background-color: #674C1D;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.room-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.room-card {
    flex: 0 0 400px;
    background: #FFF8EBFF;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(103, 76, 29, 0.2);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 10px;
    padding: 1px 0;
}

.left-text, .right-text {
    font-family: "poppins", sans-serif;
    line-height: 1;
    color: #674C1D;
    font-size: 1rem;
    font-weight: bolder;
    max-width: 100px;
}

.right-text {
    text-align: right;
    max-width: 100px;
}

.room-type {
    -webkit-text-stroke: 0.5px #674C1D;
    -webkit-text-fill-color: #FFF8EB;
}



.room-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.neovala-text {
    color: #674C1D;
    font-size: 1rem;
    font-weight: 500;
}

.apartment-type {
    color: #674C1D;
    font-size: 1rem;
    font-weight: 500;
}

.room-card-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-btn {
    width: 100%;
    padding: 12px;
    background: #674C1D;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: #4a3714;
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .room-title {
        font-size: 2rem;
    }

    .room-card {
        flex: 0 0 300px;
    }

    .room-card-image {
        height: 250px;
    }

    .left-text, .right-text {
        font-size: 0.8rem;
    }
    
    .room-logo {
        width: 50px;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .room-title {
        font-size: 1.8rem;
    }

    .room-card {
        flex: 0 0 260px;
    }

    .room-card-image {
        height: 200px;
    }

    .neovala-text, 
    .apartment-type {
        font-size: 0.7rem;
    }

    .room-logo {
        width: 40px;
        height: auto;
    }

    .more-btn {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media screen and (max-width: 402px) {
    .room-title {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 335px) {
    .room-title {
        font-size: 1.2rem;
    }
}

/* Check-in Form Styles */
.checkin-section {
    padding: 4rem 20px;
    background: #FFFFFF;
}

.checkin-title {
    text-align: center;
    color: #674C1D;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'poppins', sans-serif;
}

.checkin-form-container {
    margin: 0 auto;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(103, 76, 29, 0.2);
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #674C1D;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #674C1D;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
}

/* Time input styling */
.form-group input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    padding: 12px;
    background: #FFFFFF;
    color: #333;
}

.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(26%) sepia(15%) saturate(2957%) hue-rotate(346deg) brightness(50%) contrast(87%);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #674C1d; /* Warna WhatsApp */
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .checkin-title {
        font-size: 2rem;
    }
    
    .checkin-form-container {
        padding: 20px;
        margin: 0 20px;
        width: auto;
    }

    .checkin-section {
        padding: 4rem 0;
    }

    .form-group textarea {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .checkin-title {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }
    
    .submit-btn {
        font-size: 1rem;
    }

    .form-group input[type="time"] {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 350px) {
    .checkin-title {
        font-size: 1.2rem;
    }

    .form-group input[type="time"] {
        font-size: 0.8rem;
        padding: 8px;
    }
}
@media screen and (max-width: 289px) {
    .submit-btn {
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 259px) {
    .submit-btn {
        font-size: 0.6rem;
    }
}


/* Location Section Styles */
.location-section {
    padding: 50px 0px;
    background: #FFFFFF;
    width: 100%;
}

.location-title {
    text-align: center;
    color: #674C1D;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'poppins', sans-serif;
}

.location-subtitle {
    text-align: center;
    -webkit-text-stroke: 0.5px #674C1D;
    -webkit-text-fill-color: white;
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
}

.location-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background-color: #674C1D;
    padding: 40px;
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(103, 76, 29, 0.2);
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

.location-info {
    background: #FFF8EB;
    padding: 30px;
    border-radius: 50px 0px 40px 0px;
    box-shadow: 0 4px 8px rgba(103, 76, 29, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-address {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(103, 76, 29, 0.1);
    border-radius: 10px;
    margin: 0;
}

.location-address i {
    color: #674C1D;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-address p {
    color: #674C1D;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(103, 76, 29, 0.1);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.feature-item i {
    color: #674C1D;
    font-size: 1.2rem;
}

.feature-item p {
    color: #674C1D;
    font-size: 0.9rem;
}

.direction-btn-wrapper {
    margin-top: auto;
    width: 100%;
}

.direction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 94%;
    margin: 0 auto;
    padding: 15px;
    background: #674C1D;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.direction-btn:hover {
    background-color: #FFF8EB;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px #674c1dbd;
    color: #674C1D;
}

@media screen and (max-width: 1145px) {
    .location-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}
/* Responsive Styles */
@media screen and (max-width: 992px) {
    .location-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .location-map {
        height: 350px;
    }
    
    .location-info {
        padding: 25px;
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .location-title {
        font-size: 2rem;
    }
    
    .location-subtitle {
        font-size: 1.6rem;
    }
    
    .location-container {
        padding: 20px;
        gap: 20px;
    }
    
    .location-map {
        height: 300px;
    }
    
    .location-info {
        padding: 20px;
        gap: 15px;
    }
    
    .location-address {
        padding: 20px;
    }
    
    .location-address i {
        font-size: 1.3rem;
    }
    
    .location-address p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .direction-btn {
        font-size: 1rem;
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .location-title {
        font-size: 1.8rem;
    }
    
    .location-subtitle {
        font-size: 1.4rem;
    }
    
    .location-container {
        padding: 15px;
        gap: 15px;
    }
    
    .location-map {
        height: 250px;
    }
    
    .location-info {
        padding: 15px;
        gap: 12px;
    }
    
    .location-address {
        padding: 15px;
    }
    
    .location-address i {
        font-size: 1.2rem;
    }
    
    .location-address p {
        font-size: 0.8rem;
    }
    
    .location-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
        gap: 8px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
    }
    
    .direction-btn {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media screen and (max-width: 350px) {
    .location-title {
        font-size: 1.5rem;
    }
    
    .location-subtitle {
        font-size: 1.2rem;
    }
    
    .location-container {
        padding: 10px;
        gap: 10px;
    }
    
    .location-map {
        height: 200px;
    }
    
    .location-info {
        padding: 12px;
        gap: 10px;
    }
    
    .location-address {
        padding: 12px;
    }
    
    .location-address i {
        font-size: 1rem;
    }
    
    .location-address p {
        font-size: 0.7rem;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 10px;
        gap: 6px;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .feature-item p {
        font-size: 0.7rem;
    }
    
    .direction-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 280px) {
    .location-title {
        font-size: 1.2rem;
    }
    
    .location-subtitle {
        font-size: 1rem;
    }
    
    .location-container {
        padding: 8px;
        gap: 8px;
    }
    
    .location-map {
        height: 180px;
    }
    
    .location-info {
        padding: 10px;
        gap: 8px;
    }
    
    .location-address {
        padding: 10px;
    }
    
    .location-address i {
        font-size: 0.9rem;
    }
    
    .location-address p {
        font-size: 0.65rem;
    }
    
    .feature-item {
        padding: 8px;
        gap: 5px;
    }
    
    .feature-item i {
        font-size: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.65rem;
    }
    
    .direction-btn {
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* Booking Section Styles */
.booking-section {
    position: relative;
    min-height: 400px;
    
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.booking-section-TPJ {
    background-image: url('../../images/images/discover-TPJ/fotomentah/booknow.jpg');
    background-size: cover;
    background-position: center;
}
.booking-section-TPC {
    background-image: url('../../images/images/discover-TPC/IMG_9451.jpg');
    background-size: cover;
    background-position: center;
}
.booking-section-GKL {
    background-image: url('../../images/images/discover-GKL/IMG_0117 (Copy).jpg');
    background-size: cover;
    background-position: center;
}
.booking-section-PLU {
    background-image: url('../../images/images/discover-PLU/IMG_1069.jpg');
    background-size: cover;
    background-position: center;
}
.booking-section-GWC {
    background-image: url('../../images/images/discover-GWC/IMG_3977.jpg');
    background-size: cover;
    background-position: center;
}
.booking-section-PGV {
    background-image: url('../../images/images/discover-PGV/IMG_0361.jpg');
    background-size: cover;
    background-position: center;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.booking-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.booking-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-subtitle {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.whatsapp-btn {
    background-color: #FFFFFF;
    color: rgba(37, 211, 102);
    border: 2px solid rgba(37, 211, 102);
}

.whatsapp-text {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.tiket-btn {
    background-color: #FFFFFF;
    color: #0064D2;
    border: 2px solid #0064D2;
    padding: 12px 40px;
    height: 100%;
    gap: 7px;
}

.tiket-btn:hover {
    background-color: #0064D2;
    color: #FFFFFF;
    box-shadow: 0 1px 10px #0064D2;
}

.whatsapp-btn:hover {
    background-color: rgba(37, 211, 102);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(37, 211, 102);
}

.tiket-element {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: yellow;
}

.tiket-text {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.tiket-text-i {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .booking-section {
        min-height: 350px;
        padding: 40px 15px;
    }

    .booking-title {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .booking-subtitle {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .booking-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .booking-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        min-width: auto;
    }

    .whatsapp-text, .tiket-text {
        font-size: 1.3rem;
    }

    .tiket-element {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 480px) {
    .booking-section {
        min-height: 300px;
        padding: 30px 10px;
    }

    .booking-title {
        font-size: 1.8rem;
    }

    .booking-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .booking-btn {
        padding: 10px 20px;
        max-width: 240px;
    }

    .whatsapp-text, .tiket-text {
        font-size: 1.1rem;
    }

    .tiket-element {
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 350px) {
    .booking-section {
        min-height: 250px;
        padding: 25px 8px;
    }

    .booking-title {
        font-size: 1.5rem;
    }

    .booking-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .booking-btn {
        padding: 8px 15px;
        max-width: 200px;
    }

    .whatsapp-text, .tiket-text {
        font-size: 0.9rem;
    }

    .tiket-element {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 280px) {
    .booking-section {
        min-height: 220px;
        padding: 20px 5px;
    }

    .booking-title {
        font-size: 1.2rem;
    }

    .booking-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .booking-btn {
        padding: 6px 12px;
        max-width: 180px;
        gap: 8px;
    }

    .whatsapp-text, .tiket-text {
        font-size: 0.8rem;
    }

    .tiket-element {
        width: 8px;
        height: 8px;
    }
}

@media screen and (max-width: 240px) {
    .booking-section {
        min-height: 200px;
        padding: 15px 5px;
    }

    .booking-title {
        font-size: 1rem;
    }

    .booking-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .booking-btn {
        padding: 5px 10px;
        max-width: 150px;
        gap: 6px;
    }

    .whatsapp-text, .tiket-text {
        font-size: 0.7rem;
    }

    .tiket-element {
        width: 6px;
        height: 6px;
    }
}

/* Footer Discover Styles */
.footer-discover {
    background-color: #674C1D;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    margin-top: 50px;
}

.scroll-top-discover {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-top-btn-discover {
    width: 50px;
    height: 50px;
    background: #674C1D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.scroll-top-btn-discover:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.scroll-top-btn-discover i {
    font-size: 1.5rem;
}

.footer-content-discover {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-logo-discover {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-discover img {
    width: 120px;
    height: auto;
}

.footer-logo-discover h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: white;
    font-family: "Poppins", sans-serif;
}

.footer-booking-discover {
    text-align: center;
}

.footer-booking-discover h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-family: "Poppins", sans-serif;
}

.footer-booking-discover p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: white;
    font-family: "Poppins", sans-serif;
}

.footer-social-discover {
    text-align: center;
}

.footer-social-discover h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
    font-family: "Poppins", sans-serif;
}

.social-icons-discover {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icons-discover a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icons-discover a:hover {
    transform: translateY(-5px);
}

.footer-bottom-discover {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-discover p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
    font-family: "Poppins", sans-serif;
}

/* Responsive Design untuk Footer Discover */
@media screen and (max-width: 768px) {
    .footer-content-discover {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-booking-discover, 
    .footer-social-discover {
        margin: 0 auto;
    }

    .social-icons-discover {
        justify-content: center;
    }

    .footer-logo-discover h2 {
        font-size: 1.3rem;
    }

    .footer-booking-discover h3,
    .footer-social-discover h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-discover {
        padding: 40px 0 20px;
    }

    .scroll-top-btn-discover {
        width: 40px;
        height: 40px;
    }

    .scroll-top-btn-discover i {
        font-size: 1.2rem;
    }

    .footer-logo-discover img {
        width: 100px;
    }

    .footer-logo-discover h2 {
        font-size: 1.2rem;
    }

    .footer-booking-discover h3,
    .footer-social-discover h3 {
        font-size: 1rem;
    }

    .footer-booking-discover p {
        font-size: 0.9rem;
    }

    .social-icons-discover a {
        font-size: 1.3rem;
    }

    .footer-bottom-discover p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 360px) {
    .footer-discover {
        padding: 30px 0 15px;
    }

    .footer-logo-discover img {
        width: 80px;
    }

    .footer-logo-discover h2 {
        font-size: 1.1rem;
    }

    .footer-booking-discover h3,
    .footer-social-discover h3 {
        font-size: 0.9rem;
    }

    .footer-booking-discover p {
        font-size: 0.8rem;
    }

    .social-icons-discover a {
        font-size: 1.2rem;
    }

    .footer-bottom-discover p {
        font-size: 0.7rem;
    }
}

/* Testimoni Section Styles */
.testimoni-section {
    padding: 80px 20px;
    background: #FFFFFF;
}

.testimoni-title,
.feedback-title {
    text-align: center;
    color: #674C1D;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Slider Comments Styles */
.testimoni-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimoni-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 60px;
}

.testimoni-slider::-webkit-scrollbar {
    display: none;
}

.testimoni-card {
    flex: 0 0 300px;
    min-width: 300px;
    width: 100%;
    background: rgba(249, 249, 249, 0.9765);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.testimoni-card:hover {
    transform: translateY(-5px);
}

.testimoni-card .quote-icon {
    font-size: 40px;
    color: #674C1D;
    line-height: 1;
    font-family: "42dot Sans", sans-serif;
    font-weight: bold;
}

.comment-text {
    color: #674C1D;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 15px 0;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-weight: 500;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    -ms-word-break: break-all;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    max-width: 100%;
    padding-right: 10px;
}

.testimoni-card .comment-footer {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimoni-card .comment-user {
    color: #674C1D;
    font-size: 1rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

.testimoni-card .star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.testimoni-card .star-icon {
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 768px) {
    .testimoni-card {
        flex: 0 0 500px;
        min-width: 260px;
        height: 180px;
        padding: 15px;
        margin-right: 20px;
    }

    .testimoni-card .quote-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .testimoni-card .comment-text {
        margin: 0 0 12px 0;
    }

    .testimoni-card .star-icon {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 480px) {
    .testimoni-card {
        flex: 0 0 240px;
        min-width: 240px;
        height: 160px;
        padding: 12px;
        margin-right: 15px;
    }

    .testimoni-card .quote-icon {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .testimoni-card .comment-text {
        margin: 0 0 10px 0;
    }

    .testimoni-card .star-icon {
        width: 12px;
        height: 12px;
    }
}

/* Feedback Form Styles */
.feedback-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(103, 76, 29, 0.1);
}

.feedback-title {
    text-align: center;
    color: #674C1D;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.star-rating-select {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.star-rating-select i {
    font-size: 2.5rem;
    color: #E5E5E5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating-select i.fas {
    color: #674C1D;
}

.star-rating-select i:hover {
    color: #674C1D;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #674C1D;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
}

.instagram-input-wrapper {
    position: relative;
    width: 100%;
}

#instagramHandle {
    width: 100%;
    padding: 15px;
    padding-left: 30px;
    border: 1px solid #674C1D;
    border-radius: 10px;
    font-size: 1rem;
    color: #674C1D;
    background: transparent;
}

.instagram-text{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #674C1D;
    font-weight: 600;
    pointer-events: none;
}

.hide-identity-container {
    position: relative;
    display: flex;
    margin-bottom: 25px;
    gap: 10px;
}

.hide-identity-label {
    color: #674C1D;
    font-size: 0.9rem;
    margin-left: 5px;
    cursor: pointer;
}

.form-group-hide-identity .hide-identity-toggle {
    width: 55px;
    border-radius: 12px;
    box-sizing: border-box;
}

.hide-identity-toggle {
    position: relative;
    width: 10px;
    height: 20px;
    appearance: none;
    background: #E5E5E5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hide-identity-toggle:checked {
    box-shadow: 0 0 5px #674c1d5c;
    background: #674C1D;
}

.hide-identity-toggle::before,
.hide-identity-toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 2px;
    transition: all 0.3s ease;
}

.hide-identity-toggle::before {
    background: #674C1D;
    left: 2px;
    opacity: 1  ;
}

.hide-identity-toggle::after {
    background: #FFF8eb;
    left: 2px;
    opacity: 0;
}

.hide-identity-toggle:checked::before {
    opacity: 1;
    transform: translateX(35px);
}

.hide-identity-toggle:checked::after {
    opacity: 1;
    transform: translateX(35px);
}

#feedbackMessage {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 1px solid #674C1D;
    border-radius: 15px;
    font-size: 1rem;
    color: #674C1D;
    background: transparent;
    resize: none;
    font-family: inherit;
}

.submit-feedback-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: #674C1D;
    border: 1px solid #674C1D;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Cormorant Garamond", serif;
}

.submit-feedback-btn:hover {
    background: #674C1D;
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .testimoni-section {
        flex-direction: column;
    }

    .testimoni-slider {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        padding: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 60px;
        align-items: center;
    }

    .testimoni-card {
        flex: 0 0 100px;
        max-width: 400px;
        background: rgba(249, 249, 249, 0.9765);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .testimoni-slider::-webkit-scrollbar {
        width: 6px;
    }

    .testimoni-slider::-webkit-scrollbar-track {
        background: transparent;
    }

    .testimoni-slider::-webkit-scrollbar-thumb {
        background-color: #674C1D;
        border-radius: 20px;
    }

    .testimoni-card {
        width: 100%;
        min-width: unset;
        margin-right: 0;
        padding: 15px;
    }

    .slider-nav-btn {
        display: none;
    }

    .slider-indicator {
        display: none !important;
    }

    .testimoni-slider.scrolled .slider-indicator {
        opacity: 0;
    }
}

@media screen and (max-width: 480px) {
    .testimoni-slider {
        height: 300px;
    }

    .testimoni-card {
        padding: 12px;
    }

    .quote-icon {
        font-size: 30px;
    }

    .comment-text {
        font-size: 0.8rem;
        margin: 10px 0;
    }

    .comment-user {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    .testimoni-slider {
        height: 300px;
    }

    .testimoni-card {
        padding: 12px;
    }

    .quote-icon {
        font-size: 25px;
    }

    .comment-text {
        font-size: 0.75rem;
        margin: 8px 0;
    }

    .comment-user {
        font-size: 0.8rem;
    }
}

/* Styling untuk Sewa Apartemen page selesai */

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #674C1D;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 1;
    pointer-events: auto;
}

.slider-nav-btn:hover {
    background: #4a3714;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
    left: 10px;
}

.slider-nav-btn.next {
    right: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .testimoni-slider {
        padding: 20px 50px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .testimoni-slider {
        padding: 20px 40px;
    }

    .slider-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 350px) {
    .testimoni-slider {
        padding: 20px 35px;
    }

    .slider-nav-btn {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 280px) {
    .testimoni-slider {
        padding: 20px 30px;
    }

    .slider-nav-btn {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

.slider-indicator {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .testimoni-slider {
        position: relative;
        flex-direction: column;
        height: 350px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 10px;
        gap: 20px;
        scrollbar-width: thin;
        scrollbar-color: #674C1D transparent;
    }

    .testimoni-slider::-webkit-scrollbar {
        width: 6px;
    }

    .testimoni-slider::-webkit-scrollbar-track {
        background: transparent;
    }

    .testimoni-slider::-webkit-scrollbar-thumb {
        background-color: #674C1D;
        border-radius: 20px;
    }

    .slider-indicator {
        display: flex;
        opacity: 1;
    }

    .testimoni-slider.scrolled .slider-indicator {
        opacity: 0;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.popup-container {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 450px;
    background: #FFF8EB;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: translateY(0);
    opacity: 1;
}

/* Animasi saat menutup */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(-100%);
    opacity: 0;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #674C1D;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.popup-close:hover {
    background: #4a3714;
    transform: scale(1.1);
}

.popup-carousel {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Aspect ratio 1:1 */
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    max-height: 450px;
}

.popup-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.popup-carousel-slide {
    position: relative;
    width: 25%;
    height: 100%;
}

.popup-carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #FFF8EB;

}

.popup-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(103, 76, 29, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.popup-carousel-nav:hover {
    background: #674C1D;
}

.popup-carousel-prev {
    left: 10px;
}

.popup-carousel-next {
    right: 10px;
}

.popup-carousel-dots {
    display: flex;
    justify-content: center;
}

.popup-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(103, 76, 29, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-carousel-dot.active {
    background: #674C1D;
}

.popup-content {
    padding: 20px;
    color: #674C1D;
    width: 100%;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

.popup-description {
    font-size: 1rem;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1140px) {
    .popup-container {
        width: 90%;
        max-width: 400px;
        padding: 15px;
    }

    .popup-carousel {
        max-height: 400px;
    }

    .popup-title {
        font-size: 1.3rem;
    }

    .popup-description {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 992px) {
    .popup-container {
        width: 92%;
        max-width: 380px;
        padding: 15px;
    }

    .popup-carousel {
        max-height: 380px;
    }

    .popup-title {
        font-size: 1.2rem;
    }

    .popup-description {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-width: 350px;
        padding: 12px;
    }

    .popup-carousel {
        max-height: 350px;
        margin-bottom: 15px;
    }

    .popup-title {
        font-size: 1.1rem;
    }

    .popup-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .popup-carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .popup-container {
        width: 95%;
        max-width: 320px;
        padding: 10px;
    }

    .popup-carousel {
        max-height: 320px;
        margin-bottom: 12px;
    }

    .popup-content {
        padding: 15px;
    }

    .popup-title {
        font-size: 1rem;
    }

    .popup-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .popup-carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
        padding: 8px;
    }

    .popup-carousel {
        max-height: 300px;
        margin-bottom: 10px;
    }

    .popup-content {
        padding: 12px;
    }

    .popup-carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 280px;
        padding: 8px;
    }

    .popup-carousel {
        max-height: 280px;
    }

    .popup-content {
        padding: 10px;
    }

    .popup-title {
        font-size: 0.95rem;
    }

    .popup-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .popup-carousel-nav {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 320px) {
    .popup-container {
        width: 95%;
        max-width: 260px;
        padding: 6px;
    }

    .popup-carousel {
        max-height: 260px;
    }

    .popup-content {
        padding: 8px;
    }

    .popup-carousel-nav {
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .testimoni-card {
        min-height: 160px; /* atau lebih, misal 180px, 200px sesuai kebutuhan */
        height: auto;
    }
}