:root {
    --lightt-color: #B8A884;
    --dark-color: #303646;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Poiret One', sans-serif;
    font-weight: bold;
}

.hero-mini-refined {
    margin-top: 0;
    height: 60vh;
    background: url('../Resource/shila.jpg') center/cover fixed;
}

/* ULTRA-PREMIUM UNIFIED LAYOUT - FIXED */
.package-stack-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
    max-width: 1500px;
    /* Consistency with Rooms */
    margin: 60px auto;
}

.package-row-premium {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    background: transparent;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.package-row-premium.reverse-layout {
    flex-direction: row-reverse;
}

.package-visual-side {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    height: 500px;
    /* Consistent height */
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 30px;
}

.package-content-side {
    flex: 0 0 45%;
    background: #ffffff;
    padding: 40px 45px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    min-height: 500px;
    /* Changed from fixed height */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-row-premium:not(.reverse-layout) .package-content-side {
    margin-left: -5%;
}

.package-row-premium.reverse-layout .package-content-side {
    margin-right: -5%;
}

/* Typography (Standardized from Rooms) */
.package-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-section-topper);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8A884;
    /* Brand Gold */
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.package-title-unique {
    font-family: 'Poiret One', sans-serif;
    font-size: var(--fs-page-h1);
    /* Reduced for compact view */
    color: #303646;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 300;
}

/* Feature List */
.package-feature-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Synchronized gap */
}

.package-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    padding: 12px 20px;
    /* Compact padding */
    border-radius: 12px;
    transition: background 0.3s ease;
}

.package-feature-item:hover {
    background: #f9f9f9;
}

/* Icons */
.feature-icon-box {
    font-size: 1.4rem;
    color: #B8A884;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(201, 166, 60, 0.1);
    flex-shrink: 0;
    transition: 0.3s ease;
}

.package-feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: #B8A884;
    color: #fff;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text h4 {
    font-size: var(--fs-lead-p);
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: var(--fs-body-p);
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Brand Action Buttons (Standardized from Rooms) */
.modern-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-solid-moss {
    padding: 16px 28px;
    background: #303646;
    color: #B8A884;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn-solid-moss:hover {
    background: #B8A884;
    color: #303646;
    box-shadow: 0 15px 30px rgba(201, 166, 60, 0.2);
    transform: translateY(-3px);
}

.btn-outline-modern {
    padding: 15px 27px;
    background: transparent;
    border: 1px solid #303646;
    color: #303646;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-outline-modern:hover {
    background: #303646;
    color: #f4f1e9;
}

/* Swiper Fixes */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.swiper-slide img.fit-contain {
    object-fit: contain;
    background: #fff;
}

.package-visual-side:hover .swiper-slide img {
    transform: scale(1.05);
}

/* Carousel Navigation Buttons - Position Inside */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #303646;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(140, 107, 20, 0.95);
    color: #fff;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Position buttons more inside the image */
.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

/* Activity Modal Styles (RESTORED) */
.activity-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.activity-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    /* Centered */
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.activity-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.activity-close:hover,
.activity-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.activity-table-container {
    margin-top: 20px;
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
}

.activity-table th,
.activity-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.activity-table th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Point Highlighter Styling */
.point-highlighter {
    background: linear-gradient(135deg, rgba(201, 166, 60, 0.1), rgba(201, 166, 60, 0.05));
    border: 1px solid rgba(201, 166, 60, 0.15);
    cursor: pointer;
    justify-content: space-between !important;
}

.point-highlighter:hover {
    background: linear-gradient(135deg, rgba(201, 166, 60, 0.2), rgba(201, 166, 60, 0.1)) !important;
}

/* Tablet Adjustment - Prevent Collapse */
@media (max-width: 1200px) and (min-width: 901px) {

    .package-row-premium,
    .package-row-premium.reverse-layout {
        min-height: 400px;
        height: auto;
    }

    .package-visual-side {
        flex: 0 0 48%;
        height: 400px;
        border-radius: 25px;
    }

    .package-content-side {
        flex: 0 0 48%;
        padding: 30px 35px;
        height: auto;
        min-height: 400px;
        border-radius: 25px;
    }

    .package-title-unique {
        margin-bottom: 15px;
    }

    .package-eyebrow {
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .package-feature-grid {
        gap: 10px;
    }

    .package-feature-item {
        padding: 8px 15px;
        gap: 15px;
    }

    .feature-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }





    .modern-actions {
        gap: 12px;
        margin-top: 20px;
    }

    .btn-solid-moss,
    .btn-outline-modern {
        padding: 14px 22px;
    }
}

/* Service Card Styles (Missing Desktop Base) */
.section-premium {
    padding: 100px 0;
}

.theme-ivory {
    background-color: #f4f1e9;
}

.service-card-flat {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-flat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(48, 54, 70, 0.85) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card-flat:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card-flat:hover::after {
    opacity: 0.95;
}

.service-card-flat>* {
    position: relative;
    z-index: 2;
}

.service-card-flat h3 {
    font-size: var(--fs-h3-card);
    margin: 10px 0;
    color: #B8A884;
}

.service-card-flat p {
    font-size: var(--fs-body-p);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.card-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #B8A884;
    color: #303646;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: var(--fs-btn-text);
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 3;
    text-transform: uppercase;
}

/* Mobile Adjustment */
@media (max-width: 900px) {

    .package-stack-container {
        gap: 20px;
        /* Reduced gap between cards */
        padding: 0;
        margin: 15px 0;
        /* Reduced margin */
        width: 100%;
    }

    .package-row-premium,
    .package-row-premium.reverse-layout {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 0;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        /* Lighter shadow */
        margin: 0;
        width: 100%;
    }

    .package-visual-side {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        /* Flatter aspect ratio for smaller height */
        flex: none;
        border-radius: 0;
    }

    .swiper-slide img {
        border-radius: 0;
        /* Ensure images in slider are sharp corners on mobile if container is */
    }

    .package-row-premium:not(.reverse-layout) .package-content-side,
    .package-row-premium.reverse-layout .package-content-side {
        margin: 0 !important;
        /* Reset overlap margins first */
    }

    .package-content-side {
        width: 100%;
        height: auto;
        padding: 20px 15px;
        text-align: center;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -30px !important;
        /* Overlap the image */
        border-radius: 25px 25px 0 0;
        /* Round top corners */
        position: relative;
        /* Ensure z-index works */
        z-index: 10;
    }

    .package-title-unique {
        /* Smaller font */
        text-align: center;
        margin: 5px 0 10px 0;
        line-height: 1.2;
    }

    .package-eyebrow {
        text-align: center;
        padding: 0;
        font-size: 0.75rem;
        letter-spacing: 2px;
        width: 100%;
    }

    .package-eyebrow::after {
        content: '';
        display: block;
        margin: 8px auto;
        width: 30px;
        height: 2px;
        background: #B8A884;
        opacity: 0.5;
    }

    .package-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 5px;
        line-height: 1.6;
        color: #666;
    }

    .package-feature-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* Reduced gap */
        margin-bottom: 25px;
        width: 100%;
    }

    .package-feature-item {
        padding: 10px 15px;
        /* Compact item */
        text-align: left;
        background: rgba(201, 166, 60, 0.05);
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid rgba(201, 166, 60, 0.1);
    }

    .package-feature-item:hover {
        transform: none;
    }

    .feature-icon-box {
        width: 35px;
        /* Smaller icon box */
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text h4 {
        font-size: 0.9rem;
        /* Smaller text */
        margin-bottom: 2px;
    }

    .feature-text p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .modern-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 5px;
    }

    .modern-actions button {
        width: 100%;
        padding: 18px 20px;
        /* Smaller button */
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        border-radius: 25px;
    }

    /* Swiper navigation buttons - smaller on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
        font-weight: bold;
    }

    /* Theme-specific mobile adjustments */
    .theme-foody .package-content-side,
    .theme-carnival .package-content-side,
    .theme-extravagant .package-content-side {
        background: white;
    }

    /* Point highlighter mobile */
    .point-highlighter {
        background: linear-gradient(135deg, rgba(201, 166, 60, 0.15), rgba(201, 166, 60, 0.08));
        border: 1px solid rgba(201, 166, 60, 0.2);
    }

    /* Tailored Packages Mobile */
    .service-card-flat {
        min-height: 280px;
        /* Even more compact */
        height: auto;
        padding: 25px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .service-card-flat i {
        font-size: 2.2rem !important;
        margin-bottom: 5px !important;
    }

    .service-card-flat h3 {
        font-size: var(--fs-h3-card);
        margin: 8px 0;
    }

    .service-card-flat p {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 5px;
        margin-bottom: 15px;
    }

    .card-tag {
        top: 15px;
        right: 15px;
        font-size: 0.65rem;
        padding: 4px 12px;
    }
}

/* Culinary Expedition Section (Gastronomy) */
.culinary-section {
    padding: 80px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.culinary-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.culinary-img-box {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.culinary-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culinary-slider {
    width: 100%;
    height: 100%;
}

.culinary-content {
    flex: 1;
    padding-left: 20px;
}

.culinary-content h2 {
    font-size: var(--fs-section-h2);
    color: #303646;
    margin: 10px 0 30px;
    font-family: 'Poiret One', sans-serif;
}

.food-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.food-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.food-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(184, 168, 132, 0.1);
    color: #B8A884;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.food-feature-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 5px;
    font-weight: bold;
}

.food-feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .culinary-grid {
        flex-direction: column;
        gap: 40px;
    }

    .culinary-img-box {
        width: 100%;
        height: 400px;
    }

    .culinary-content {
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

    .culinary-content h2 {
        font-size: var(--fs-section-h2);
    }

    .food-feature-list {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .food-feature-list {
        grid-template-columns: 1fr;
    }

    .culinary-content h2 {
        font-size: var(--fs-section-h2);
    }
}

/* Live Counter Section */
.live-counter-section {
    padding: 80px 20px;
    background: #303646;
    color: #f4f1e9;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.live-counter-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-number {
    font-family: 'Poiret One', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: #B8A884;
    display: block;
    margin-bottom: 5px;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.counter-divider {
    width: 2px;
    height: 60px;
    background: rgba(184, 168, 132, 0.3);
    margin: auto 0;
}

@media (max-width: 768px) {
    .counter-divider {
        display: none;
    }

    .live-counter-grid {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .counter-item {
        margin-bottom: 20px;
    }

    .live-counter-section {
        padding: 60px 20px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 0.8rem;
    }
}

/* --- Activities Section Styles --- */
.Activity-Updated-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
    background: #ffffff;
}

.Activity-Updated-container-headings {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2vw;
    margin-bottom: 30px;
}

.Feedback-container-topper-text {
    color: #B8A884;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.Feedback-header-text,
.Feedback-header-text-2 {
    font-family: 'Poiret One', sans-serif;
    font-size: 3rem;
    color: #303646;
    line-height: 1.1;
}

.Feedback-header-bottom-text {
    max-width: 700px;
    margin: 20px auto;
    color: #666;
    line-height: 1.6;
}

.Activity-Updated-container-content {
    padding-top: 20px;
    gap: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.Activity-Updated-image-box {
    flex: 1;
    height: 450px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.Activity-Updated-image-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Activity-Updated-activities {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.Activities-Updated-h2 {
    font-size: 2.2rem;
    font-family: 'Poiret One', sans-serif;
    color: #303646;
    margin-bottom: 25px;
}

.Activity-Updated-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.ActivitiesUpdated-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #303646;
    background-color: #f4f1e9;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ActivitiesUpdated-button:hover,
.ActivitiesUpdated-button.active {
    background-color: #303646;
    color: #B8A884;
    border-color: #303646;
    transform: translateY(-2px);
}

.ActivitiesUpdated-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #B8A884;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.ActivitiesUpdated-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .Activity-Updated-container-content {
        flex-direction: column;
        gap: 40px;
    }

    .Activity-Updated-image-box {
        width: 100%;
        height: 400px;
    }

    .Activity-Updated-activities {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .Feedback-header-text,
    .Feedback-header-text-2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .Activity-Updated-container {
        padding: 40px 15px;
    }

    .ActivitiesUpdated-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* --- Premium Layout Utilities --- */
.section-premium {
    padding: 100px 5%;
    position: relative;
    overflow: visible;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

/* --- Theme Utilities --- */
.theme-gold {
    background-color: #B8A884;
    color: #303646;
}

.theme-gold h2 {
    color: #ffffff !important;
}

.theme-ivory {
    background-color: #f4f1e9;
    color: #303646;
}

.theme-ivory .text-gold {
    color: #B8A884;
}

/* --- 3D Coverflow Gallery --- */
.coverflow-section {
    padding: 100px 0;
    overflow: hidden;
    perspective: 1500px;
    background: #303646;
}

.coverflow-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.coverflow-item {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: 0.8s;
}

.coverflow-item.active {
    transform: translate3d(0, 0, 300px) rotateY(0deg);
    z-index: 10;
    border-color: #B8A884;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.coverflow-item.active img {
    opacity: 1;
}

.coverflow-item.prev {
    transform: translate3d(-300px, 0, 0) rotateY(45deg);
    z-index: 5;
}

.coverflow-item.next {
    transform: translate3d(300px, 0, 0) rotateY(-45deg);
    z-index: 5;
}

.coverflow-item.far-prev {
    transform: translate3d(-500px, 0, -200px) rotateY(60deg);
    z-index: 1;
    opacity: 0;
}

.coverflow-item.far-next {
    transform: translate3d(500px, 0, -200px) rotateY(-60deg);
    z-index: 1;
    opacity: 0;
}

.coverflow-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.cover-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.cover-dot.active {
    background: #B8A884;
    transform: scale(1.3);
}

/* --- Testimonials Redesign --- */
.testimonial-slider-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-mask {
    overflow: hidden;
    width: 100%;
    border-radius: 30px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
}

.review-card-google {
    border-radius: 25px;
    padding: 35px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.review-card-gold {
    background-color: #303646;
    color: #f4f1e9;
}

.review-card-dark {
    background-color: #ffffff;
    color: #303646;
    border: 1px solid #ddd;
}

.review-card-dark .review-text {
    color: #555;
    border-left-color: #B8A884;
}

.review-card-dark .review-title {
    color: #303646;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poiret One', sans-serif;
}

.google-icon {
    width: 25px;
    height: 25px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 3px solid #B8A884;
    padding-left: 20px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.rating-stars {
    color: #f1c40f;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dot.active {
    background: #303646;
    transform: scale(1.2);
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #303646;
    color: #B8A884;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #B8A884;
    color: #303646;
}

/* --- Accordion Styles --- */
.accordion-item {
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.accordion-header {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 10px 30px 30px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-header {
    background: #fdfdfd;
    color: #B8A884;
}

/* --- Final Responsive --- */
@media (max-width: 1100px) {
    .testimonial-prev {
        left: 10px;
    }

    .testimonial-next {
        right: 10px;
    }
}

@media (max-width: 900px) {
    .section-premium {
        padding: 60px 15px;
    }

    .split-section {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .review-card-google {
        padding: 25px;
    }

    .coverflow-item {
        width: 260px;
        height: 350px;
    }

    /* Hide Category & Popup Slider Arrows on Tablet */
    @media (max-width: 1024px) {

        .package-visual-side .swiper-button-next,
        .package-visual-side .swiper-button-prev,
        .dayout-pop-swiper .swiper-button-next,
        .dayout-pop-swiper .swiper-button-prev {
            display: none !important;
        }
    }
}

/* --- Activity Modal --- */
.activity-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.activity-modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 650px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.activity-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #303646;
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.activity-table th,
.activity-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.activity-table th {
    background: #f4f1e9;
    color: #303646;
    font-weight: 700;
}

/* Floating Action Buttons Matching Index Page */
.hero-enqire-section {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 2000;
}

.hero-enquiry-logo {
    width: 70px;
    height: 70px;
    background-color: var(--lightt-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.5px solid var(--dark-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.Enquire-logo {
    height: 40px;
}

.hero-enqire-section-wrapper {
    position: fixed;
    bottom: 120px;
    right: 20px;
    margin-bottom: 20px;
    z-index: 2000;
    display: inline-block;
}



/* Mobile Header Fix */
@media (max-width: 768px) {
    .hero-phone-number-span {
        font-size: var(--fs-page-h1);
        transition: none !important;
    }

    .menuicon-wrapper {
        gap: 10px !important;
    }
}