/* ==============================================
   KOMBİ FİYATLARI SAYFASI — kombi-fiyatlari.css
   ============================================== */

/* ---- Uyarı Banner ---- */
.price-notice-bar {
    background: #fff8e1;
    border-bottom: 1px solid #ffe082;
    padding: 12px 0;
}
.price-notice-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #7a5c00;
}
.price-notice-bar i {
    color: #f59e0b;
    font-size: 15px;
    flex-shrink: 0;
}
.price-notice-bar a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
}

/* ---- Faktörler ---- */
.kf-factors-section {
    background: var(--white);
}

.kf-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kf-factor-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.kf-factor-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 28px rgba(0,157,226,.1);
    transform: translateY(-4px);
}

.kf-factor-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--blue);
}

.kf-factor-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.kf-factor-card p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin: 0;
}

/* ---- Marka Kartları ---- */
.kf-brands-section {
    background: var(--bg);
}

.kf-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.kf-brand-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.kf-brand-card:hover {
    box-shadow: 0 16px 48px rgba(0,157,226,.13);
    transform: translateY(-6px);
    border-color: var(--blue);
}

.kf-brand-card--featured {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0,157,226,.15);
}

.kf-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.kf-brand-logo {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--border);
}
.kf-brand-logo img {
    width: 120px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.kf-brand-info {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.kf-brand-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.kf-brand-desc {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin: 0;
}

.kf-specs {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.kf-specs li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-2);
}
.kf-specs li i {
    color: var(--blue);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.kf-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.kf-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kf-price-label {
    font-size: 11px;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.kf-price-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--blue);
}

.kf-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--r-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--ease), transform var(--ease);
}
.kf-cta-btn:hover {
    background: #0081c0;
    transform: translateY(-1px);
}
.kf-brand-card--featured .kf-cta-btn {
    background: var(--red);
}
.kf-brand-card--featured .kf-cta-btn:hover {
    background: #c20010;
}

/* ---- Neden Gökdemir ---- */
.kf-why-section {
    background: var(--white);
}

.kf-why-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
}

.kf-why-text .section-tag { margin-bottom: 10px; display: inline-block; }
.kf-why-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    line-height: 1.25;
}
.kf-why-text h2 span { color: var(--blue); }
.kf-why-text > p {
    font-size: 15.5px;
    color: var(--text-2);
    line-height: 1.75;
    margin: 0 0 24px;
}

.kf-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.kf-why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.kf-why-list li i {
    color: var(--blue);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.kf-why-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kf-why-list li strong {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
}
.kf-why-list li span {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.55;
}

.kf-why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.kf-stat {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.kf-stat:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(0,157,226,.1);
}
.kf-stat strong {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.kf-stat span {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
}

/* ---- SSS ---- */
.kf-faq-section {
    background: var(--bg);
}
.kf-faq-section .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .kf-factors-grid { grid-template-columns: repeat(2, 1fr); }
    .kf-brand-grid   { grid-template-columns: repeat(2, 1fr); }
    .kf-why-grid     { grid-template-columns: 1fr; gap: 40px; }
    .kf-why-stats    { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
    .kf-factors-grid { grid-template-columns: 1fr; }
    .kf-brand-grid   { grid-template-columns: 1fr; }
    .kf-why-stats    { grid-template-columns: repeat(2, 1fr); }
    .kf-brand-logo img { width: 100px; height: 80px; }
    .price-notice-bar .container { font-size: 12.5px; }
}
