/* Proje Başlat Formu - Minimal Modern Tasarım */

* {
    box-sizing: border-box;
}

.proje-baslat-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
}

.proje-baslat-form {
    background: #000000;
    padding: 0;
}

/* Progress */
.progress-container {
    margin-bottom: 60px;
}

.step-indicator {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #888888;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 1px;
    transition: width 0.3s ease;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #333333;
    border-radius: 8px;
    font-size: 16px;
    background: #111111;
    color: #ffffff;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
}

.form-input::placeholder {
    color: #666666;
}

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

/* Character Counter */
.character-counter {
    margin-top: 8px;
    font-size: 12px;
    color: #666666;
    text-align: right;
}

.character-counter.valid {
    color: #22c55e;
}

.character-counter.invalid {
    color: #ef4444;
}

/* Phone Info */
.phone-info {
    margin-top: 6px;
    font-size: 12px;
    color: #666666;
}

/* Project Types Grid */
.project-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.project-type-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-type-card:hover {
    background: #1a1a1a;
    border-color: #333333;
}

.project-type-card.selected {
    background: #1a1a1a;
    border-color: #ffffff;
}

.project-type-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-type-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.project-type-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 16px;
}

.nav-button {
    padding: 12px 24px;
    border: 1px solid #333333;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.nav-button.back {
    background: transparent;
    color: #cccccc;
}

.nav-button.back:hover {
    background: #111111;
    color: #ffffff;
}

.nav-button.next {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.nav-button.next:hover {
    background: #f0f0f0;
}

.nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-button:disabled:hover {
    background: #ffffff;
    color: #000000;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    margin-top: 20px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #22c55e;
}

.success-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.success-text {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Loading */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #333333;
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Styles */
.form-input.error {
    border-color: #ef4444;
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .proje-baslat-container {
        padding: 20px 16px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .project-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .project-type-card {
        padding: 20px 12px;
    }
    
    .project-type-icon {
        width: 50px;
        height: 50px;
    }
    
    .project-type-icon img {
        width: 40px;
        height: 40px;
    }
    
    .form-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .proje-baslat-container {
        padding: 16px 12px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .project-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .project-type-name {
        font-size: 13px;
    }
}