.travel-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    margin-bottom: 4rem;
}
.travel-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.travel-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

@media (max-width: 1024px) {
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .travel-grid {
        grid-template-columns: 1fr;
    }
}

.travel-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.travel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.travel-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}
.travel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.travel-card:hover .travel-img {
    transform: scale(1.08);
}

.travel-caption {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.travel-item-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
    line-height: 1.2;
}
.travel-item-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}
