/* Colors and header styles should remain in index.html to avoid flicker */

/* Form Section */
.form-section {
    position: relative;
    z-index: 1;
    margin-top: -8px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 12px rgba(103, 197, 233, 0.1);
    overflow: hidden;
}

.form-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://res.cloudinary.com/dbtcg826q/image/upload/v1770053800/common/sp-buckets/img/lnusa-bg.webp') center/cover no-repeat;
}

.form-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.form-container {
    position: relative;
    z-index: 2;
}

/* Cityscape Overlay - hidden so only the background image shows */
.cityscape-overlay {
    display: none;
}

.cityscape-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

#form-frame {
    position: relative;
    z-index: 3;
}

.building {
    transition: filter 0.3s ease;
}

.building:hover {
    filter: brightness(1.1);
}

.building-light {
    animation: twinkle 5s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes slowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Tablet and up */
@media (min-width: 768px) {
    .cityscape-svg {
        opacity: 0.8;
    }
    
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .step {
        padding: 2rem;
    }
    
    .steps-main-title {
        font-size: 2.5rem;
    }
}


.steps-section {
    background: #ffffff;
    position: relative;
}

.step {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 197, 233, 0.15);
}

.step-icon {
    background: var(--color-primary);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(103, 197, 233, 0.3);
}

.step-title {
    color: #444e57;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--color-secondary);
    line-height: 1.6;
}

.steps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-main-title {
    color: #444e57;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.steps-subtitle {
    color: var(--color-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.site-footer {
    background: var(--color-primary);
    color: #ffffff;
}

.site-footer .footer-info,
.site-footer .footer-info p,
.site-footer #footer-company,
.site-footer #footer-address,
.site-footer .copyright {
    color: #ffffff;
}

.footer-links a {
    color: #e2e8f0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}
