
:root {
    --maroon: #8B1E3F;
    --maroon-dark: #6A1530;
    --maroon-light: #A52A4F;
    --gold: #D4AF37;
    --gold-light: #E8C874;
    --cream: #FDF8F3;
    --text-dark: #3A3A3A;
    --text-light: #7A7A7A;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
    font-weight: 600;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.navbar {
    background-color: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--maroon);
}

.nav-link {
    font-weight: 700;
    color: var(--text-dark) !important;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 12px !important;
    margin: 2px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(139, 30, 63, 0.05);
    color: var(--maroon) !important;
}

/* PERBAIKAN UTAMA: Hero Slider untuk Mobile */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -70px;
}

.hero-slider {
    width: 100%;
    position: relative;
}

/* Desktop: fixed height untuk desktop */
@media (min-width: 768px) {
    .hero-slider {
        height: 85vh;
        min-height: 600px;
    }
}

/* Mobile: tinggi otomatis mengikuti gambar */
@media (max-width: 767px) {
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
    }
    
    .hero-slider-section {
        margin-top: -5px;
    }
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

/* PERBAIKAN: Gambar menyesuaikan ukuran aslinya di mobile */
.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Desktop: object-fit cover untuk tampilan penuh */
@media (min-width: 768px) {
    .hero-slide img {
        object-fit: cover;
        object-position: center;
    }
}

/* Mobile: object-fit contain untuk menampilkan gambar utuh */
@media (max-width: 767px) {
    .hero-slide img {
        object-fit: contain !important;
        height: auto !important;
        max-height: 70vh;
        object-position: center top;
    }
    
    /* Pastikan slide memiliki tinggi yang sesuai dengan gambar */
    .hero-slide {
        height: auto !important;
        min-height: auto !important;
    }
    
    .swiper-wrapper {
        height: auto !important;
    }
}

/* PERBAIKAN UTAMA: Hero buttons overlay - DISEBARISKAN di Mobile */
.hero-buttons-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 15px;
}

.hero-buttons-wrapper {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* PERBAIKAN: Di mobile, tombol lebih kecil dan sebaris dengan lebar 100% */
@media (max-width: 767px) {
    .hero-buttons-container {
        bottom: 15px;
        padding: 0 10px;
    }
    
    .hero-buttons-wrapper {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }
    
    .hero-buttons-wrapper .btn {
        flex: 1;
        min-width: 0;
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
        border-radius: 18px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Mobile sangat kecil: ubah ke kolom jika terlalu sempit */
@media (max-width: 480px) {
    .hero-buttons-wrapper {
        gap: 6px;
    }
    
    .hero-buttons-wrapper .btn {
        padding: 5px 8px !important;
        font-size: 0.65rem !important;
        border-radius: 16px !important;
    }
    
    .hero-buttons-wrapper .btn i {
        margin-right: 3px;
        font-size: 0.7rem;
    }
}

/* Mobile sangat sangat kecil: ubah ke kolom */
@media (max-width: 360px) {
    .hero-buttons-wrapper {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-buttons-wrapper .btn {
        width: 100%;
        max-width: 200px;
        padding: 6px 12px !important;
    }
}

@media (min-width: 576px) {
    .hero-buttons-wrapper {
        max-width: 600px;
    }
}

/* Remove pagination dots */
.hero-slider .swiper-pagination {
    display: none !important;
}

/* Dark overlay untuk kontras tombol */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Mobile: overlay lebih transparan agar gambar tetap jelas */
@media (max-width: 767px) {
    .hero-slide::after {
        background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 100%);
    }
}

/* Button Styles - PERKECIL untuk Mobile */
.btn-maroon {
    background-color: var(--maroon);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    width: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(139, 30, 63, 0.3);
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
}

/* PERBAIKAN: Tombol lebih kecil di mobile */
@media (max-width: 767px) {
    .btn-maroon {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-maroon {
        padding: 7px 14px !important;
        font-size: 0.75rem !important;
        border-radius: 18px !important;
    }
}

.btn-maroon:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 30, 63, 0.4);
}

.btn-white {
    background-color: white;
    color: var(--maroon);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    width: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
}

/* PERBAIKAN: Tombol lebih kecil di mobile */
@media (max-width: 767px) {
    .btn-white {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-white {
        padding: 7px 14px !important;
        font-size: 0.75rem !important;
        border-radius: 18px !important;
    }
}

.btn-white:hover {
    color: var(--maroon);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* PERBAIKAN: Semua tombol lebih kecil di mobile */
@media (max-width: 767px) {
    .btn-outline-maroon {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
    }
    
    .btn-card {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
        border-radius: 18px !important;
    }
    
    .card-actions .btn {
        padding: 5px 8px !important;
        font-size: 0.7rem !important;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 800;
    font-size: 1.6rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--maroon), var(--gold));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Promo Section - Clean Design */
.promo-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f5f0 100%);
    position: relative;
    overflow: hidden;
}

.promo-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f0e6d8' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.promo-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-badge {
    background-color: var(--maroon);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(139, 30, 63, 0.2);
}

.promo-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--maroon);
}

.promo-description {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    opacity: 0.9;
}

.promo-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.countdown-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(139, 30, 63, 0.1);
}

.countdown-value {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--maroon);
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Luxurious Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.luxury-feature {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.luxury-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.luxury-image {
    flex: 1;
    height: 320px;
    overflow: hidden;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.luxury-feature:hover .luxury-image img {
    transform: scale(1.05);
}

.luxury-content {
    flex: 1;
    padding: 30px;
    position: relative;
}

.luxury-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--maroon), var(--gold));
}

.luxury-feature:nth-child(even) .luxury-content:before {
    left: auto;
    right: 0;
}

.luxury-icon {
    font-size: 2rem;
    color: var(--maroon);
    margin-bottom: 15px;
}

.luxury-content h3 {
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 12px;
    font-weight: 800;
}

.luxury-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
    font-weight: 600;
}

/* Catalog Section with Horizontal Categories */
.catalog-section {
    padding: 50px 0;
}

/* Kategori Slider */
.category-slider-container {
    position: relative;
    margin-bottom: 30px;
    padding: 0 30px;
}

.category-slider {
    padding: 5px 0 15px;
}

.category-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.category-btn {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.75rem;
    width: auto;
    /*min-width: 100px;*/
    text-align: center;
}

.category-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--maroon);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.category-btn.active, .category-btn:hover {
    color: white;
    border-color: var(--maroon);
}

.category-btn.active:before, .category-btn:hover:before {
    width: 100%;
}

.category-slider .swiper-pagination {
    bottom: -5px !important;
}

.category-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: var(--maroon-light);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.category-slider .swiper-pagination-bullet-active {
    background: var(--maroon);
    opacity: 1;
    transform: scale(1.2);
}

.category-slider .swiper-button-next,
.category-slider .swiper-button-prev {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--maroon);
    top: 50%;
    transform: translateY(-50%);
}

.category-slider .swiper-button-next:after,
.category-slider .swiper-button-prev:after {
    font-size: 0.8rem;
    font-weight: bold;
}

.swipe-indicator {
    text-align: center;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.swipe-indicator i {
    font-size: 0.6rem;
    animation: swipeHint 2s infinite;
}

@keyframes swipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Product Cards - Responsive Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-img-container {
    position: relative;
    overflow: hidden;
    height: 180px;
}

@media (min-width: 768px) {
    .card-img-container {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .card-img-container {
        height: 220px;
    }
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card:hover .card-img-top {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 6px;
    font-weight: 800;
}

.card-footer {
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price {
    font-weight: 800;
    color: var(--maroon);
    font-size: 0.9rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
}

.discount-badge {
    background-color: var(--gold);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.card-actions .btn {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
    padding: 50px 0;
}

.package-card {
    background-color: white;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(139, 30, 63, 0.1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border: 2px solid var(--maroon);
    transform: scale(1);
}

.package-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--maroon), var(--maroon-dark));
    color: white;
    padding: 4px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
}

.package-name {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 8px;
    margin-top: 12px;
    font-weight: 800;
}

.package-price {
    font-size: 1.8rem;
    color: var(--maroon);
    font-weight: 800;
    margin: 12px 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 15px;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--gold);
    margin-right: 6px;
    font-size: 0.75rem;
}

/* Enhanced Addons Section - Minimalist */
.addons-section {
    padding: 50px 0;
    background-color: white;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .addon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .addon-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.addon-card {
    background-color: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 30, 63, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.addon-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.addon-card:hover .addon-img {
    transform: scale(1.05);
}

.addon-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.addon-body h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--maroon);
}

.addon-body p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.4;
}

.addon-price {
    font-weight: 800;
    color: var(--maroon);
    font-size: 1rem;
}

.addon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

/* ENHANCED Gallery Section - Minimalist for Mobile */
.gallery-section {
    padding: 60px 0;
    background: white;
    position: relative;
}

.gallery-swiper {
    padding: 15px 0;
    position: relative;
}

@media (max-width: 767px) {
    .gallery-swiper {
        padding: 10px 0;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        display: none !important;
    }
}

.gallery-slide {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    position: relative;
    height: 200px;
}

@media (min-width: 768px) {
    .gallery-slide {
        height: 250px;
    }
}

@media (min-width: 992px) {
    .gallery-slide {
        height: 300px;
    }
}

.gallery-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: white;
}

.gallery-slide:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-title {
    transform: translateY(0);
}

.gallery-category {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 10px;
    transform: translateY(10px);
    transition: transform 0.5s ease 0.1s;
}

.gallery-slide:hover .gallery-category {
    transform: translateY(0);
}

.gallery-actions {
    display: flex;
    gap: 6px;
    transform: translateY(10px);
    transition: transform 0.5s ease 0.2s;
}

.gallery-slide:hover .gallery-actions {
    transform: translateY(0);
}

.gallery-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
}

.gallery-btn:hover {
    background: var(--maroon);
    transform: scale(1.1);
}

/* Fixed Swiper Pagination Styles */
.gallery-swiper .swiper-pagination {
    bottom: 0px !important;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--maroon-light);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--maroon);
    opacity: 1;
    transform: scale(1.2);
}

/* Enhanced Testimonials with Two Columns */
.testimonial-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.testimonial-swiper {
    padding: 15px 0 30px;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin: 8px;
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(139, 30, 63, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 25px;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .testimonial-left {
        flex: 0 0 120px;
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--gold);
}

.client-rating {
    color: var(--gold);
    margin: 5px 0;
    font-size: 0.8rem;
}

.testimonial-right {
    flex: 1;
}

.testimonial-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.client-name {
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.client-title {
    color: var(--text-light);
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    color: white;
    padding: 40px 0 15px;
}

.footer h5 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 800;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

.footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-icons a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 25px 0;
}

/* Animations - HAPUS ANIMASI IDLE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HAPUS ANIMASI PULSE DAN FLOATING */
/* 
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, -8px); }
    100% { transform: translate(0, 0px); }
}
*/

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--maroon);
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: bold;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    body {
        padding-top: 80px;
        font-size: 15px;
    }
    
    .hero-slider-section {
        margin-top: 0px;
    }
    
    .hero-slider {
        height: 85vh;
        min-height: 600px;
    }
    
    .hero-buttons-container {
        bottom: 50px;
    }
    
    .hero-buttons-wrapper {
        max-width: 600px;
    }
    
    .section-title {
        margin-bottom: 40px;
        font-size: 1.8rem;
    }
    
    .category-slider-container {
        margin-bottom: 40px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.6rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-footer {
        padding: 12px 15px;
    }
    
    .price {
        font-size: 1rem;
    }
    
    .card-actions .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .package-card.featured {
        transform: scale(1.03);
    }
    
    .luxury-content h3 {
        font-size: 1.6rem;
    }
    
    .luxury-content p {
        font-size: 1rem;
    }
    
    .promo-title {
        font-size: 2.2rem;
    }
    
    .promo-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .hero-slider {
        height: 90vh;
        min-height: 700px;
    }
    
    .packages-section, .addons-section, .testimonial-section, .why-choose-section, .gallery-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Responsive adjustments for Why Choose section on mobile */
@media (max-width: 767px) {
  .luxury-feature {
    flex-direction: column !important;
    margin-bottom: 40px;
  }
  
  .luxury-image {
    height: 200px;
    order: 1;
  }
  
  .luxury-content {
    order: 2;
    padding: 20px;
  }
  
  .luxury-content:before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }
  
  .luxury-feature:nth-child(even) .luxury-content:before {
    left: 0;
    right: auto;
  }
  
  .luxury-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .luxury-content h3 {
    font-size: 1.3rem;
  }
  
  .luxury-content p {
    font-size: 0.9rem;
  }
  
  .promo-countdown {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 10px;
  }
  
  .countdown-value {
    font-size: 1.5rem;
  }
}

.btn-outline-maroon {
    background-color: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    width: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-outline-maroon:hover:before {
    width: 100%;
}

.btn-outline-maroon:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 30, 63, 0.2);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Additional fixes for better mobile experience */
@media (max-width: 767px) {
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-description {
        font-size: 0.9rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 8px;
    }
    
    .countdown-value {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .category-slider-container {
        padding: 0 15px;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.55rem;
        /*min-width: 85px;*/
    }
}
