/* Package Details Main Styles */
.package-details-wrapper {
    background: #f8f9fa;
}

.package-main-thumb {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.package-main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/*  ALL the CSS from your package details */


.similar-tours {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.similar-tours .contact-header {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
}

.similar-tours .contact-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.similar-tours .contact-body {
    padding: 20px;
}

.tour-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.tour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tour-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.tour-details {
    flex: 1;
}

.tour-details h5 {
    margin: 0 0 8px;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tour-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-price {
    color: #e74c3c !important;
    font-weight: 600;
    font-size: 1.1rem !important;
}

.tour-link {
    color: #e74c3c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.tour-link:hover {
    gap: 10px;
    color: #c0392b;
}

.tour-link i {
    font-size: 0.8rem;
}


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

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    background: white;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: white;
    border: none;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    box-shadow: none;
    border-bottom-color: #e74c3c;
}

.accordion-button:not(.collapsed) .day-number {
    background: #e74c3c;
    color: white;
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(180deg);
}

.accordion-button.collapsed {
    border-bottom: 1px solid #eee;
}

.day-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
}

.day-number {
    background: #2c3e50;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.day-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.day-summary {
    display: flex;
    align-items: center;
    gap: 30px;
}

.day-highlights {
    color: #666;
    font-size: 0.95rem;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
}

.accordion-icon {
    color: #e74c3c;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 0;
    border: none;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    padding: 40px 30px;
}

.timeline-container:before {
    content: '';
    position: absolute;
    left: 79px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e74c3c, #2c3e50);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
}

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

.timeline-marker {
    position: relative;
    width: 70px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #e74c3c;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #e74c3c;
    z-index: 2;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: #e74c3c;
    margin-top: -1px;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.timeline-item:last-child .timeline-content {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-time {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-details h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.timeline-icons span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
}

.timeline-icons i {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accordion-button {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .day-summary {
        width: 100%;
        justify-content: space-between;
    }
    
    .day-highlights {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .timeline-container {
        padding: 30px 20px;
    }
    
    .timeline-container:before {
        left: 35px;
    }
    
    .timeline-marker {
        width: 35px;
    }
    
    .timeline-content {
        padding-left: 20px;
    }
    
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .day-title {
        font-size: 1.1rem;
    }
}

/* Animation for accordion */
.accordion-collapse {
    transition: all 0.3s ease;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
    outline: none;
}

/* Hover effects */
.timeline-item:hover .marker-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px #e74c3c;
}

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

.timeline-content {
    transition: transform 0.3s ease;
}
    .package-details-wrapper {
        background: #f8f9fa;
    }
    
    .package-main-thumb {
        position: relative;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .package-main-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .package-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #e74c3c;
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .package-price-overlay {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .package-price-overlay span {
        display: block;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .package-price-overlay h3 {
        color: #e74c3c;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
        line-height: 1;
    }
    
    .package-price-overlay small {
        color: #999;
        font-size: 0.8rem;
    }
    
    .package-header {
        margin-bottom: 20px;
    }
    
    .package-title {
        color: #2c3e50;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .package-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        color: #666;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.95rem;
    }
    
    .meta-item i {
        color: #e74c3c;
    }
    
    /* Tab Navigation */
    .package-tabs {
        margin-bottom: 30px;
    }
    
    .nav-tabs {
        border-bottom: 2px solid #dee2e6;
        gap: 5px;
    }
    
    .nav-tabs .nav-link {
        border: none;
        border-bottom: 3px solid transparent;
        color: #666;
        font-weight: 500;
        padding: 12px 20px;
        border-radius: 8px 8px 0 0;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-tabs .nav-link i {
        font-size: 1.1rem;
    }
    
    .nav-tabs .nav-link:hover {
        color: #e74c3c;
        background: #f8f9fa;
    }
    
    .nav-tabs .nav-link.active {
        color: #e74c3c;
        background: white;
        border-color: #e74c3c;
    }
    
    /* Tab Content */
    .tab-content-section {
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    
    .section-title {
        color: #2c3e50;
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e74c3c;
    }
    
    .section-subtitle {
        color: #2c3e50;
        font-size: 1.3rem;
        margin: 25px 0 15px;
    }
    
    /* Overview Tab */
    .highlight-list {
        list-style: none;
        padding-left: 0;
    }
    
    .highlight-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
        display: flex;
        align-items: flex-start;
    }
    
    .highlight-list i {
        color: #27ae60;
        margin-right: 10px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    
    .feature-box {
        text-align: center;
        padding: 20px 10px;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-5px);
    }
    
    .feature-box i {
        font-size: 2rem;
        color: #e74c3c;
        margin-bottom: 10px;
    }
    
    .feature-box h5 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: #2c3e50;
    }
    
    .feature-box p {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
    }
    
    /* Itinerary Tab */
    .itinerary-timeline {
        position: relative;
        padding-left: 30px;
    }
    
    .itinerary-timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #e74c3c;
    }
    
    .itinerary-day {
        position: relative;
        margin-bottom: 40px;
    }
    
    .itinerary-day:last-child {
        margin-bottom: 0;
    }
    
    .itinerary-day:before {
        content: '';
        position: absolute;
        left: -36px;
        top: 0;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #e74c3c;
        border: 3px solid white;
        box-shadow: 0 0 0 3px #e74c3c;
    }
    
    .day-header {
        margin-bottom: 20px;
    }
    
    .day-number {
        display: inline-block;
        background: #e74c3c;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        /*font-size: 0.9rem;*/
        margin-right: 10px;
        text-align:center;
    }
    
    .day-header h4 {
        display: inline-block;
        margin: 0;
        color: #2c3e50;
        font-size: 1.4rem;
    }
    
    .timeline-item {
        margin-bottom: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        padding: 15px;
        position: relative;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-time {
        display: inline-block;
        background: #2c3e50;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .timeline-content h5 {
        color: #2c3e50;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Gallery Tab */
    .gallery-item {
        position: relative;
        display: block;
        border-radius: 10px;
        overflow: hidden;
        height: 200px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(231, 76, 60, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-overlay i {
        color: white;
        font-size: 2rem;
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    .video-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Location Tab */
    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .location-list {
        list-style: none;
        padding-left: 0;
    }
    
    .location-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
        color: #666;
    }
    
    .location-list li strong {
        color: #2c3e50;
        display: inline-block;
        width: 160px;
    }
    
    .weather-card {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 20px;
        border-radius: 10px;
    }
    
    .weather-icon i {
        font-size: 3rem;
        margin-right: 20px;
    }
    
    .weather-details h5 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .weather-details p {
        margin: 0;
        opacity: 0.9;
    }
    
    /* Inclusions Tab */
    .inclusion-card, .exclusion-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        height: 100%;
    }
    
    .inclusion-card .card-header {
        background: #27ae60;
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .exclusion-card .card-header {
        background: #e74c3c;
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .card-header i {
        font-size: 1.5rem;
    }
    
    .card-header h4 {
        margin: 0;
        font-size: 1.3rem;
    }
    
    .card-body {
        padding: 20px;
        background: white;
    }
    
    .card-body ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    
    .card-body li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
        display: flex;
        align-items: flex-start;
    }
    
    .card-body li:last-child {
        border-bottom: none;
    }
    
    .card-body li i {
        margin-right: 10px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    
    .inclusion-card li i {
        color: #27ae60;
    }
    
    .exclusion-card li i {
        color: #e74c3c;
    }
    
    .notes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .note-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
    }
    
    .note-item i {
        color: #e74c3c;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .note-item h5 {
        margin: 0 0 5px;
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .note-item p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
    }
    
    /* Sidebar Styles */
    .package-sidebar {
        position: sticky;
        top: 100px;
    }
    
    .booking-widget {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .widget-header {
        background: #2c3e50;
        color: white;
        padding: 20px;
        margin: 0;
    }
    
    .widget-header h3, .widget-header h4 {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .widget-body {
        padding: 20px;
    }
    
    .price-summary {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 15px;
    }
    
    .price-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #ddd;
        color: #666;
    }
    
    .price-total {
        display: flex;
        justify-content: space-between;
        padding: 12px 0 0;
        margin-top: 8px;
        border-top: 2px solid #ddd;
        font-weight: 600;
        color: #2c3e50;
        font-size: 1.1rem;
    }
    
    .total-amount {
        color: #e74c3c;
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #2c3e50;
        font-weight: 500;
    }
    
    .counter-input {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .counter-btn {
        background: #f8f9fa;
        border: none;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .counter-btn:hover {
        background: #e9ecef;
    }
    
    .counter-value {
        flex: 1;
        border: none;
        text-align: center;
        height: 40px;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .btn-book-now {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        color: white;
        border: none;
        padding: 15px;
        width: 100%;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: transform 0.3s ease;
    }
    
    .btn-book-now:hover {
        transform: translateY(-2px);
        color: white;
    }
    
    .secure-booking {
        text-align: center;
        margin-top: 15px;
        color: #27ae60;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .quick-contact {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-header {
        background: #2c3e50;
        color: white;
        padding: 15px 20px;
    }
    
    .contact-body {
        padding: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px dashed #eee;
    }
    
    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .contact-item i {
        color: #e74c3c;
        font-size: 1.3rem;
        width: 30px;
        text-align: center;
    }
    
    .contact-item span {
        display: block;
        color: #666;
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .contact-item h5 {
        margin: 0;
        color: #2c3e50;
        font-size: 1rem;
    }
    
    .tour-list {
        margin-top: 15px;
    }
    
    .tour-item {
        display: flex;
        align-items: center;
        padding: 15px;
        margin-bottom: 10px;
        background: #f8f9fa;
        border-radius: 10px;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }
    
    .tour-item:hover {
        background: #e9ecef;
        transform: translateX(5px);
    }
    
    .tour-item img {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        object-fit: cover;
        margin-right: 15px;
    }
    
    .tour-info h5 {
        font-size: 0.95rem;
        margin: 0 0 5px;
        color: #2c3e50;
    }
    
    .tour-info p {
        margin: 0;
        color: #666;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .tour-info strong {
        color: #e74c3c;
    }