      :root { 
    
            --secondary-color: #2575fc;
            --accent-color: #1d4e89;
            --dark-color: #1a1a2e;
            --light-color: #f9f9f9;
        }
        
        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }
        

        
        .carousel-container {
            max-width: 100%;;
            width: 100%;
            padding: 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h1 {
            font-size: 42px;
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0; /* Ubah dari 25px ke 0 untuk tampilan full screen */
      background: transparent;
    padding: 10px 0; /* Padding atas bawah tetap, padding samping 0 */
    box-shadow: none; /* Opsional: hilangkan shadow jika ingin terlihat seamless */
}
        
        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
        }
        
        .carousel-item {
  flex: 0 0 calc(25% - 22.5px);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    height: 430px; /* Diubah dari 750px ke 680px untuk kompensasi */
    display: flex;
    flex-direction: column;
        }
        
        /* Proporsi gambar 70%, teks 30% */
        .image-container {
            position: relative;
            width: 100%;
            height: 260px; /* Lebih tinggi untuk gambar lebih besar */
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .item-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s ease;
        }
        
        .carousel-item:hover .item-img {
            transform: scale(1.08);
        }
        
        /* OVERLAY DETAIL YANG MUNCUL SAAT HOVER */
        .detail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.85) 90%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
            padding: 30px;
            text-align: center;
            color: white;
            z-index: 2;
        }
        
        .carousel-item:hover .detail-overlay {
            opacity: 1;
            visibility: visible;
        }
        
        .detail-content {
            transform: translateY(20px);
            transition: transform 0.5s ease;
            width: 100%;
        }
        
        .carousel-item:hover .detail-content {
            transform: translateY(0);
        }
        
        .detail-overlay h4 {
            font-size: 16px;
            margin-bottom: 15px;
            color: white;
            font-weight: 700;
        }
        
        .room-details {
            list-style: none;
            margin-bottom: 25px;
            width: 100%;
        }
        
        .room-details li {
            margin-bottom: 2px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            opacity: 0.9;
        }
        
        .room-details i {
            color: var(--accent-color);
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        
        .view-details-btn {
             background: #64b2d4;
            color: var(--dark-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 12px;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .view-details-btn:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(94, 65, 255, 0.4);
        }
        
        /* Bagian teks yang lebih kecil (30%) */
        .item-content {
 
            text-align: left;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            border: none;
           padding: 12px 20px 32px 20px;
            /* top | right | bottom | left */
            border-radius: 30px;
   
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            letter-spacing: 0.5px;
            
        }
        
        .item-content h3 {
            font-size: 16px;
            color: var(--dark-color);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .item-content p {
            color: #666;
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 0px;
            flex-grow: 1;
        }
        
.item-tag {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    /* Ubah di sini: padding awal 8px 20px -> jadi 4px 12px */
    padding: 4px 12px; 
    border-radius: 25px;
    font-weight: 600;
    /* Ubah di sini: font-size awal 14px -> jadi 12px */
    font-size: 12px; 
    letter-spacing: 0.3px; /* Opsional: dikurangi sedikit */
    box-shadow: 0 4px 10px rgba(106, 17, 203, 0.2);
    padding: 8px 12px;





}
        
        .price {
            display: block;
            font-size: 22px;
            font-weight: 800;
            color: var(--dark-color);
            margin-top: 15px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 50px;
        }
        
        .nav-btn {
             background: #64b2d4;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(100, 178, 212, 0.4);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-btn:hover { 
            transform: translateY(-5px) scale(1.1);
             background: #4aa3c5;
        }
        
        .nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .nav-dots {
            display: flex;
            gap: 15px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary-color);
            transform: scale(1.4);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        /* Counter */
        .slide-counter {
            font-size: 16px;
            color: #666;
            font-weight: 600;
            background: white;
            padding: 8px 20px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .carousel-item {
                flex: 0 0 calc(33.333% - 20px);
                height: 600px;
            }
            
            .image-container {
                height: 400px;
            }
        }
        
        @media (max-width: 992px) {
            .carousel-item {
                flex: 0 0 calc(50% - 15px);
                height: 650px;
            }
            
            .image-container {
                height: 450px;
            }
            
            .section-header h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-item {
                flex: 0 0 100%;
                height: 600px;
            }
            
            .image-container {
                height: 400px;
            }
            
            .section-header h1 {
                font-size: 32px;
            }
            
            .section-header p {
                font-size: 16px;
            }
            
            .nav-btn {
                width: 55px;
                height: 55px;
            }
            
            .carousel-wrapper {
                padding: 25px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        /* Floating badge */
        .floating-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-color);
            color: white;
            padding: 10px 20px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 13px;
            z-index: 3;
            box-shadow: 0 5px 15px rgba(255, 65, 108, 0.3);
            letter-spacing: 1px;
        }

        @media (max-width: 576px) {
    body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    }

    .carousel-item {
        height: auto;
        border-radius: 16px;
    }

    .image-container {
        height: 400px;
    }

    .item-content {
        padding: 20px 15px;
    }

    .item-content h3 {
        font-size: 10px;
    }

    .item-content p {
        font-size: 10px;
    }

    .price {
        font-size: 20px;
    }
}

@media (hover: none) {
    .detail-overlay {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8) 100%);
    }
}

@media (max-width: 576px) {

      .carousel-container {
        padding: 15px;
    }
    
    .carousel-nav {
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slide-counter {
        font-size: 14px;
        padding: 6px 14px;
    }
}



/* KAROSEL AKTIVITY */
 .swiper-button-next,
  .swiper-button-prev {
    color: #0ea5e9;
    width: 2rem;
    height: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }

/* END KAROSEL AKTIVITY */