/* Package Hero Section */
.pkg-hero-section {
    padding: 0;
    background: #000;
}

.pkg-gallery-wrapper {
    position: relative;
}

.pkg-main-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.pkg-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pkg-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.pkg-badge {
    background: rgba(74, 144, 226, 0.95);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pkg-thumbnail-grid {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    overflow-x: auto;
}

.pkg-thumb,
.pkg-thumb-more {
    min-width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.pkg-thumb img,
.pkg-thumb-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-thumb.active,
.pkg-thumb:hover {
    border-color: #4a90e2;
    transform: scale(1.05);
}

.pkg-thumb-more {
    position: relative;
}

.pkg-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.pkg-more-overlay i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Package Info Section */
.pkg-info-section {
    padding: 40px 0 40px;
    background: #fff;
}

.pkg-header-info {
    margin-bottom: 30px;
}

.pkg-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pkg-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pkg-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #666;
}

.pkg-meta-item i {
    color: #4a90e2;
}

/* Tabs */
.pkg-tabs-wrapper {
    margin-top: 30px;
}

.pkg-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.pkg-tab-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-tab-item:hover {
    color: #4a90e2;
}

.pkg-tab-item.active {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

.pkg-tabs-content {
    background: white;
}

.pkg-tab-pane {
    padding-top: 50px;
    animation: pkgFadeIn 0.4s ease;
}
.pkg-tab-pane:first-child{
    padding-top: 0;
}

.pkg-tab-pane.active {
    display: block;
    
}

@keyframes pkgFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pkg-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pkg-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0px 0 20px;
}

.pkg-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Highlights */
.pkg-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.pkg-highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.pkg-highlight-item i {
    color: #4a90e2;
    font-size: 1.3rem;
    margin-top: 3px;
}

.pkg-highlight-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

.pkg-highlight-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Itinerary */
.pkg-itinerary-list {
    margin-top: 30px;
}

.pkg-itinerary-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.pkg-itinerary-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 55px;
    width: 2px;
    height: calc(100% - 35px);
    background: #e9ecef;
}

.pkg-day-badge {
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #4a90e2, #67b5ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.pkg-day-content {
    flex: 1;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.pkg-day-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 20px;
    background: #f8f9fa;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pkg-day-title:hover {
    background: #e9ecef;
}

.pkg-expand-btn {
    background: none;
    border: none;
    color: #4a90e2;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pkg-expand-btn.active {
    transform: rotate(180deg);
}

.pkg-day-details {
    padding: 20px;
    display: none;
}

.pkg-day-details.active {
    display: block;
}

.pkg-day-details p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.pkg-day-details strong {
    color: #2c3e50;
}

.pkg-day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.pkg-day-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.pkg-day-meta i {
    color: #4a90e2;
}

/* Inclusions */
.pkg-inclusion-box,
.pkg-exclusion-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

.pkg-inclusion-box {
    border-left: 5px solid #28a745;
}

.pkg-exclusion-box {
    border-left: 5px solid #dc3545;
}

.pkg-inclusion-title,
.pkg-exclusion-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-inclusion-title i {
    color: #28a745;
}

.pkg-exclusion-title i {
    color: #dc3545;
}

.pkg-inclusion-list,
.pkg-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-inclusion-list li,
.pkg-exclusion-list li {
    padding: 10px 0;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #f8f9fa;
    line-height: 1.6;
    color: #555;
}

.pkg-inclusion-list li:last-child,
.pkg-exclusion-list li:last-child {
    border-bottom: none;
}

.pkg-inclusion-list i {
    color: #28a745;
    margin-top: 3px;
}

.pkg-exclusion-list i {
    color: #dc3545;
    margin-top: 3px;
}

/* Additional Services */
.pkg-additional-services {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.pkg-service-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pkg-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pkg-service-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.pkg-service-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pkg-service-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Hotel Table */
.pkg-hotel-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.pkg-hotel-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.pkg-hotel-table thead {
    background: linear-gradient(135deg, #4a90e2, #67b5ff);
    color: white;
}

.pkg-hotel-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.pkg-hotel-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.pkg-hotel-table tbody tr:last-child td {
    border-bottom: none;
}

.pkg-hotel-table tbody tr:hover {
    background: #f8f9fa;
}

.pkg-star-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Hotel Gallery */
.pkg-hotel-gallery {
    margin-top: 40px;
}

.pkg-hotel-img {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.pkg-hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pkg-hotel-img:hover img {
    transform: scale(1.1);
}

.pkg-hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 15px;
    font-weight: 600;
}

/* FAQ */
.pkg-faq-list {
    margin-top: 30px;
}

.pkg-faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
}

.pkg-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s ease;
}

.pkg-faq-question:hover {
    background: #e9ecef;
}

.pkg-faq-question h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.pkg-faq-question i {
    color: #4a90e2;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.pkg-faq-question.active i {
    transform: rotate(180deg);
}

.pkg-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pkg-faq-answer.active {
    padding: 20px;
    max-height: 1000px;
}

.pkg-faq-answer p {
    margin: 0 0 15px 0;
    line-height: 1.7;
    color: #555;
}

.pkg-faq-answer ul {
    margin-left: 20px;
    color: #555;
}

.pkg-faq-answer ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Reviews */
.pkg-review-summary {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
}

.pkg-rating-box {
    text-align: center;
    min-width: 150px;
}

.pkg-rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4a90e2;
}

.pkg-rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 10px 0;
}

.pkg-rating-box p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.pkg-rating-breakdown {
    flex: 1;
}

.pkg-rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.pkg-rating-bar span:first-child {
    min-width: 80px;
    font-weight: 600;
    color: #2c3e50;
}

.pkg-rating-bar .progress {
    flex: 1;
    height: 8px;
    background: #e9ecef;
}

.pkg-rating-bar .progress-bar {
    background: linear-gradient(90deg, #4a90e2, #67b5ff);
}

.pkg-rating-bar span:last-child {
    min-width: 40px;
    text-align: right;
    color: #666;
}

.pkg-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pkg-review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.pkg-reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pkg-reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.pkg-reviewer-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.pkg-reviewer-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
}

.pkg-review-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 12px;
}

.pkg-review-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pkg-review-text {
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Booking Widget */
.pkg-booking-widget {
    position: static;
    top: 20px;
    background: white;
    border-radius: 12px;
    
    overflow: hidden;
}

.pkg-price-section {
    /* background: linear-gradient(135deg, #4a90e2, #67b5ff);
    color: white; */
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.pkg-price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}

.pkg-price-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pkg-old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.pkg-discount-badge {
    background: #ff4757;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pkg-current-price {
    font-size: 2rem;
    font-weight: 700;
}
.pkg-tab-item a{
    text-decoration: none;
    color: inherit;
}

.pkg-price-note {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

.pkg-quick-info {
   
}

.pkg-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.pkg-info-item:last-child {
    border-bottom: none;
}

.pkg-info-item i {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-top: 3px;
}

.pkg-info-item strong {
    display: block;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.pkg-info-item span {
    color: #666;
    font-size: 0.9rem;
}

.pkg-booking-form {
    padding: 10px 25px;
    border-bottom: 1px solid #e9ecef;
}

.pkg-booking-form h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pkg-action-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.pkg-action-buttons a, .pkg-action-buttons button{
    flex: 1;
}
.btn-pkg-book,
.btn-pkg-enquire {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pkg-book {
    background: #4a90e2;
    color: white;
}

.btn-pkg-book:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-pkg-enquire {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.btn-pkg-enquire:hover {
    background: #4a90e2;
    color: white;
}

.pkg-features-list {
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.pkg-features-list h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pkg-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-features-list li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-features-list i {
    color: #28a745;
    font-size: 1rem;
}

.pkg-contact-box {
    padding: 25px;
    background: #f8f9fa;
}

.pkg-contact-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-contact-box h5 i {
    color: #4a90e2;
}

.pkg-contact-box p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.pkg-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.pkg-contact-btn:hover {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

.pkg-contact-btn i {
    color: #4a90e2;
}

.pkg-contact-btn:hover i {
    color: white;
}

/* Lightbox */
.pkg-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.pkg-lightbox.active {
    display: block;
}

.pkg-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.pkg-lightbox-content {
    position: relative;
    margin: auto;
    padding: 50px 20px;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.pkg-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.pkg-lightbox-prev,
.pkg-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pkg-lightbox-prev:hover,
.pkg-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.pkg-lightbox-prev {
    left: 20px;
}

.pkg-lightbox-next {
    right: 20px;
}

/* Modal */
.pkg-modal {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.pkg-modal.active {
    display: block;
}

.pkg-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: pkgModalSlideDown 0.4s ease;
}

@keyframes pkgModalSlideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pkg-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pkg-modal-close:hover {
    color: #333;
}

.pkg-modal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.pkg-enquiry-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pkg-main-image {
        height: 350px;
    }

    .pkg-booking-widget {
        position: static;
        margin-top: 40px;
    }

    .pkg-tabs-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .pkg-tab-item {
        white-space: nowrap;
    }

    .pkg-review-summary {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .pkg-main-title {
        font-size: 1.8rem;
    }

    .pkg-section-title {
        font-size: 1.5rem;
    }

    .pkg-thumbnail-grid {
        padding: 10px;
    }

    .pkg-thumb,
    .pkg-thumb-more {
        min-width: 100px;
        height: 70px;
    }

    .pkg-itinerary-item {
        flex-direction: column;
        gap: 15px;
    }

    .pkg-itinerary-item::after {
        display: none;
    }

    .pkg-day-badge {
        width: 55px;
    }

    .pkg-hotel-table {
        font-size: 0.85rem;
    }

    .pkg-hotel-table th,
    .pkg-hotel-table td {
        padding: 10px;
    }

    .pkg-current-price {
        font-size: 2rem;
    }

    .pkg-lightbox-prev,
    .pkg-lightbox-next {
        padding: 10px 15px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .pkg-main-image {
        height: 250px;
    }

    .pkg-meta-info {
        flex-direction: column;
        gap: 10px;
    }

    .pkg-info-section {
        padding: 30px 0 60px;
    }

    .pkg-tab-item {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    .pkg-tab-item i {
        display: none;
    }

    .pkg-service-card {
        margin-bottom: 15px;
    }

    .pkg-modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
}