/* Planning Banner Styles */
.planning-banner {
    background: linear-gradient(to right, rgba(30, 42, 58, 0.9), rgba(74, 85, 104, 0.9));
    padding: 2.5rem 0;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.planning-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="rgba(160,174,192,0.05)" d="M25,25 L75,25 L75,75 L25,75 Z" /></svg>');
    background-size: 20px 20px;
    opacity: 0.2;
}

.planning-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.planning-text {
    flex: 2;
    color: white;
}

.planning-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.planning-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #a0aec0; /* Removed gold */
}

.planning-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.planning-points {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #a0aec0; /* Removed gold */
}

.planning-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.planning-point:last-child {
    margin-bottom: 0;
}

.planning-point i {
    color: #a0aec0; /* Removed gold */
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.planning-cta {
    display: inline-block;
    background-color: #4a5568; /* Removed gold */
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 0.5rem;
}

.planning-cta:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .planning-content {
        flex-direction: column;
    }
    
    .planning-text, .planning-points {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .planning-banner {
        padding: 2rem 0;
    }
    
    .planning-text h3 {
        font-size: 1.5rem;
    }
    
    .planning-text p {
        font-size: 1rem;
    }
}
