/* ==================================
   Package Section Styles
   ================================== */

.package-section {
    position: relative;
    padding: 100px 0 80px;
}

.package-section .sec-title {
    margin-bottom: 60px;
}

.package-section .sec-title .sub-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-section .sec-title .sub-title .icon-left,
.package-section .sec-title .sub-title .icon-right {
    display: inline-block;
    margin: 0 15px;
    color: #d4af37;
}

.package-section .sec-title h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Package Carousel */
.package-carousel-wrapper {
    position: relative;
    margin: 0 60px;
}

.package-carousel {
    position: relative;
}

/* Package Block */
.package-block {
    margin-bottom: 30px;
}

.package-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 40px 30px 30px;
    transition: all 0.3s ease;
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-title {
    color: #d4af37;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto;
}

/* Package Info */
.package-info {
    margin-bottom: 30px;
}

.package-info .info-item {
    margin-bottom: 20px;
}

.package-info .info-label {
    display: block;
    color: #d4af37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.package-info .info-value {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* Package Inclusions */
.package-inclusions {
    margin-bottom: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.package-inclusions .inclusions-label {
    display: block;
    color: #d4af37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.inclusion-item {
    text-align: center;
}

.inclusion-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inclusion-icon i {
    color: #d4af37;
    font-size: 20px;
}

.package-card:hover .inclusion-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.inclusion-label {
    display: block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
}

/* Package Footer */
.package-footer {
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05));
    margin: 0 -30px -30px;
    padding: 25px 30px 30px;
    border-radius: 0 0 10px 10px;
}

.package-price {
    text-align: center;
    margin-bottom: 20px;
}

.package-price .currency {
    color: #d4af37;
    font-size: 20px;
    font-weight: 600;
}

.package-price .amount {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 5px;
}

.package-price .suffix {
    color: #d4af37;
    font-size: 20px;
    font-weight: 600;
}

.package-footer .book-btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.package-footer .book-btn:hover {
    background: #d4af37;
    color: #1a3d3d;
}

.package-footer .book-btn i {
    margin-left: 8px;
}

/* Carousel Navigation */
.package-carousel-wrapper .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.package-carousel-wrapper .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 2px solid #d4af37 !important;
    border-radius: 50%;
    color: #d4af37 !important;
    font-size: 20px;
    transition: all 0.3s ease;
    pointer-events: all;
}

.package-carousel-wrapper .owl-nav button:hover {
    background: #d4af37 !important;
    color: #1a3d3d !important;
}

.package-carousel-wrapper .owl-nav .owl-prev {
    left: -60px;
}

.package-carousel-wrapper .owl-nav .owl-next {
    right: -60px;
}

/* View All Button */
.view-all-btn {
    margin-top: 50px;
}

.theme-btn-two {
    display: inline-block;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.theme-btn-two:hover {
    background: #d4af37;
    color: #1a3d3d;
}

.theme-btn-two i {
    margin-left: 10px;
}

/* Responsive Styles */
@media only screen and (max-width: 1199px) {
    .package-carousel-wrapper {
        margin: 0 40px;
    }

    .package-carousel-wrapper .owl-nav .owl-prev {
        left: -40px;
    }

    .package-carousel-wrapper .owl-nav .owl-next {
        right: -40px;
    }
}

@media only screen and (max-width: 991px) {
    .package-section .sec-title h2 {
        font-size: 36px;
    }

    .inclusions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .package-section {
        padding: 60px 0 40px;
    }

    .package-section .sec-title h2 {
        font-size: 28px;
    }

    .package-carousel-wrapper {
        margin: 0;
    }

    .package-carousel-wrapper .owl-nav {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .package-carousel-wrapper .owl-nav .owl-prev,
    .package-carousel-wrapper .owl-nav .owl-next {
        position: static;
    }

    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .inclusion-icon {
        width: 40px;
        height: 40px;
    }

    .inclusion-icon i {
        font-size: 16px;
    }

    .inclusion-label {
        font-size: 11px;
    }

    .package-price .amount {
        font-size: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .package-card {
        padding: 30px 20px 20px;
    }

    .package-title {
        font-size: 20px;
    }

    .package-footer {
        margin: 0 -20px -20px;
        padding: 20px;
    }
}
