.dava-quiz-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.quiz-container {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.3);
    overflow: hidden;
    min-height: 500px;
}

.quiz-screen {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease-in;
}

.quiz-screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Başlangıç Ekranı */
.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

.quiz-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quiz-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.quiz-benefits {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
}

.quiz-button {
    width: 100%;
    padding: 18px;
    background: white;
    color: #8B0000;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quiz-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Soru Ekranı */
.quiz-progress {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.progress-bar {
    height: 12px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B0000 0%, #DC143C 100%);
    border-radius: 20px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

.question-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 35px;
}

.question-title {
    font-size: 24px;
    color: #8B0000;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.options-grid {
    display: grid;
    gap: 15px;
}

.option-button {
    padding: 20px;
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    position: relative;
    overflow: hidden;
}

.option-button:hover {
    border-color: #DC143C;
    background: rgba(220, 20, 60, 0.05);
    transform: translateX(5px);
}

.option-button.selected {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border-color: #8B0000;
    color: white;
    transform: scale(1.02);
}

.option-emoji {
    font-size: 24px;
    margin-right: 12px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.nav-button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-back {
    background: #e2e8f0;
    color: #2d3748;
}

.btn-back:hover {
    background: #cbd5e0;
}

.btn-next {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sonuç Ekranı */
.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.result-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 35px;
}

.result-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    color: white;
}

.result-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.result-type {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-description {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.result-details {
    background: #f7fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.detail-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item strong {
    display: block;
    color: #8B0000;
    font-size: 16px;
    margin-bottom: 8px;
}

.detail-item span {
    color: #2d3748;
    font-size: 15px;
}

.detail-item ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.detail-item li {
    color: #2d3748;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Lead Form */
.lead-form {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 3px solid #DC143C;
}

.lead-form h4 {
    color: #8B0000;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.lead-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

/* İletişim Butonları */
.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.whatsapp-button,
.call-button {
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: block;
}

.whatsapp-button {
    background: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

.call-button {
    background: #8B0000;
    color: white;
}

.call-button:hover {
    background: #DC143C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    color: white;
}

/* Başarı Mesajı */
.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dava-quiz-wrapper {
        padding: 10px;
    }
    
    .quiz-container {
        border-radius: 16px;
    }
    
    .quiz-screen {
        padding: 25px;
    }
    
    .quiz-title {
        font-size: 28px;
    }
    
    .quiz-subtitle {
        font-size: 16px;
    }
    
    .question-title {
        font-size: 20px;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .result-type {
        font-size: 22px;
    }
    
    .result-icon {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .quiz-title {
        font-size: 24px;
    }
    
    .question-container {
        padding: 25px;
    }
    
    .option-button {
        padding: 15px;
        font-size: 15px;
    }
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(139, 0, 0, 0.1);
    border-top-color: #8B0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}