.arabuluculuk-hesaplama-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.arabuluculuk-container {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.3);
}

.arabuluculuk-header {
    text-align: center;
    margin-bottom: 35px;
}

.arabuluculuk-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.arabuluculuk-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

.arabuluculuk-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #8B0000;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #718096;
    font-size: 13px;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    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='%238B0000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.hesapla-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    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(139, 0, 0, 0.3);
}

.hesapla-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.hesapla-button:active {
    transform: translateY(-1px);
}

.hesapla-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loader {
    font-size: 20px;
}

/* Sonuç Alanı */
.hesaplama-result {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 35px;
    margin-top: 25px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hesaplama-result h3 {
    font-size: 28px;
    color: #8B0000;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.result-box {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.result-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
}

.result-amount {
    font-size: 42px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.result-details {
    background: #f7fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.result-details h4 {
    color: #8B0000;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hesaplama-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.hesaplama-table th {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.hesaplama-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.hesaplama-table tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    background: #fff3f3;
}

.hesaplama-table tr:hover td {
    background: #fef5f5;
}

.result-info {
    background: #fff3cd;
    border-left: 4px solid #DC143C;
    padding: 15px;
    border-radius: 8px;
}

.result-info p {
    margin: 0 0 10px 0;
    color: #856404;
    font-weight: 600;
}

.result-info ul {
    margin: 0;
    padding-left: 20px;
}

.result-info li {
    color: #856404;
    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;
    font-weight: 700;
}

.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;
    margin-bottom: 25px;
}

.whatsapp-button,
.email-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;
}

.email-button {
    background: #8B0000;
    color: white;
}

.email-button:hover {
    background: #DC143C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    color: white;
}

/* Bilgilendirme */
.info-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.info-section h4 {
    color: #8B0000;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-section p {
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-section ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.info-section li {
    color: #2d3748;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.info-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
    font-size: 18px;
}

/* 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) {
    .arabuluculuk-hesaplama-wrapper {
        padding: 10px;
    }
    
    .arabuluculuk-container {
        padding: 25px;
        border-radius: 16px;
    }
    
    .arabuluculuk-title {
        font-size: 26px;
    }
    
    .arabuluculuk-subtitle {
        font-size: 14px;
    }
    
    .arabuluculuk-form {
        padding: 25px;
    }
    
    .result-main {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .result-amount {
        font-size: 32px;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .hesaplama-table {
        font-size: 14px;
    }
    
    .hesaplama-table th,
    .hesaplama-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .arabuluculuk-container {
        padding: 20px;
    }
    
    .arabuluculuk-title {
        font-size: 22px;
    }
    
    .result-amount {
        font-size: 28px;
    }
    
    .hesaplama-table {
        font-size: 12px;
    }
}

/* 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); }
}

/* Tutar Formatı */
.tutar-format {
    font-family: 'Courier New', monospace;
    font-weight: 700;
}