/* Austria Yetim Eli - Ana sayfa: Hızlı Bağış + Zekat Hesaplama panelleri */

.qd-section {
    padding: 0;
}

.qd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.qd-panel {
    padding: 60px 55px;
}

.qd-panel--light {
    background: #e8f0e9;
}

.qd-panel--dark {
    background: #0d3b26;
}

.qd-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e2703a;
    margin-bottom: 14px;
}

.qd-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #0f2d1e;
}

.qd-panel--dark .qd-title {
    color: #ffffff;
}

.qd-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #40614f;
    margin-bottom: 26px;
    max-width: 44ch;
}

.qd-panel--dark .qd-desc {
    color: rgba(255, 255, 255, 0.78);
}

/* --- Bullets --- */
.qd-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qd-bullets li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #274f3a;
}

.qd-bullets i {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0b7c41;
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Nisap / oran istatistikleri --- */
.qd-stats {
    display: flex;
    gap: 55px;
    margin-bottom: 34px;
}

.qd-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 6px;
}

.qd-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

/* --- Beyaz form kartı --- */
.qd-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.qd-field-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.qd-field-label + .qd-field-label,
.qd-card .qd-field-label:not(:first-child) {
    margin-top: 20px;
}

.qd-select,
.qd-input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fbfaf7;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -moz-appearance: textfield;
}

.qd-input::-webkit-outer-spin-button,
.qd-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qd-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 46px;
    cursor: pointer;
}

.qd-select:focus,
.qd-input:focus {
    border-color: #0b7c41;
    box-shadow: 0 0 0 3px rgba(11, 124, 65, 0.12);
}

.qd-input::placeholder {
    color: #a8b3c1;
    font-weight: 500;
}

.qd-input-money {
    position: relative;
}

.qd-input-money .qd-cur {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #a8b3c1;
    pointer-events: none;
}

.qd-input-money .qd-input {
    padding-left: 38px;
}

/* --- Hazır tutarlar --- */
.qd-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.qd-preset {
    padding: 15px 6px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.25s ease;
}

.qd-preset:hover {
    border-color: #0b7c41;
    color: #0b7c41;
}

.qd-preset.active {
    background: #0b7c41;
    border-color: #0b7c41;
    color: #fff;
    box-shadow: 0 8px 18px rgba(11, 124, 65, 0.22);
}

/* --- Sonuç kutusu (zekat) --- */
.qd-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #e8f0e9;
}

.qd-result-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #274f3a;
}

.qd-result-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b7c41;
}

/* --- CTA --- */
.qd-btn {
    width: 100%;
    margin-top: 22px;
    padding: 17px;
    border: none;
    border-radius: 12px;
    background: #e2703a;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(226, 112, 58, 0.28);
}

.qd-btn:hover {
    background: #cf5f2b;
    transform: translateY(-2px);
}

.qd-btn.is-added {
    background: #0b7c41;
    box-shadow: 0 10px 24px rgba(11, 124, 65, 0.28);
}

.qd-note {
    margin-top: 14px;
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
}

.qd-note a {
    color: #0b7c41;
    font-weight: 700;
}

.qd-warn {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff7ed;
    color: #b45309;
    font-size: 0.82rem;
    font-weight: 600;
    display: none;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .qd-grid {
        grid-template-columns: 1fr;
    }
    .qd-panel {
        padding: 45px 25px;
    }
    .qd-title {
        font-size: 1.7rem;
    }
    .qd-stats {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .qd-presets {
        grid-template-columns: repeat(2, 1fr);
    }
    .qd-card {
        padding: 20px;
    }
}
