/* ================= PREMIUM PACKAGE PAGE STYLES ================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --premium-gold: #c5a059;
    --premium-dark: #1a1a1a;
    --premium-gray: #f8f9fa;
    --premium-accent: #2c3e50;
    --premium-text: #444;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--premium-text);
}

/* --- Hero Banner --- */
.premium-hero-banner {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    display: block;
    color: var(--premium-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    display: flex;
    gap: 30px;
    font-size: 1.1rem;
    font-weight: 400;
}

.hero-meta i {
    color: var(--premium-gold);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .premium-hero-banner {
        height: 400px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Banner / Slider --- */
.premium-slider {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.slider-caption h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--premium-gold) !important;
    background: rgba(255, 255, 255, 0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet-active {
    background: var(--premium-gold) !important;
}

.premium-banner-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.premium-banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.premium-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* --- Content Section --- */
.premium-content-wrapper {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--premium-dark);
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--premium-gold);
}

/* --- Itinerary Accordion --- */
.itinerary-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.itinerary-accordion .accordion-button {
    background: #fff;
    color: var(--premium-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
    border: none;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background: var(--premium-gold);
    color: white;
    box-shadow: none;
}

.itinerary-accordion .accordion-button::after {
    filter: grayscale(1) invert(0);
}

.itinerary-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.itinerary-day-badge {
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
    padding: 2px 10px;
    border-radius: 5px;
    margin-right: 15px;
    font-size: 0.9rem;
}

.itinerary-details {
    padding: 20px;
}

.itinerary-meta {
    margin-top: 15px;
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.itinerary-meta i {
    color: var(--premium-gold);
    margin-right: 5px;
}

/* --- Included/Excluded --- */
.highlights-card {
    background: var(--premium-gray);
    padding: 40px;
    border-radius: 15px;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
}

.highlight-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-list.included li i {
    color: #27ae60;
}

.highlight-list.excluded li i {
    color: #e74c3c;
}

/* --- Sticky Sidebar Card --- */
.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.booking-card {
    background: var(--premium-dark);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--premium-gold);
    margin-bottom: 25px;
}

.booking-card .price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-premium {
    background: var(--premium-gold);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    width: 100%;
}

.btn-premium:hover {
    background: #b08d4b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

@media (max-width: 768px) {
    .premium-banner-content h1 {
        font-size: 2.5rem;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-banner-content {
    animation: fadeInUp 1s ease-out;
}

.section-title {
    animation: fadeInUp 0.8s ease-out both;
}

.accordion-item {
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(5px);
}

.booking-card {
    transition: all 0.5s ease;
}

.booking-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* --- Premium Gallery Grid --- */
.premium-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Specific Bento-style Grid */
.gallery-item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-4 {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 768px) {
    .premium-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .gallery-item-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-4 {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* --- Premium Table --- */
.premium-table-container {
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.premium-table th {
    background: var(--premium-dark);
    color: var(--premium-gold);
    padding: 18px 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: left;
}

.premium-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tr:hover {
    background-color: #fcfcfc;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-available {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-filling {
    background: #fff3e0;
    color: #ef6c00;
}

.status-sold {
    background: #ffebee;
    color: #c62828;
}

/* --- Sidebar Phone Highlight --- */
.sidebar-phone-box {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    border: 1px dashed var(--premium-gold);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.sidebar-phone-box:hover {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, rgba(197, 160, 89, 0.1) 100%);
    transform: translateY(-3px);
}

.phone-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--premium-gold);
    margin-bottom: 5px;
    font-weight: 600;
}

.phone-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #5110e7 !important;
    text-decoration: none;
    margin-bottom: 8px;
    letter-spacing: normal;
}

.phone-number i {
    margin-right: 8px;
    font-size: 1.15rem;
    color: var(--premium-gold);
}

.phone-more-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}