/* =================================================
   EKSPERTIZ SORGULAMA — modern, site ana rengi (kırmızı/beyaz)
   AI Ekspertiz'deki mor gradient YOK; sade beyaz/kırmızı
   ================================================= */

:root {
    --eq-red: #DC1F26;
    --eq-red-dark: #B71C1C;
    --eq-red-light: #FEF2F2;
    --eq-text: #1a1a1a;
    --eq-text-muted: #6b7280;
    --eq-border: #E5E7EB;
    --eq-bg: #F9FAFB;
}

/* ===== HERO ===== */
.eq-hero {
    background: #fff;
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--eq-border);
}
.eq-hero__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.eq-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--eq-red-light);
    color: var(--eq-red);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}
.eq-hero__title {
    font-size: 38px;
    font-weight: 800;
    color: var(--eq-text);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.eq-hero__subtitle {
    color: var(--eq-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}
.eq-hero__subtitle strong { color: var(--eq-text); }

/* ===== Arama Kartı ===== */
.eq-card {
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.eq-form__tabs {
    display: flex;
    gap: 8px;
    background: #F3F4F6;
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 18px;
}
.eq-form__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--eq-text-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    margin: 0;
}
.eq-form__tab input { display: none; }
.eq-form__tab:hover { color: var(--eq-text); }
.eq-form__tab--active {
    background: #fff;
    color: var(--eq-red);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.eq-form__tab-icon { display: inline-flex; }

.eq-form__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--eq-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.eq-form__input-wrap:focus-within {
    border-color: var(--eq-red);
    box-shadow: 0 0 0 3px rgba(220, 31, 38, 0.1);
}
.eq-form__input-icon {
    padding: 0 14px;
    color: var(--eq-text-muted);
    display: inline-flex;
}
.eq-form__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--eq-text);
    background: transparent;
    letter-spacing: 1px;
}
.eq-form__input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
    letter-spacing: 0;
}
.eq-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--eq-red);
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.eq-form__submit:hover { background: var(--eq-red-dark); }
.eq-form__submit--loading {
    cursor: wait;
    opacity: 0.85;
}
.eq-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: eq-spin 0.7s linear infinite;
    vertical-align: -2px;
    margin-right: 4px;
}
@keyframes eq-spin { to { transform: rotate(360deg); } }

.eq-form__hint {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--eq-text-muted);
    text-align: center;
}

/* ===== Info Cards ===== */
.eq-info {
    background: var(--eq-bg);
    padding: 60px 0;
}
.eq-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.eq-info__card {
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eq-info__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.eq-info__icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    color: #fff;
}
.eq-info__icon svg { width: 22px; height: 22px; }
.eq-info__icon--red   { background: var(--eq-red); }
.eq-info__icon--green { background: #22C55E; }
.eq-info__icon--blue  { background: #3B82F6; }

.eq-info__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--eq-text);
    margin: 0 0 8px;
}
.eq-info__desc {
    font-size: 14px;
    color: var(--eq-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ ===== */
.eq-faq {
    background: #fff;
    padding: 60px 0 80px;
}
.eq-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--eq-text);
    margin: 0 0 32px;
}

/* ===== Bana Özel: Ekspertiz Sorgularım ===== */
.eq-myq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.eq-myq-item {
    display: grid;
    grid-template-columns: 70px 1fr 130px 140px 130px;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 10px;
    padding: 14px 18px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.eq-myq-item:hover {
    border-color: #D1D5DB;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.eq-myq-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.eq-myq-badge--plate   { background: #DBEAFE; color: #1D4ED8; }
.eq-myq-badge--chassis { background: #EDE9FE; color: #6D28D9; }
.eq-myq-item__value {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 16px;
    color: var(--eq-text);
    letter-spacing: 1px;
}
.eq-myq-result {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
}
.eq-myq-result--ok { color: #15803D; }
.eq-myq-result--no { color: #B91C1C; }
.eq-myq-item__date {
    color: var(--eq-text-muted);
    font-size: 13px;
}
.eq-myq-view {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--eq-red);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}
.eq-myq-view:hover { color: var(--eq-red-dark); }

.eq-myq-empty {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 12px;
    color: var(--eq-text-muted);
}
.eq-myq-empty svg { color: #D1D5DB; margin-bottom: 12px; }
.eq-myq-empty p { font-size: 15px; margin: 0 0 18px; }
.eq-myq-cta {
    display: inline-block;
    background: var(--eq-red);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}
.eq-myq-cta:hover { background: var(--eq-red-dark); color: #fff; }

@media (max-width: 700px) {
    .eq-myq-item {
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
    }
    .eq-myq-item__value { grid-column: 1 / -1; }
    .eq-myq-item__action { text-align: right; }
}

/* ===== SSS Accordion ===== */
.eq-faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.eq-faq-item {
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.eq-faq-item:hover { border-color: #D1D5DB; }
.eq-faq-item--open {
    border-color: var(--eq-red);
    box-shadow: 0 4px 16px rgba(220, 31, 38, 0.08);
}
.eq-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--eq-text);
    transition: color 0.2s ease;
}
.eq-faq-q:hover { color: var(--eq-red); }
.eq-faq-item--open .eq-faq-q { color: var(--eq-red); }
.eq-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--eq-text-muted);
}
.eq-faq-item--open .eq-faq-chevron {
    transform: rotate(180deg);
    color: var(--eq-red);
}
.eq-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.eq-faq-item--open .eq-faq-a {
    max-height: 800px;
}
.eq-faq-a p {
    padding: 0 22px 18px;
    margin: 0;
    color: var(--eq-text-muted);
    font-size: 14px;
    line-height: 1.7;
}
.eq-faq-a p + p { padding-top: 0; }
.eq-faq-a ul {
    padding: 0 22px 8px 42px;
    margin: 0;
    color: var(--eq-text-muted);
    font-size: 14px;
    line-height: 1.8;
}
.eq-faq-a a { color: var(--eq-red); font-weight: 600; }
.eq-faq-a code {
    background: #F3F4F6;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--eq-text);
}

/* ===== Rapor Sayfası ===== */
.eq-report {
    background: var(--eq-bg);
    min-height: calc(100vh - 80px);
    padding: 30px 0 60px;
}
.eq-report__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}
.eq-report__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--eq-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.eq-report__back:hover { color: var(--eq-red-dark); text-decoration: underline; }

/* Yeni Sorgu — belirgin dolu kırmızı buton */
.eq-report__newquery {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--eq-red);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(220, 31, 38, 0.25);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.eq-report__newquery:hover {
    background: var(--eq-red-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 31, 38, 0.35);
}
.eq-report__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--eq-text);
    margin: 0;
    flex: 1;
    text-align: center;
}
.eq-report__print {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--eq-border);
    color: var(--eq-text);
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.eq-report__print:hover { border-color: var(--eq-red); color: var(--eq-red); }

/* Özet Kart */
.eq-summary {
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.eq-summary__left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.eq-summary__plate {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #111;
    border-radius: 4px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}
.eq-summary__plate-tr {
    background: #003399;
    color: #fff;
    padding: 6px 8px;
    font-size: 11px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.eq-summary__plate-no {
    background: #fff;
    color: #111;
    padding: 6px 12px;
    font-size: 16px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
.eq-summary__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--eq-text);
}
.eq-summary__year {
    font-weight: 500;
    color: var(--eq-text-muted);
}
.eq-summary__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.eq-summary__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.eq-summary__badge--green  { background: #DCFCE7; color: #15803D; }
.eq-summary__badge--orange { background: #FEF3C7; color: #B45309; }
.eq-summary__badge--red    { background: #FEE2E2; color: #B91C1C; }
.eq-summary__badge--gray   { background: #F3F4F6; color: #4B5563; }
.eq-summary__test-date {
    color: var(--eq-text-muted);
    font-size: 13px;
}
.eq-summary__test-date strong { color: var(--eq-text); }

/* Sections */
.eq-section {
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 20px;
}
.eq-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--eq-text);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--eq-border);
}
.eq-section__title svg { color: var(--eq-red); flex-shrink: 0; }
.eq-section__count {
    margin-left: auto;
    font-size: 13px;
    color: var(--eq-text-muted);
    font-weight: 500;
}

/* Bilgi Tablosu */
.eq-info-table {
    width: 100%;
    border-collapse: collapse;
}
.eq-info-table th,
.eq-info-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--eq-border);
    font-size: 14px;
    vertical-align: top;
}
.eq-info-table th {
    color: var(--eq-text-muted);
    font-weight: 500;
    background: #FAFAFA;
    width: 22%;
}
.eq-info-table td {
    color: var(--eq-text);
    font-weight: 600;
    width: 28%;
}
.eq-info-table tr:last-child th,
.eq-info-table tr:last-child td { border-bottom: none; }

/* Hasar Özeti */
.eq-damage-summary {
    display: flex;
    align-items: center;
    gap: 24px;
}
.eq-damage-summary__status {
    flex-shrink: 0;
    padding: 14px 24px;
    border-radius: 12px;
    text-align: center;
}
.eq-damage-summary__status strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}
.eq-damage-summary__status span {
    font-size: 12px;
    opacity: 0.85;
}
.eq-damage-summary__status--green  { background: #DCFCE7; color: #15803D; }
.eq-damage-summary__status--orange { background: #FEF3C7; color: #B45309; }
.eq-damage-summary__status--red    { background: #FEE2E2; color: #B91C1C; }
.eq-damage-summary__status--gray   { background: #F3F4F6; color: #4B5563; }
.eq-damage-summary__note {
    margin: 0;
    color: var(--eq-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== Test Sonuçları ========== */
.eq-tests-summary {
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 20px;
}
.eq-tests-summary__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--eq-text);
    margin-bottom: 12px;
}
.eq-tests-summary__title svg { color: #22C55E; flex-shrink: 0; }
.eq-tests-summary__title strong { color: var(--eq-red); }
.eq-tests-summary__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.eq-test-chip {
    display: inline-block;
    padding: 4px 12px;
    background: var(--eq-red-light);
    color: var(--eq-red);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* Cihaz testleri için ölçüm tablosu */
.eq-test-table {
    width: 100%;
    border-collapse: collapse;
}
.eq-test-table th,
.eq-test-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--eq-border);
    font-size: 14px;
}
.eq-test-table th {
    color: var(--eq-text-muted);
    font-weight: 500;
    background: #FAFAFA;
    width: 60%;
}
.eq-test-table td {
    color: var(--eq-text);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.eq-test-table tr:last-child th,
.eq-test-table tr:last-child td { border-bottom: none; }

/* Kaporta — parça grid */
.eq-kaporta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}
.eq-kaporta-part {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--eq-border);
    background: #fff;
}
.eq-kaporta-part--green  { background: #F0FDF4; border-color: #BBF7D0; }
.eq-kaporta-part--orange { background: #FFFBEB; border-color: #FDE68A; }
.eq-kaporta-part--red    { background: #FEF2F2; border-color: #FCA5A5; }
.eq-kaporta-part--gray   { background: #F9FAFB; border-color: var(--eq-border); }
.eq-kaporta-part__name {
    font-size: 12px;
    color: var(--eq-text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}
.eq-kaporta-part__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--eq-text);
}
.eq-kaporta-part--green  .eq-kaporta-part__label { color: #15803D; }
.eq-kaporta-part--orange .eq-kaporta-part__label { color: #B45309; }
.eq-kaporta-part--red    .eq-kaporta-part__label { color: #B91C1C; }

.eq-kaporta-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--eq-border);
    font-size: 12px;
    color: var(--eq-text-muted);
}
.eq-kaporta-legend__item { display: inline-flex; align-items: center; gap: 6px; }
.eq-kaporta-legend__dot {
    width: 10px; height: 10px; border-radius: 50%;
    display: inline-block;
}
.eq-kaporta-legend__dot--green  { background: #22C55E; }
.eq-kaporta-legend__dot--orange { background: #F59E0B; }
.eq-kaporta-legend__dot--red    { background: #EF4444; }

/* Dinamometre grafik fotoğrafı (image.garantiliarabam.com/dynoGraphics) */
.eq-dyno-photo {
    margin-top: 20px;
    background: #fff;
    border: 1px solid var(--eq-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.eq-dyno-photo__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--eq-text);
    margin-bottom: 12px;
    text-align: left;
}
.eq-dyno-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--eq-border);
}

/* Kontrol kategorileri (motor/yol/iç/dış/alt/güvenlik) — kalem listesi grid */
.eq-kontrol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.eq-kontrol-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    background: #F9FAFB;
    border: 1px solid var(--eq-border);
    border-radius: 8px;
    font-size: 13px;
}
.eq-kontrol-item__label {
    color: var(--eq-text-muted);
    flex: 1;
    min-width: 0;
}
.eq-kontrol-item__value {
    color: var(--eq-text);
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
}
.eq-kontrol-item--ok {
    background: #F0FDF4;
    border-color: #BBF7D0;
}
.eq-kontrol-item--ok .eq-kontrol-item__value { color: #15803D; }
.eq-kontrol-item--bad {
    background: #FEF2F2;
    border-color: #FCA5A5;
}
.eq-kontrol-item--bad .eq-kontrol-item__value { color: #B91C1C; }
.eq-kontrol-item--warn {
    background: #FFFBEB;
    border-color: #FDE68A;
}
.eq-kontrol-item--warn .eq-kontrol-item__value { color: #B45309; }
.eq-kontrol-item--neutral {
    background: #F9FAFB;
}

@media (max-width: 640px) {
    .eq-kontrol-grid { grid-template-columns: 1fr; }
}

/* Test notu */
.eq-test-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 14px;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 8px;
    color: #075985;
    font-size: 13px;
    line-height: 1.5;
}
.eq-test-note svg { flex-shrink: 0; margin-top: 2px; }

/* Fotoğraflar */
.eq-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.eq-photo {
    aspect-ratio: 4 / 3;
    background: #F3F4F6;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--eq-border);
}
.eq-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fotoğraf Lightbox */
.eq-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}
.eq-lightbox--open { display: flex; }
.eq-lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.eq-lightbox__close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}
.eq-lightbox__close:hover { opacity: 1; }
.eq-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}
.eq-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.eq-lightbox__nav--prev { left: 20px; }
.eq-lightbox__nav--next { right: 20px; }
.eq-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    border-radius: 999px;
}
@media (max-width: 640px) {
    .eq-lightbox__nav { width: 40px; height: 40px; font-size: 20px; }
    .eq-lightbox__close { font-size: 32px; top: 12px; right: 16px; }
}

/* Gizlilik notu */
.eq-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: 10px;
    color: #92400E;
    font-size: 13px;
    margin-top: 8px;
}
.eq-privacy-note svg { flex-shrink: 0; margin-top: 2px; }

/* Print */
@media print {
    /* Site header / footer / yardımcı elemanları gizle — sadece rapor basılsın */
    .header, .navbar, .desktop-header, .mobile-header,
    .box.soft, .homelinks, .quick-links,
    .footerContainer, .footer-container, footer,
    #patentli, .cookieinfo, #loading, #toast-wrapper,
    .eq-lightbox,
    .eq-report__back, .eq-report__newquery, .eq-report__print {
        display: none !important;
    }

    /* Rapor sade beyaz */
    body, #app, .eq-report { background: #fff !important; }
    .eq-report { padding-top: 0 !important; }
    .eq-section, .eq-summary {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    /* Başlık ortalı, tam görünür */
    .eq-report__header { justify-content: center !important; }
    .eq-report__title { width: 100% !important; text-align: center !important; }

    /* Kaporta araç görseli (background-image) yazdırırken de bassın */
    .kasamodel,
    .eq-kaporta-scheme,
    .eq-summary__plate-tr {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Kaporta şeması: span'ler px-sabit, .kasamodel %49 — ekran genişliğini
       sabitleyip tüm şemayı zoom ile küçült. Böylece span+background hizası
       birebir korunur, sağ-sol kayma olmaz, A4'e sığar. */
    .eq-kaporta-scheme {
        width: 1040px !important;
        zoom: 0.88;
        margin: 0 auto !important;
    }
    .eq-kaporta-scheme .kasamodel {
        width: 49% !important;
        vertical-align: top !important;
    }
    /* Kaporta kartının iç boşluğunu azalt — şema kenarlara yaklaşsın */
    .eq-test-section { padding: 14px 10px !important; }
}

/* Responsive */
@media (max-width: 991px) {
    .eq-hero__title { font-size: 30px; }
    .eq-info__grid { grid-template-columns: repeat(2, 1fr); }
    .eq-photos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .eq-hero { padding: 40px 0 30px; }
    .eq-hero__title { font-size: 24px; }
    .eq-card { padding: 22px 18px; }
    .eq-form__input-wrap { flex-direction: column; align-items: stretch; }
    .eq-form__input { padding: 12px 14px; }
    .eq-form__submit { padding: 14px; justify-content: center; }
    .eq-info__grid { grid-template-columns: 1fr; }
    .eq-photos-grid { grid-template-columns: repeat(2, 1fr); }
    .eq-info-table th, .eq-info-table td {
        display: block;
        width: 100%;
    }
    .eq-info-table th { background: #FAFAFA; padding-bottom: 2px; }
    .eq-info-table td { padding-top: 4px; padding-bottom: 12px; }
    .eq-damage-summary { flex-direction: column; align-items: stretch; text-align: center; }
    .eq-report__header { flex-wrap: wrap; }
    .eq-report__title { order: -1; width: 100%; text-align: center; margin-bottom: 8px; }
}
