.footer-top-content .ft-item {
    width:25%
}
.divider {
    height: 65px;
}
.thumb img-1{
    position: absolute;
    top:120px;
}

.featured-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    width: 100%;
    height: 300px;
    background: #fff;
    transition:
            box-shadow 0.4s ease,
            transform 0.4s ease;
}

.featured-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

/* Why Choose Custom Styling */
.why-choose-list {
    margin-top: 20px;
}

.why-choose-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s ease;
    border: 1px solid #e4e4e4;
}

.why-choose-item:hover {
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.why-choose-icon {
    background: #eaf7ef;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.why-choose-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-left: 48px; /* aligns text neatly under title */
}
.featured-destination-card::after{
    display: none;
}
.featured-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Image stays normal, no zoom */
.featured-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none; /* remove zoom effect */
}

/* Overlay hidden by default */
.featured-destination-card .overlay-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-destination-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

/* Overlay text */
.overlay-content p {
    color: #d1fae5;
    margin-bottom: 4px;
}

.overlay-content h4 {
    color: #fff;
    margin: 0;
}
.featured-destination {
    background: #2b2f33;
}

/* Card */
.featured-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    width:400px;
    height:300px;
    border: 1px solid #eee;
}

/* Image */
.featured-destination-card img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Dark overlay */
.featured-destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Overlay text */
* Overlay content default position (bottom-left) */
.overlay-content {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    opacity: 0;
    transform: translate(0, 0);
    transition: all 0.5s ease;
    z-index: 2;
}

/* Show overlay */
.featured-destination-card:hover .overlay-content {
    opacity: 1;
    justify-content: flex-start;
    align-items: flex-end;
}

/* Slight slide animation */
.featured-destination-card:hover .overlay-content h4,
.featured-destination-card:hover .overlay-content p {
    transform: translateY(0);
}

/* Optional spacing alignment */
.overlay-content p {
    margin-bottom: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

.overlay-content h4 {
    margin: 0;
    font-size: 22px;
}


/* Hover Effects */
.featured-destination-card:hover::after {
    opacity: 1;
}

.featured-destination-card:hover .overlay-content {
    opacity: 1;
}

.featured-destination-card:hover img {
    transform: scale(1.05);
}
.featured-destination-card::after,
.featured-destination-card .overlay-content{
    display:none;
}

.tour-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 4rem 2rem;
    margin-bottom: 2.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.tour-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tour-title {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tour-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.tour-hero {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    position: relative;
    width: 65%;
}

.tour-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-hero:hover img {
    transform: scale(1.03);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.price-item:last-child {
    border-bottom: none;
}

.price-amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.location-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.accordion-button {
    font-weight: 600;
    background-color: rgba(42, 110, 63, 0.05);
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(42, 110, 63, 0.1);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(42, 110, 63, 0.2);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.itinerary-day {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed #dee2e6;
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.day-number {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.hotel-badge {
    background-color: rgba(42, 110, 63, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.service-included, .service-excluded {
    padding: 0.5rem 0;
}

.service-included i {
    color: var(--primary);
    margin-right: 0.7rem;
}

.service-excluded i {
    color: var(--gray);
    margin-right: 0.7rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 15px;
    padding: 3rem;
    color: white;
    text-align: center;
    margin-top: 4rem;
}

.btn-book {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-book:hover {
    background-color: #e0a325;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.note-box {
    background-color: rgba(248, 183, 57, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 1.2rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .tour-title {
        font-size: 2.5rem;
    }

    .tour-hero img {
        height: 300px;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }
}
.price-card .location-card {
    padding: 0.8rem;
}

.price-card .location-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}



