    /* Save Badge and Stay Period Notice */
.save-badge {
    position: absolute;
    top: 150px;
    left: 625px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.save-badge-img {
    max-width: 150px;
    height: auto;
}

.stay-period-notice {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: none;
    text-align: center;
    z-index: 10;
}

.stay-period-notice p {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
   .save-badge {
        top: 120px;
        left: 250px;
    }

    
    .save-badge-img {
        max-width: 120px;
    }
    
    .stay-period-notice p {
        font-size: 14px;
        padding: 4px 12px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Form Container */
    .enquiry-box {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        max-width: 570px;
        margin: 0 auto 0 auto;
    }

    /* Mobile Form Specific Styling */
    #enquire-mobile {
        margin: 30px auto;
        max-width: 90%;
        padding: 25px 20px;
    }

    /* Form Elements */
    .form-row {
        display: flex;
        gap: 10px;
        margin-bottom: 0px;
    }

    .form-group {
        flex: 1;
        margin-bottom: 0px;
    }

    .form-label {
        display: block;
        font-size: 14px;
        color: #333;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .form-control {
        width: 100%;
        height: 40px;
        padding: 8px 15px;
        font-size: 14px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: #fff;
    }

    .form-control:focus {
        border-color: #8b734b;
        outline: none;
        box-shadow: 0 0 0 3px rgba(139, 115, 75, 0.1);
    }

    .form-control::placeholder {
        color: #999;
    }

    /* Select Styling */
    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
    }

    .nice-select .list {
        overflow-x: hidden;
        max-height: 300px;
        overflow-y: auto;
    }

    /* Checkbox Styling */
    .terms-group {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
    }

    .terms-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        accent-color: #8b734b;
    }

    .terms-group label {
        font-size: 12px;
        line-height: 1.4;
        color: #555;
        font-weight: 400;
    }

    /* Submit Button */
    .submit-row {
        text-align: center;
        margin-top: 15px;
    }

    .btn-primary {
        width: 100%;
        max-width: 200px;
        height: 50px;
        font-size: 16px;
        font-weight: 600;
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        border: none;
        border-radius: 8px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #6b5a3a 0%, #8b734b 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 115, 75, 0.3);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    /* Error Message */
    .error-message {
        display: none;
        color: #ff4d4d;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        margin-top: 15px;
        padding: 10px;
        background: rgba(255, 77, 77, 0.1);
        border-radius: 6px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .banner-area {
            padding-bottom: 20px;
            min-height: auto;
        }

        .banner-area .banner-bg {
            height: 300px;
        }

        #enquire-mobile {
            margin-top: 20px;
            margin-bottom: 50px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(139, 115, 75, 0.2);
        }

        .form-row {
            flex-direction: column;
            gap: 0;
        }

        .form-group {
            width: 100%;
            margin-bottom: 15px;
        }

        .btn-primary {
            height: 45px;
            font-size: 14px;
            width: 100%;
        }
        
        .terms-group label {
            font-size: 11px;
        }
    }

    /* Date Input Styling */
    input[type="date"].form-control {
        padding: 8px 15px;
    }

    /* Focus States */
    .form-control:focus,
    select.form-control:focus,
    input[type="date"].form-control:focus {
        border-color: #8b734b;
        box-shadow: 0 0 0 3px rgba(139, 115, 75, 0.1);
    }

    /* Disabled State */
    .form-control:disabled {
        background-color: #f5f5f5;
        cursor: not-allowed;
    }

    /* Disabled Submit Button */
    .btn-primary:disabled {
        background: linear-gradient(135deg, #c5b595 0%, #a0947a 100%);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
        opacity: 0.7;
    }


    
    .features-section {
        background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
        position: relative;
        padding: 4rem 0;
    }

    .feature-box {
        padding: 2.5rem 2rem;
        background: var(--white);
        border-radius: 20px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        height: 100%;
        border: 1px solid rgba(139, 115, 75, 0.1);
        position: relative;
        overflow: hidden;
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(139, 115, 75, 0.05) 0%, rgba(139, 115, 75, 0) 100%);
        opacity: 0;
        transition: var(--transition);
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .feature-box:hover::before {
        opacity: 1;
    }

    .feature-box .icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--white);
        font-size: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .feature-box:hover .icon {
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 8px 20px rgba(139, 115, 75, 0.3);
    }

    .feature-box h3 {
        color: var(--primary-color);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .feature-box p {
        color: var(--text-color);
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        opacity: 0.9;
    }

    .discover-text {
        padding: 3rem;
        background: var(--white);
        border-radius: 20px;
        box-shadow: var(--shadow-md);
    }

    .block-text .lead {
        font-size: 1.25rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .price-guarantee {
        background: linear-gradient(135deg, rgba(139, 115, 75, 0.1) 0%, rgba(139, 115, 75, 0.05) 100%);
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 2rem;
    }

    .price-guarantee h4 {
        color: var(--primary-color);
        font-weight: 600;
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(139, 115, 75, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(139, 115, 75, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(139, 115, 75, 0);
        }
    }

    @media (max-width: 991px) {
        .section-title h2 {
            font-size: 2rem;
        }

        .discover-text {
            padding: 2rem;
        }

        .feature-box {
            padding: 2rem 1.5rem;
        }
    }

    @media (max-width: 767px) {
        .section-title h2 {
            font-size: 1.75rem;
        }

        .feature-box {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-box .icon {
            width: 70px;
            height: 70px;
            font-size: 1.5rem;
        }

        .feature-box h3 {
            font-size: 1.25rem;
        }

        .discover-text {
            padding: 1.5rem;
        }

        .block-text .lead {
            font-size: 1.1rem;
        }
    }

    .discover-grid {
        position: relative;
    }

    .discover-img {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    }

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

    .badge-overlay {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        transform: rotate(-15deg);
        /* animation: badgeFloat 3s ease-in-out infinite; */
    }

    .discover-text{
        padding: 50px;
    }

    @media (max-width: 767px) {

        .discover-img {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .discover-img img {
            width: auto;
            height: 300px;
            object-fit: cover;
            margin: 0 auto;
        }

        .badge-overlay {
            top: 10px;
            left: 10px;
        }

        .badge-img {
            width: 90px;
        }

        .discover-text{
            padding: 20px;
        }
    }

    .stay-period {
        color: #8b734b;
        font-size: 16px;
        font-weight: 500;
        margin-top: 10px;
        padding: 8px 20px;
        background: rgba(139, 115, 75, 0.1);
        border-radius: 20px;
        display: inline-block;
    }

     /* Resort Gallery Section Styling */
     .resort-gallery-section {
        background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
        position: relative;
        padding: 80px 0;
        overflow: hidden;
    }

    .resort-gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    .resort-gallery-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border: 1px solid rgba(139, 115, 75, 0.1);
    }

    .resort-gallery-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(139, 115, 75, 0.15);
    }

    .resort-header {
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        padding: 20px 25px;
        text-align: center;
        position: relative;
    }

    .resort-header h3 {
        color: #fff;
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        aspect-ratio: 1;
    }

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

    .gallery-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: all 0.4s ease;
    }

    .gallery-link {
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8b734b;
        font-size: 20px;
        transform: scale(0.8);
        transition: all 0.4s ease;
    }

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

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

    .gallery-item:hover .gallery-link {
        transform: scale(1);
    }

    .gallery-link:hover {
        background: #8b734b;
        color: #fff;
    }

    @media (max-width: 991px) {
        .resort-gallery-section {
            padding: 60px 0;
        }

        .gallery-grid {
            gap: 10px;
            padding: 15px;
        }

        .resort-header h3 {
            font-size: 20px;
        }
    }

    @media (max-width: 767px) {
        .resort-gallery-section {
            padding: 40px 0;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .gallery-item {
            aspect-ratio: 16/9;
        }

        .resort-header h3 {
            font-size: 18px;
        }
    }

    .package-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    /* Package card styles */
    .package-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    .package-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000);
        position: relative;
        border: 1px solid rgba(139, 115, 75, 0.1);
        background: #fff;
    }

    .package-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(139, 115, 75, 0.2);
        border-color: rgba(139, 115, 75, 0.2);
    }

    .package-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #8b734b, #c7a96a);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .package-card:hover::before {
        opacity: 1;
    }

    .package-header {
        /* background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%); */
            background-image: linear-gradient(rgb(0 0 0 / 77%), rgba(0, 0, 0, 0.5)), url(assets/images/bali-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        padding: 30px 20px;
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
        height: 190px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .package-header::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
        pointer-events: none;
    }

    .package-header h3 {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
        color: #fff;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        line-height: 1.3;
    }

    .package-subtitle {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        position: relative;
        z-index: 1;
        padding: 6px 16px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        display: inline-block;
        margin-top: 5px;
        letter-spacing: 1px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .package-body {
        padding: 25px;
        position: relative;
        background: #fff;
    }

    .package-section {
        margin-bottom: 25px;
        background: none;
    }

    .package-section:last-child {
        margin-bottom: 0;
    }

    .package-section h4 {
        color: #8b734b;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(139, 115, 75, 0.1);
        position: relative;
    }

    .package-section h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 60px;
        height: 2px;
        background: #8b734b;
    }

    /* Package Features */
    .package-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .package-features li {
        padding: 10px 0;
        color: #444;
        font-size: 15px;
        display: flex;
        align-items: center;
        border-bottom: 1px dashed rgba(139, 115, 75, 0.1);
        transition: all 0.3s ease;
    }

    .package-features li:last-child {
        border-bottom: none;
    }

    .package-features li:hover {
        transform: translateX(5px);
        color: #000;
    }

    .package-features li i {
        color: #8b734b;
        margin-right: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .package-card:hover .package-features li i {
        color: #c7a96a;
        transform: scale(1.1);
    }

    /* Package Pricing */
    .package-pricing {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .package-pricing li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed rgba(139, 115, 75, 0.1);
        font-size: 15px;
        color: #444;
        transition: all 0.3s ease;
    }

    .package-pricing li:last-child {
        border-bottom: none;
    }

    .package-pricing li:hover {
        background-color: rgba(139, 115, 75, 0.03);
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 5px;
    }

    .package-pricing li span:first-child {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .package-pricing li i {
        color: #c7a96a;
        font-size: 14px;
    }

    .package-pricing .price {
        font-weight: 800;
        color: #8b734b;
        font-size: 18px;
    }

    /* View Details Button */
    .package-footer {
        text-align: center;
        padding: 15px 25px 25px;
        border-top: none;
    }

    .btn-view-details {
        background: linear-gradient(135deg, #8b734b 0%, #c7a96a 100%);
        color: #fff;
        border-radius: 50px;
        padding: 12px 30px;
        display: inline-block;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(139, 115, 75, 0.3);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
        z-index: 1;
    }

    .btn-view-details::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #fff;
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .btn-view-details:hover {
        color: #8b734b;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(139, 115, 75, 0.4);
        border-color: #8b734b;
    }

    .btn-view-details:hover::before {
        width: 100%;
    }

    /* Media queries */
    @media (max-width: 991px) {
        .package-header {
            height: auto;
            min-height: 140px;
            padding: 25px 15px;
        }
        
        .package-header h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .package-body {
            padding: 20px;
        }
        
        .package-section h4 {
            font-size: 16px;
        }
        
        .package-features li, 
        .package-pricing li {
            font-size: 14px;
            padding: 8px 0;
        }
        
        .package-pricing .price {
            font-size: 16px;
        }
    }

    @media (max-width: 767px) {
        .package-header {
            min-height: 165px;
            padding: 20px 15px;
        }
        
        .package-header h3 {
            font-size: 16px;
        }
        
        .package-subtitle {
            font-size: 12px;
            padding: 5px 12px;
        }
        
        .package-body {
            padding: 15px;
        }
        
        .btn-view-details {
            padding: 10px 20px;
            font-size: 12px;
        }
    }

     /* Itinerary Section Styling */
     .itinerary-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        padding: 60px 0;
    }

    .itinerary-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    .itinerary-timeline {
        position: relative;
        padding-left: 45px;
    }

    .itinerary-timeline::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 25px;
        bottom: 25px;
        width: 3px;
        background: linear-gradient(to bottom, #8b734b, #6b5a3a);
        border-radius: 3px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 25px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-header {
        display: flex;
        align-items: center;
        background: white;
        padding: 20px 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid rgba(139, 115, 75, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .timeline-header:hover {
        background: rgba(139, 115, 75, 0.03);
        transform: translateY(-2px);
    }

    .timeline-header[aria-expanded="true"] {
        background: rgba(139, 115, 75, 0.05);
        border-color: rgba(139, 115, 75, 0.2);
        border-radius: 10px 10px 0 0;
    }

    .timeline-header h4 {
        color: #8b734b;
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        flex-grow: 1;
    }

    .toggle-icon {
        color: #8b734b;
        position: relative;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .toggle-icon i {
        transition: all 0.3s ease;
        position: absolute;
        font-size: 16px;
    }

    .toggle-icon .fa-plus {
        opacity: 1;
    }

    .toggle-icon .fa-minus {
        opacity: 0;
    }

    .timeline-header[aria-expanded="true"] .toggle-icon .fa-plus {
        opacity: 0;
    }

    .timeline-header[aria-expanded="true"] .toggle-icon .fa-minus {
        opacity: 1;
    }

    .day-number {
        position: absolute;
        left: -125px;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
        height: 35px;
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        border-radius: 20%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        border: 2px solid white;
        box-shadow: 0 3px 10px rgba(139, 115, 75, 0.2);
        z-index: 3;
    }

    .timeline-content {
        background: white;
        padding: 25px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid rgba(139, 115, 75, 0.1);
        border-top: none;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .timeline-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .timeline-content ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: #444;
        font-size: 15px;
        padding: 12px 15px;
        background: rgba(139, 115, 75, 0.03);
        border-radius: 8px;
        transition: all 0s ease;
    }

    .timeline-content ul li:last-child {
        margin-bottom: 0;
    }

    .timeline-content ul li:hover {
        background: rgba(139, 115, 75, 0.06);
        transform: translateX(3px);
    }

    .timeline-content ul li i {
        color: #8b734b;
        margin-right: 12px;
        font-size: 14px;
        background: rgba(139, 115, 75, 0.1);
        min-width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-top: 2px;
    }

    /* Resort Section Styling */
    .resort-section {
        background-color: #f9f7f4;
        position: relative;
        padding: 60px 0;
    }

    .resort-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    .resort-wrapper {
        background: #fff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border: 1px solid rgba(139, 115, 75, 0.1);
        position: relative;
        overflow: hidden;
    }

    .resort-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #8b734b, #6b5a3a);
    }

    .resort-dining-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border: 1px solid rgba(139, 115, 75, 0.1);
        overflow: hidden;
        height: 100%;
        transition: all 0.4s ease;
    }

    .resort-dining-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(139, 115, 75, 0.15);
    }

    .resort-header {
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        padding: 20px 25px;
        text-align: center;
        position: relative;
    }

    .resort-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
    }

    .resort-header h4 {
        color: #fff;
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .resort-content {
        padding: 25px;
    }

    .dining-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .dining-list li {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: rgba(139, 115, 75, 0.03);
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .dining-list li:hover {
        background: rgba(139, 115, 75, 0.06);
        transform: translateX(3px);
    }

    .dining-list li i {
        color: #8b734b;
        margin-right: 12px;
        font-size: 16px;
        background: rgba(139, 115, 75, 0.1);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .resort-dining-card:hover .dining-list li i {
        background: rgba(139, 115, 75, 0.2);
    }

    @media (max-width: 767px) {
        .resort-wrapper {
            padding: 25px;
        }

        .dining-list {
            grid-template-columns: 1fr;
        }

        .itinerary-timeline {
            padding-left: 35px;
        }

        .day-number {
            left: -35px;
            width: 70px;
            height: 30px;
            font-size: 14px;
        }

        .timeline-header {
            padding: 15px;
        }

        .timeline-header h4 {
            font-size: 16px;
            margin-left: 30px;
        }

        .timeline-content {
            padding: 20px;
        }

        .timeline-content ul li {
            font-size: 14px;
            padding: 10px;
        }
    }

     /* Add this to your existing styles */
     .restaurant-flag {
        width: 24px;
        height: 18px;
        margin-left: 10px;
        vertical-align: middle;
        border-radius: 3px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

    .dining-list li {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: rgba(139, 115, 75, 0.03);
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
        position: relative;
    }

    .dining-list li:hover {
        background: rgba(139, 115, 75, 0.06);
        transform: translateX(3px);
    }

    .dining-list li:hover .restaurant-flag {
        transform: scale(1.1);
        box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    .dining-list li i {
        color: #8b734b;
        margin-right: 12px;
        font-size: 16px;
        background: rgba(139, 115, 75, 0.1);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    /* Add a tooltip for Indian restaurants */
    .dining-list li[data-cuisine="indian"] {
        position: relative;
    }

    .dining-list li[data-cuisine="indian"]::after {
        /* content: 'Indian Cuisine'; */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(139, 115, 75, 0.1);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        color: #8b734b;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .dining-list li[data-cuisine="indian"]:hover::after {
        opacity: 1;
    }

      /* Beaches Section Styling */
      .beaches-section {
        background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
        position: relative;
        padding: 60px 0;
    }

    .beaches-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    .beaches-wrapper {
        background: #fff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border: 1px solid rgba(139, 115, 75, 0.1);
        position: relative;
        overflow: hidden;
    }

    .beaches-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #8b734b, #6b5a3a);
    }

    .beaches-image {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .beaches-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .beaches-image:hover img {
        transform: scale(1.05);
    }

    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: #fff;
    }

    .image-overlay h3 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
    }

    .image-overlay p {
        margin: 5px 0 0;
        font-size: 16px;
        opacity: 0.9;
    }

    .beaches-content {
        padding: 30px;
    }

    .content-title {
        color: #2c3e50;
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .content-description {
        color: #666;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .beaches-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .beaches-list li {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        background: rgba(139, 115, 75, 0.03);
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
        position: relative;
    }

    .beaches-list li:hover {
        background: rgba(139, 115, 75, 0.06);
        transform: translateX(3px);
    }

    .beaches-list li i {
        color: #8b734b;
        margin-right: 12px;
        font-size: 16px;
        background: rgba(139, 115, 75, 0.1);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    @media (max-width: 991px) {
        .beaches-image img {
            height: 350px;
        }
        
        .beaches-content {
            padding: 20px 0;
        }
    }

    @media (max-width: 767px) {
        .beaches-wrapper {
            padding: 25px;
        }

        .beaches-image img {
            height: 250px;
        }

        .beaches-list {
            grid-template-columns: 1fr;
        }

        .content-title {
            font-size: 24px;
        }

        .content-description {
            font-size: 15px;
        }
    }

      /* Excursions Section Styling */
      .excursions-section {
        background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
        position: relative;
        padding: 80px 0;
        overflow: hidden;
    }
    
    .excursions-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }
    
    .excursion-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border: 1px solid rgba(139, 115, 75, 0.1);
    }
    
    .excursion-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(139, 115, 75, 0.15);
        border-color: rgba(139, 115, 75, 0.3);
    }
    
    .excursion-img {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .excursion-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }
    
    .excursion-card:hover .excursion-img img {
        transform: scale(1.1);
    }
    
    .excursion-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .excursion-card:hover .excursion-overlay {
        opacity: 1;
    }
    
    .excursion-btn {
        display: inline-block;
        text-align: center;
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.4s ease;
        letter-spacing: 1px;
        font-size: 14px;
        transform: translateY(20px);
        opacity: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .excursion-card:hover .excursion-btn {
        transform: translateY(0);
        opacity: 1;
    }
    
    .excursion-btn:hover {
        background: linear-gradient(135deg, #6b5a3a 0%, #8b734b 100%);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        color: white;
    }
    
    .excursion-content {
        padding: 30px;
        position: relative;
    }
    
    .excursion-icon {
        position: absolute;
        top: -30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        box-shadow: 0 5px 15px rgba(139, 115, 75, 0.2);
        transition: all 0.4s ease;
        border: 3px solid #fff;
    }
    
    .excursion-card:hover .excursion-icon {
        transform: scale(1.1) rotate(10deg);
    }
    
    .excursion-content h3 {
        color: #8b734b;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .excursion-content p {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        min-height: 72px;
    }
    
    .excursion-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        border-top: 1px solid rgba(139, 115, 75, 0.1);
        padding-top: 15px;
    }
    
    .excursion-features span {
        background: rgba(139, 115, 75, 0.05);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 13px;
        color: #6b5a3a;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }
    
    .excursion-features span i {
        font-size: 12px;
    }
    
    .excursion-card:hover .excursion-features span {
        background: rgba(139, 115, 75, 0.1);
    }
    
    @media (max-width: 991px) {
        .excursion-img {
            height: 220px;
        }
        
        .excursion-content h3 {
            font-size: 20px;
        }
        
        .excursion-content p {
            font-size: 14px;
            min-height: 84px;
        }
    }
    
    @media (max-width: 767px) {
        .excursions-section {
            padding: 60px 0;
        }
        
        .excursion-img {
            height: 200px;
        }
        
        .excursion-content {
            padding: 25px 20px;
        }
        
        .excursion-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
            top: -25px;
            right: 20px;
        }
        
        .excursion-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .excursion-content p {
            min-height: auto;
            margin-bottom: 15px;
        }
        
        .excursion-features span {
            font-size: 12px;
            padding: 4px 10px;
        }
    }

     /* Mobile Enquire Now Heading Styling */
     @media (max-width: 767px) {
        #enquire-mobile h2 {
            position: relative;
            font-size: 26px;
            font-weight: 700;
            text-align: center;
            margin: 0 0 30px;
            padding: 15px 0;
            color: #fff;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
            border-radius: 0 0 30px 30px;
            box-shadow: 0 5px 15px rgba(107, 90, 58, 0.3);
            text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
            animation: headingGlow 3s infinite alternate;
        }

        @keyframes headingGlow {
            0% {
                box-shadow: 0 5px 15px rgba(107, 90, 58, 0.3);
            }
            100% {
                box-shadow: 0 8px 25px rgba(139, 115, 75, 0.5);
            }
        }
        
        #enquire-mobile h2::before, 
        #enquire-mobile h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            height: 3px;
            border-radius: 3px;
        }
        
        #enquire-mobile h2::before {
            width: 60%;
            background: rgba(255, 255, 255, 0.2);
        }
        
        #enquire-mobile h2::after {
            width: 30%;
            background: rgba(255, 255, 255, 0.4);
            bottom: -8px;
        }
        
        #enquire-mobile .content {
            position: relative;
            padding-top: 0;
            border-top: none;
            padding: 0 20px 25px;
        }
        
        #enquire-mobile {
            margin-top: 20px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(139, 115, 75, 0.25);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            background: #fff;
            border: none;
            padding: 0;
        }
        
        #enquire-mobile::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238b734b' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        #enquire-mobile::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #8b734b, #6b5a3a, #8b734b);
        }
    }

     /* Passport Notice Styling */
     .passport-notice {
        max-width: 800px;
        margin: 30px auto;
        padding: 20px;
        background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
        border: 1px solid rgba(139, 115, 75, 0.2);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(139, 115, 75, 0.1);
    }

    .notice-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .notice-content i {
        font-size: 24px;
        color: #8b734b;
        background: rgba(139, 115, 75, 0.1);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .notice-content p {
        margin: 0;
        color: #555;
        font-size: 16px;
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .passport-notice {
            margin: 20px auto;
            padding: 15px;
        }

        .notice-content {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .notice-content p {
            font-size: 14px;
        }
    }



    .price {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        position: relative;
    }
    
    .price .main-price {
        font-size: 36px;
        font-weight: 800;
        line-height: 1;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .price-separator {
        width: 40px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        margin: 2px 0;
    }
    
    .price .taxes {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        background: rgba(255, 255, 255, 0.1);
        padding: 4px 12px;
        border-radius: 20px;
        backdrop-filter: blur(4px);
    }
    
    @media (max-width: 767px) {
        .price .main-price {
            font-size: 32px;
        }
        
        .price .taxes {
            font-size: 12px;
            padding: 3px 10px;
        }
        
        .price-separator {
            width: 30px;
        }
    }

    /* Features Section Styling */
    .features-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        padding: 80px 0;
        overflow: hidden;
    }

    .features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    .feature-box {
        background: #fff;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(139, 115, 75, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #8b734b, #6b5a3a);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .feature-box:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(139, 115, 75, 0.15);
    }

    .feature-box:hover::before {
        opacity: 1;
    }

    .feature-box .icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: #fff;
        font-size: 36px;
        transition: all 0.4s ease;
        box-shadow: 0 10px 20px rgba(139, 115, 75, 0.2);
        position: relative;
        z-index: 1;
    }

    .feature-box .icon::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, rgba(139, 115, 75, 0.2) 0%, rgba(107, 90, 58, 0.2) 100%);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .feature-box:hover .icon {
        transform: scale(1.1) rotate(10deg);
    }

    .feature-box:hover .icon::after {
        opacity: 1;
        transform: scale(1.2);
    }

    .feature-box h3 {
        color: #8b734b;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .feature-box p {
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        transition: all 0.3s ease;
    }

    .feature-box:hover h3 {
        transform: translateY(-5px);
    }

    .feature-box:hover p {
        color: #333;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .features-section {
            padding: 60px 0;
        }

        .feature-box {
            padding: 30px 20px;
            margin-bottom: 30px;
        }

        .feature-box .icon {
            width: 80px;
            height: 80px;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .feature-box h3 {
            font-size: 22px;
        }

        .feature-box p {
            font-size: 15px;
        }
    }

    @media (max-width: 767px) {
        .features-section {
            padding: 40px 0;
        }

        .feature-box {
            padding: 25px 15px;
            margin-bottom: 20px;
        }

        .feature-box .icon {
            width: 70px;
            height: 70px;
            font-size: 28px;
            margin-bottom: 15px;
        }

        .feature-box h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .feature-box p {
            font-size: 14px;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }
    }

    /* Animation Classes */
    .wow {
        visibility: hidden;
    }

    .fadeInUp {
        animation-name: fadeInUp;
        animation-duration: 1s;
        animation-fill-mode: both;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }

    .fadeInRight {
        animation-name: fadeInRight;
        animation-duration: 1s;
        animation-fill-mode: both;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translate3d(40px, 0, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }

    /* Bali Theme Styles */

    /* Banner Content */
    .banner-content {
        padding: 50px;
        color: #fff;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        max-width: 600px;
    }

    .banner-content .title {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #fff;
    }

    .banner-content .subtitle {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #e3c878;
    }

    .banner-content .banner-desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Enhanced Package Tabs */
    .package-tabs {
        margin: 40px 0 30px;
    }

    .package-tabs .nav-tabs {
        border: none;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .package-tabs .nav-link {
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        border: 2px solid transparent;
        color: #555;
        background-color: #f8f9fa;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        z-index: 1;
    }

    .package-tabs .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, #8b734b 0%, #c7a96a 100%);
        transition: all 0.4s ease-in-out;
        z-index: -1;
        opacity: 0.9;
    }

    .package-tabs .nav-link.active {
        color: #fff;
        background-color: transparent;
        border-color: transparent;
        font-weight: 700;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(139, 115, 75, 0.25);
    }

    .package-tabs .nav-link.active::before {
        width: 100%;
    }

    .package-tabs .nav-link:hover:not(.active) {
        background-color: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.08);
        color: #8b734b;
    }

    .tab-content {
        padding-top: 20px;
        position: relative;
    }

    .tab-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #8b734b, #c7a96a);
        transform: translateX(-50%);
        border-radius: 3px;
    }

    @media (max-width: 767px) {
        .package-tabs {
            margin: 30px 0 20px;
        }
        
        .package-tabs .nav-tabs {
            gap: 10px;
        }
        
        .package-tabs .nav-link {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .tab-content::before {
            width: 60px;
            height: 2px;
        }
    }

    /* Travel Tips */
    .travel-tips {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .travel-tips h3 {
        color: #876a39;
        margin-bottom: 15px;
        font-size: 22px;
        text-align: center;
    }

    .tips-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tips-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #e3e3e3;
        display: flex;
        align-items: center;
    }

    .tips-list li:last-child {
        border-bottom: none;
    }

    .tips-list li i {
        margin-right: 10px;
        color: #876a39;
        width: 25px;
        text-align: center;
    }

    /* Media Queries */
    @media (max-width: 768px) {
        .banner-content {
            padding: 30px 20px;
        }
        
        .banner-content .title {
            font-size: 36px;
        }
        
        .banner-content .subtitle {
            font-size: 22px;
        }
        
        .package-tabs .nav-link {
            padding: 8px 15px;
            margin: 0 5px;
            font-size: 14px;
        }
    }

    /* Hotel Gallery Section Styling */
    .hotel-gallery-section {
        background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
        position: relative;
        padding: 80px 0;
        overflow: hidden;
    }

    .hotel-gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 115, 75, 0.2), transparent);
    }

    /* Hotel Filter Styling */
    .hotel-filter {
        position: relative;
    }

    .hotel-filter select {
        appearance: none;
        background-color: #fff;
        border: 2px solid rgba(139, 115, 75, 0.2);
        border-radius: 50px;
        padding: 15px 25px;
        font-size: 16px;
        font-weight: 600;
        color: #8b734b;
        width: 100%;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
        text-align-last: center;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b734b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 12px;
    }

    .hotel-filter select:focus {
        outline: none;
        border-color: #8b734b;
        box-shadow: 0 5px 20px rgba(139, 115, 75, 0.15);
    }

    .hotel-filter select:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(139, 115, 75, 0.1);
    }

    /* Hotel Card Styling */
    .hotel-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border: 1px solid rgba(139, 115, 75, 0.1);
    }

    .hotel-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(139, 115, 75, 0.15);
    }

    .hotel-header {
        background: linear-gradient(135deg, #8b734b 0%, #6b5a3a 100%);
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .hotel-header::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
        pointer-events: none;
    }

    .hotel-header h3 {
        color: #fff;
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        position: relative;
        z-index: 1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        line-height: 1.2;
        flex: 1;
    }

    .hotel-rating {
        display: flex;
        gap: 4px;
        position: relative;
        z-index: 1;
    }

    .hotel-rating i {
        color: #ffdd00;
        font-size: 16px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Hotel Gallery Grid */
    .hotel-gallery {
        padding: 20px;
    }

    .hotel-gallery .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hotel-gallery .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        aspect-ratio: 4/3;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

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

    /* Animation for filtered items */
    .hotel-item {
        transition: all 0.5s ease;
    }

    .hotel-item.hidden {
        opacity: 0;
        transform: scale(0.8);
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .hotel-header h3 {
            font-size: 18px;
        }

        .hotel-gallery .gallery-grid {
            gap: 10px;
        }
    }

    @media (max-width: 767px) {
        .hotel-filter select {
            padding: 12px 20px;
            font-size: 14px;
        }

        .hotel-header {
            padding: 15px 20px;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .hotel-header h3 {
            font-size: 16px;
        }

        .hotel-gallery {
            padding: 15px;
        }

        .hotel-gallery .gallery-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }

    /* Filter Buttons */
    .hotel-filter-buttons {
        margin-bottom: 40px;
    }

    .filter-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .filter-btn {
        background: #f8f9fa;
        border: 2px solid transparent;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        color: #444;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .filter-btn:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        color: #8b734b;
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #8b734b 0%, #c7a96a 100%);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 5px 15px rgba(139, 115, 75, 0.2);
    }

    /* Animation for filtered items */
    .hotel-item {
        transition: all 0.5s ease;
    }

    .hotel-item.fade-in {
        opacity: 1;
        transform: scale(1);
    }

    .hotel-item.fade-out {
        opacity: 0;
        transform: scale(0.8);
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    /* Gallery Lightbox Styles */
    .gallery-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: all 0.3s ease;
    }

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

    .gallery-item a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
    }

    .gallery-item img {
        transition: transform 0.5s ease;
    }

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

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

    .gallery-overlay i {
        color: #fff;
        font-size: 22px;
        width: 50px;
        height: 50px;
        background: rgba(139, 115, 75, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay i {
        transform: scale(1);
    }

/* Magnific Popup Customization */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.8);
}

.mfp-counter {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
}

.mfp-arrow {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mfp-arrow:hover {
    opacity: 1;
}

.mfp-title {
    font-size: 14px;
    line-height: 16px;
    padding: 10px;
    color: #f3f3f3;
    word-wrap: break-word;
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
}