.best-tours-section {
    padding: 80px 20px;
    margin: 0;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    color: #0066CC;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header h1::after {
    content: '';
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.header p {
    color: #333;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-style: italic;
}

.tours-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.tour-item {
    flex: 1;
    min-width: 380px;
    max-width: 420px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.tour-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.tour-image {
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.tour-image:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tour-details {
    padding: 30px;
}

.tour-details h2 {
    color: #0066CC;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    line-height: 1.2;
}

.tour-info p {
    color: #555;
    font-size: 18px;
    margin-bottom: 15px;
}

.tour-info strong {
    color: #333;
    font-weight: 600;
}

.tour-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tour-info ul li {
    color: #555;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.2;
}

.tour-info ul li:before {
    content: "✔";
    color: #0066CC;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 20px;
}

.review-count {
    color: #777;
    font-size: 16px;
}

.book-tour-btn {
    background: linear-gradient(90deg, #0066CC 0%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 18px; 
    font-weight: 600;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

.book-tour-btn:hover {
    background: linear-gradient(90deg, #0033A0 0%);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.8em;
    }

    .header p {
        font-size: 18px;
    }

    .tour-item {
        min-width: 100%;
        max-width: 100%;
    }

    .tour-details h2 {
        font-size: 2em;
    }

    .tour-image img {
        height: 240px;
    }
}