/* ============================================================
   CAR TEKLİF — ANASAYFA: Hizmet Kartları + Sıkça Sorulan Sorular
   ============================================================ */

:root {
    --hc-blue: #0EA5F0;
    --hc-blue-600: #0B8FD8;
    --hc-navy: #0B2440;
    --hc-light: #EAF6FE;
    --hc-ink: #0B2440;
    --hc-muted: #5b6b7d;
    --hc-line: #e6ecf3;
    --hc-grad: linear-gradient(120deg, #0EA5F0 0%, #0B2440 100%);
}

/* ===================== HİZMET KARTLARI (premium) ===================== */
.hsc {
    background: #ffffff;
    padding: 60px 0;
}
.hsc__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hsc-card {
    position: relative;
    display: block;
    background: #eef1f6;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    min-height: 184px;
    box-shadow: 0 6px 20px rgba(11, 36, 64, 0.05);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s;
}
.hsc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(11, 36, 64, 0.11);
}

/* Şeffaf araç görseli — kartın tabanına oturur, hafif gölgeli */
.hsc-card__img {
    position: absolute;
    right: -2%;
    bottom: 0;
    width: 50%;
    height: 88%;
    z-index: 1;
}
.hsc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 9px 11px rgba(11, 36, 64, 0.16));
    transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right bottom;
}
.hsc-card:hover .hsc-card__img img { transform: scale(1.05); }

/* Metin (solda, görselle çakışmaz) */
.hsc-card__text {
    position: relative;
    z-index: 2;
    padding: 22px 22px;
    max-width: 48%;
    min-height: 184px;
    display: flex;
    flex-direction: column;
}
.hsc-card__tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hc-blue-600);
    margin-bottom: 9px;
}
.hsc-card__title {
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--hc-ink);
    line-height: 1.28;
    letter-spacing: -0.01em;
    margin: 0;
}
.hsc-card__link {
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hc-blue-600);
}
.hsc-card__link i { transition: transform .25s; font-size: 0.82em; }
.hsc-card:hover .hsc-card__link i { transform: translateX(4px); }

/* ===================== SIKÇA SORULAN SORULAR ===================== */
.hfaq {
    background: #fff;
    padding: 80px 0;
}
.hfaq__grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 56px;
    align-items: start;
}

.hfaq__intro { position: sticky; top: 96px; }
.hfaq__tag {
    display: inline-block;
    background: var(--hc-light);
    color: var(--hc-blue-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.hfaq__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--hc-ink);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin: 0 0 14px;
}
.hfaq__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hc-muted);
    margin: 0 0 26px;
    max-width: 380px;
}
.hfaq__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--hc-blue-600);
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(14, 165, 240, 0.26);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.hfaq__cta:hover {
    background: var(--hc-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11, 36, 64, 0.24);
}

.hfaq__list { display: flex; flex-direction: column; gap: 14px; }
.hfaq-item {
    border: 1.5px solid var(--hc-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: border-color .25s, box-shadow .25s;
}
.hfaq-item:hover { border-color: rgba(14, 165, 240, 0.3); }
.hfaq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 20px 22px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--hc-ink);
    cursor: pointer;
    transition: color .2s;
}
.hfaq-q i {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--hc-light);
    color: var(--hc-blue-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform .3s, background .25s, color .25s;
}
.hfaq-q[aria-expanded="true"] { color: var(--hc-blue-600); }
.hfaq-q[aria-expanded="true"] i {
    transform: rotate(135deg);
    background: var(--hc-grad);
    color: #fff;
}
.hfaq-a {
    padding: 0 22px 20px;
    color: var(--hc-muted);
    font-size: 14.5px;
    line-height: 1.75;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .hsc__grid { grid-template-columns: 1fr; gap: 18px; }
    .hsc-card { max-width: 620px; margin: 0 auto; width: 100%; }
    .hfaq__grid { grid-template-columns: 1fr; gap: 32px; }
    .hfaq__intro { position: static; }
}
@media (max-width: 767px) {
    .hsc { padding: 48px 0; }
    .hfaq { padding: 56px 0; }
}
@media (max-width: 479px) {
    .hsc-card { min-height: 160px; }
    .hsc-card__text { max-width: 52%; padding: 20px; min-height: 160px; }
    .hsc-card__img { width: 50%; right: -2%; height: 72%; }
    .hsc-card__title { font-size: 1rem; }
}
