/* =========================================================================
 * INFO CARDS — Tour info cards & booking form cards
 * ========================================================================= */

/* --- Tour Info Cards --- */
.tc-info-cards-section {
    margin-top: 20px;
}

.tc-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.tc-info-card {
    background: var(--tc-card-bg, #fff8f0);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.tc-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.tc-info-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.tc-info-card-icon .fa {
    font-size: 20px;
    color: #374151;
}

.tc-info-card-body {
    flex: 1;
    min-width: 0;
}

.tc-info-card-label {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.tc-info-card-text {
    margin: 0;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
}

/* --- Booking Form Cards (compact) --- */
.tc-booking-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.tc-booking-card {
    background: var(--tc-card-bg, #e8f4fd);
    border-radius: 8px;
    padding: 2px 4px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 180ms ease;
}

.tc-booking-card:hover {
    transform: translateX(2px);
}

.tc-booking-card-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

.tc-booking-card-icon .fa {
    font-size: 14px;
    color: #374151;
}

.tc-booking-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.tc-booking-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.tc-booking-card-text {
    font-size: 0.72rem;
    color: #6b7280;
    line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .tc-info-cards-grid {
        grid-template-columns: 1fr;
    }
}