/* Form / Lead Capture Section */
.form-section {
    background-color: var(--bg-dark-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.form-content {
    max-width: 800px;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Form Layout */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
    color: #25D366;
    flex-shrink: 0;
}

/* Input Styles */
.lead-form input,
.lead-form select,
.lead-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.lead-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.lead-form select option {
    background: #1a1a1a;
    color: var(--text-main);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px var(--brand-green-glow);
}

.lead-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.form-submit-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: -0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .form-submit-btn {
        align-self: stretch;
    }
}
