.itinerary-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    overflow: visible !important;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
    width: 100%;
}

.itinerary-card {
    display: flex;
    justify-content: center;
    position: relative;
}

.itinerary-pill {
    background: #ffffff;
    border-radius: 120px;
    /* Compact rounding */
    padding: 0.8rem;
    width: 100%;
    max-width: 190px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    min-height: 400px;
    /* Consistent height for all cards */
    justify-content: space-between;
}

.pill-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.8rem;
    border: 4px solid #f9f9f9;
}

.image-bottom .pill-image {
    margin-bottom: 0;
    margin-top: 0.8rem;
}

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

.pill-content {
    padding: 0 0.5rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-bottom .pill-content {
    padding: 1rem 0.5rem 0;
}

.day-label {
    display: inline-block;
    background-color: #4a6741;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pill-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pill-list li {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #000;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.recommend-badge {
    font-size: 0.55rem;
    font-weight: 800;
    color: #c4a484;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Connecting Arrows (Optional - might be too crowded in 6 col) */
.itinerary-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #c4a484;
    opacity: 0.4;
    z-index: 5;
}

/* Responsive */
@media (max-width: 1200px) {
    .itinerary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .itinerary-pill {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-card::after {
        display: none;
    }
}