.overview-main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.overview-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.top-destinations{
    background: #fff;
}
.top-destinations p{
    color: #757575;
    line-height: 1.5;
    text-align: justify;
}
.price-card {
    background: linear-gradient(135deg, #da5816 0%, #d46918 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
}
.price-card p{
    color: #fff;
}
.itinerary-day {
    border-top: 3px solid #cb3f07;
    padding: 20px;
    /*margin-bottom: 30px;*/
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
}
.day-number {
    background: #cb3f07;
    color: white;
    width: max-content;
    height: max-content;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: bold;
    padding: 5px 20px;
    animation: blink 5s infinite;
}
@keyframes blink{
    0%{
        box-shadow: 0px 0px  10px #343434;
    }
    25%{
        box-shadow: 0px 0px  10px #272727;
    }
    50%{
        box-shadow: 0px 0px  10px #000;
    }
    75%{
        box-shadow: 0px 0px  10px #f9f9f9;
    }
    100%{
        box-shadow: 0px 0px  10px #343434;
    }
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s;
}
.faq-toggle {
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}
.inclusion-card {
    border-left: 4px solid rgb(25 135 84);
    padding-left: 15px;
    margin-bottom: 20px;
}
.exclusion-card {
    border-left: 4px solid #dc3545;
    padding-left: 15px;
    margin-bottom: 20px;
}
.seo-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.seo-section h2 {
    color: #0078ff;
    margin-bottom: 20px;
}
.text-primary {
    color: rgb(203 63 7) !important;
}
.bg-primary {
    background-color: rgb(203 63 7) !important;
}
.itin ul, .itin ol{
    list-style-type: disclosure-closed;
    padding-left: 23px;
    margin: 10px 0;
}