/* Custom Styles for Start Project Page */

.start-project-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.start-project-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.1;
}
.start-project-hero .container {
    position: relative;
    z-index: 2;
}
.start-project-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}
.start-project-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.sp-form-container {
    max-width: 900px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 10;
}

.sp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    padding: 3rem;
    border: 1px solid var(--border);
}

.ref-project-banner {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ref-project-banner .icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.ref-project-banner h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}
.ref-project-banner strong {
    color: var(--dark);
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.form-section-title span {
    background: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control-lg {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
}
.form-control-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 97, 242, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
