/* Plan Your Trip Section */

.plan-your-trip {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1ff 100%);
    padding: 6rem 0;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.plan-step {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.plan-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0066cc, #00d4ff);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.plan-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .plan-your-trip {
        padding: 4rem 0;
    }

    .plan-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-step {
        padding: 2rem 1.5rem;
    }
}
