/* ============================================================
   İstanbul Beyaz Eşya Tamircisi — tek elden yazılmış stil dosyası
   Mobile-first, framework yok, sistem font yığını.
   ============================================================ */

:root {
    --color-primary: #D71920;
    --color-primary-hover: #B9141A;
    --color-primary-dark: #A90F16;
    --color-dark: #202026;
    --color-footer: #25252A;
    --color-bg-light: #F5F5F7;
    --color-bg-light-2: #F6F6F8;
    --color-bg-soft-red: #FFF0F1;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #19BD58;
    --color-white: #FFFFFF;
    --color-text: #26262B;
    --color-text-muted: #5B5B63;
    --color-border: rgba(20, 20, 25, 0.09);

    --font-base: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --radius-sm: 10px;
    --radius-field: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 36px;
    --shadow-card: 0 18px 45px rgba(20, 20, 25, 0.07);
    --shadow-card-hover: 0 30px 70px rgba(20, 20, 25, 0.13);
    --shadow-hero: 0 30px 70px rgba(20, 20, 25, 0.14);
    --shadow-float: 0 14px 28px rgba(215, 25, 32, 0.24);
    --shadow-whatsapp: 0 14px 28px rgba(37, 211, 102, 0.22);
    --container-width: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.55;
    padding-bottom: 0;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
    margin: 0 0 0.5em;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}
h1 { font-size: clamp(2.1rem, 5.5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 900; }
h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--color-text-muted); }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 48px 0; }
@media (min-width: 900px) {
    .section { padding: 76px 0; }
}
.section--alt { background: var(--color-bg-light); }
.section--dark { background: var(--color-dark); color: var(--color-white); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section-title { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.section-title p { color: var(--color-text-muted); }
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.98rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--color-primary); color: var(--color-white); box-shadow: var(--shadow-float); }
.btn--primary:hover { background: var(--color-primary-hover); }
.btn--whatsapp { background: var(--color-whatsapp); color: var(--color-white); box-shadow: var(--shadow-whatsapp); }
.btn--whatsapp:hover { background: var(--color-whatsapp-dark); }
.btn--outline { background: transparent; border-color: var(--color-white); color: var(--color-white); box-shadow: none; }
.btn--outline-dark { background: transparent; border-color: var(--color-dark); color: var(--color-dark); box-shadow: none; }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.88rem; }

/* Header / nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}
.site-topbar {
    background: var(--color-primary);
    color: var(--color-white);
}
.site-topbar__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 34px;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.site-topbar__inner::-webkit-scrollbar { display: none; }
.site-topbar__inner a,
.site-topbar__inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
}
.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}
.site-header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-dark);
}
.site-header__brand img { height: 36px; width: auto; }
.site-nav {
    display: none;
    align-items: center;
    gap: 4px;
}
.site-nav a {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: background-color 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { background: var(--color-bg-soft-red); color: var(--color-primary); }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.site-header__phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-primary);
}
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-white);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0 18px;
    border-top: 1px solid var(--color-border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
    padding: 12px 4px;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 900px) {
    .site-nav { display: flex; }
    .site-header__phone { display: inline-flex; }
    .nav-toggle { display: none; }
    .mobile-nav { display: none !important; }
}

/* Breadcrumb */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .current { color: var(--color-dark); font-weight: 600; }

/* Hero */
.hero {
    background: linear-gradient(160deg, var(--color-bg-soft-red) 0%, var(--color-bg-light) 60%);
    padding: 40px 0 48px;
}
.hero__grid {
    display: grid;
    gap: 28px;
    align-items: center;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-dark);
}
.hero__media {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-hero);
    padding: 14px;
}
.hero__media img {
    border-radius: var(--radius-lg);
}
@media (min-width: 860px) {
    .hero__grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Service cards */
.cards-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 620px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(215, 25, 32, 0.24);
    box-shadow: var(--shadow-card-hover);
}
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-bg-light); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.24s ease; }
.service-card:hover .service-card__media img { transform: scale(1.045); }
.service-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card__link {
    margin-top: auto;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Process steps */
.steps {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    counter-reset: step;
}
@media (min-width: 760px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    position: relative;
}
.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 12px;
}

/* CTA strip */
.cta-strip {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.17), transparent 34%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-float);
}
.cta-strip h2 { color: var(--color-white); margin-bottom: 6px; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 760px) {
    .cta-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    overflow: hidden;
}
.faq-item__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
    cursor: pointer;
}
.faq-item__icon { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 18px;
}
.faq-item.is-open .faq-item__answer { padding: 0 18px 16px; }

/* List blocks (sık arızalar / yapılan işlemler) */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text);
}
.check-list li::before {
    content: "✓";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-bg-soft-red);
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: var(--color-footer);
    color: #C9C9CF;
    padding: 56px 0 24px;
}
.site-footer h3 { color: var(--color-white); font-size: 1rem; }
.footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    margin-bottom: 28px;
}
@media (min-width: 760px) {
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.site-footer a { color: #C9C9CF; }
.site-footer a:hover { color: var(--color-white); }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}

/* Floating phone / WhatsApp actions */
.sticky-bar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sticky-bar a {
    position: relative;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 12px 30px rgba(20, 20, 25, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.sticky-bar a:hover {
    color: var(--color-white);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 36px rgba(20, 20, 25, 0.28);
}
.sticky-bar a:focus-visible {
    outline: 3px solid var(--color-dark);
    outline-offset: 3px;
}
.sticky-bar svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.sticky-bar__label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    min-width: max-content;
    padding: 7px 11px;
    border-radius: 9px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.sticky-bar a:hover .sticky-bar__label,
.sticky-bar a:focus-visible .sticky-bar__label {
    opacity: 1;
    transform: translate(0, -50%);
}
.sticky-bar__call { background: var(--color-primary); }
.sticky-bar__call:hover { background: var(--color-primary-hover); }
.sticky-bar__whatsapp { background: var(--color-whatsapp); }
.sticky-bar__whatsapp:hover { background: var(--color-whatsapp-dark); }

@media (max-width: 600px) {
    .sticky-bar { right: 16px; bottom: 16px; gap: 10px; }
    .sticky-bar a { width: 54px; height: 54px; flex-basis: 54px; }
    .sticky-bar svg { width: 25px; height: 25px; }
    .sticky-bar__label { display: none; }
}

/* Forms */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--color-dark); }
.field input,
.field select,
.field textarea {
    padding: 12px 14px;
    border-radius: var(--radius-field);
    border: 1px solid var(--color-border);
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-white);
    color: var(--color-text);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
}
.field-hint { font-size: 0.8rem; color: var(--color-text-muted); }
.field-error { font-size: 0.82rem; color: var(--color-primary); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-bottom: 18px;
}
.alert--success { background: #E7F8EE; color: #157347; }
.alert--error { background: var(--color-bg-soft-red); color: var(--color-primary); }

.two-col {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 760px) {
    .two-col { grid-template-columns: 1.1fr 0.9fr; }
}

.contact-map {
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}
.contact-map__header { padding: 24px; }
.contact-map__header span { color: var(--color-primary); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; }
.contact-map__header h2 { margin: 8px 0; font-size: clamp(1.45rem, 3vw, 2rem); }
.contact-map__header p { margin: 0; }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 600px) {
    .contact-map iframe { height: 320px; }
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.page-hero {
    background: var(--color-bg-light);
    padding: 32px 0;
}
.page-hero .breadcrumb { padding-top: 0; }

/* Admin panel */
.admin-body { background: var(--color-bg-light-2); min-height: 100vh; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 230px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 20px 14px;
    flex-shrink: 0;
    display: none;
}
.admin-sidebar a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: #C9C9CF;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.admin-sidebar a.is-active, .admin-sidebar a:hover { background: rgba(255,255,255,0.08); color: var(--color-white); }
.admin-main { flex: 1; padding: 20px; max-width: 100%; }
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
@media (min-width: 900px) {
    .admin-sidebar { display: block; }
    .admin-main { padding: 32px; }
}
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    padding: 20px;
}
.admin-login .card { width: 100%; max-width: 380px; }
.table-wrap { overflow-x: auto; background: var(--color-white); border-radius: var(--radius-md); border: 1px solid var(--color-border); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
th { background: var(--color-bg-light-2); font-weight: 700; color: var(--color-dark); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; }
.badge--yeni { background: var(--color-bg-soft-red); color: var(--color-primary); }
.badge--okundu { background: #FFF6DE; color: #9A6B00; }
.badge--islendi { background: #E7F8EE; color: #157347; }
.badge--on { background: #E7F8EE; color: #157347; }
.badge--off { background: #EDEDF1; color: #6B6B72; }
.actions-row { display: flex; gap: 8px; flex-wrap: wrap; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.media-grid figure { margin: 0; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.media-grid img { aspect-ratio: 1; object-fit: cover; }
.media-grid figcaption { padding: 8px 10px; font-size: 0.78rem; color: var(--color-text-muted); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 16px;
    z-index: 100;
}
.skip-link:focus { left: 10px; top: 10px; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ============================================================
   Referans tema: header, ana sayfa ve footer
   silmeyiniz/klon görünüm ölçüleri mevcut dinamik veriye uyarlandı.
   ============================================================ */

/* Header + marquee */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    border: 0;
    background: transparent;
}

.site-marquee {
    width: 100%;
    height: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #d71920;
    color: #fff;
}

.site-marquee__track {
    display: flex;
    width: max-content;
    animation: siteMarquee 75s linear infinite;
}

.site-marquee__group {
    display: flex;
    align-items: center;
    gap: 44px;
    padding-right: 44px;
    white-space: nowrap;
}

.site-marquee__group span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .35px;
    text-transform: uppercase;
}

.site-marquee__group span::before {
    content: "•";
    font-size: 18px;
    line-height: 1;
}

@keyframes siteMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.site-header__main {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 12px 28px rgba(20, 20, 25, .08);
}

.site-header__bar {
    height: 100px;
    padding: 0 20px;
    gap: 22px;
}

.site-header__brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: max-content;
    gap: 0;
    line-height: 1.05;
}

.site-header__brand img {
    width: 260px;
    max-width: 260px;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.site-header__brand strong {
    color: #202026;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.7px;
    white-space: nowrap;
}

.site-header__brand small {
    margin-top: 5px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.site-nav > a,
.site-nav__dropdown > button {
    height: 44px;
    padding: 0 14px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: transparent;
    color: #303036;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .22s ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.site-nav__dropdown > button:hover {
    background: #fff0f1;
    color: #d71920;
}

.site-nav__dropdown {
    position: relative;
    height: 44px;
    display: flex;
    align-items: center;
}

.site-nav__dropdown > button::after {
    content: "⌄";
    margin-left: 7px;
    font-size: 14px;
    transform: translateY(-1px);
}

.site-nav__dropdown::before {
    content: "";
    position: absolute;
    top: 38px;
    left: -22px;
    right: -22px;
    height: 34px;
}

.site-nav__dropdown-menu {
    position: absolute;
    top: 54px;
    left: 50%;
    width: 310px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(20, 20, 25, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: .22s ease;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown-menu a {
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #33333a;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.site-nav__dropdown-menu a:hover {
    padding-left: 19px;
    background: #f5f5f7;
    color: #d71920;
}

.site-header__actions {
    min-width: max-content;
}

.site-header__call,
.site-header__whatsapp {
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    transition: .22s ease;
}

.site-header__call {
    background: #d71920;
    box-shadow: 0 12px 22px rgba(215, 25, 32, .24);
}

.site-header__whatsapp {
    background: #25d366;
    box-shadow: 0 12px 22px rgba(37, 211, 102, .24);
}

.site-header__call:hover,
.site-header__whatsapp:hover { color: #fff; transform: translateY(-2px); }
.site-header__call:hover { background: #b9141a; }
.site-header__whatsapp:hover { background: #19bd58; }

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 13px;
    background: #f2f2f4;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: #25252a;
    transition: .22s ease;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: .28s ease;
}

.mobile-nav.is-open {
    display: grid;
    max-height: 760px;
    padding: 0 0 15px;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a,
.mobile-nav__title {
    min-height: 42px;
    padding: 10px 13px;
    border: 0;
    border-radius: 14px;
    background: #f5f5f7;
    color: #28282e;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
}

.mobile-nav__title {
    grid-column: 1 / -1;
    background: #d71920;
    color: #fff;
}

.mobile-nav__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.mobile-nav__actions a { justify-content: center; color: #fff; }
.mobile-nav__call { background: #d71920 !important; }
.mobile-nav__whatsapp { background: #25d366 !important; }

/* Ana sayfa */
.home-page,
.home-page * { box-sizing: border-box; }

.home-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #202026;
}

.home-container,
.footer-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.home-hero {
    position: relative;
    padding: 86px 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(215, 25, 32, .13), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(32, 32, 38, .08), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f5f5f7 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(215, 25, 32, .08);
}

.home-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 44px;
}

.home-kicker {
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff0f1;
    color: #d71920;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
}

.home-hero h1 {
    margin: 16px 0;
    color: #202026;
    font-size: clamp(38px, 5.4vw, 70px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
}

.home-hero__content > p {
    max-width: 680px;
    margin: 0;
    color: #5f6068;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

.home-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-button {
    min-height: 52px;
    padding: 0 23px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    transition: .22s ease;
}

.home-button:hover { color: #fff; transform: translateY(-2px); }
.home-button--call { background: #d71920; box-shadow: 0 14px 28px rgba(215, 25, 32, .24); }
.home-button--call:hover { background: #b9141a; }
.home-button--whatsapp { background: #25d366; box-shadow: 0 14px 28px rgba(37, 211, 102, .22); }
.home-button--whatsapp:hover { background: #19bd58; }
.home-button--white { background: #fff; color: #d71920; box-shadow: 0 14px 28px rgba(0, 0, 0, .13); }
.home-button--white:hover { background: #fff; color: #d71920; }

.home-hero__visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero__image {
    width: min(100%, 470px);
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(20, 20, 25, .14);
}

.home-hero__image img,
.home-service-card__image img,
.home-why__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.home-hero__image img { border-radius: 28px; }

.home-floating-card {
    display: none;
    position: absolute;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(20, 20, 25, .13);
    backdrop-filter: blur(12px);
}

.home-floating-card strong {
    color: #d71920;
    display: block;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.home-floating-card span {
    margin-top: 4px;
    color: #55565f;
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.home-floating-card--phone { left: 0; bottom: 82px; }
.home-floating-card--service { right: 0; top: 80px; }

.home-quick-contact {
    position: relative;
    z-index: 3;
    margin-top: -38px;
    padding-bottom: 58px;
}

.home-quick-grid,
.home-service-grid,
.home-region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-quick-card {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(20, 20, 25, .09);
    color: #202026;
    display: block;
    transition: .24s ease;
}

.home-quick-card:hover {
    border-color: rgba(215, 25, 32, .22);
    box-shadow: 0 26px 60px rgba(20, 20, 25, .13);
    color: #202026;
    transform: translateY(-5px);
}

.home-quick-card--whatsapp:hover { border-color: rgba(37, 211, 102, .35); }
.home-quick-card > span { margin-bottom: 8px; color: #8a8b93; display: block; font-size: 12px; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; }
.home-quick-card > strong { color: #202026; display: block; font-size: 24px; line-height: 1.2; font-weight: 900; letter-spacing: -.6px; }
.home-quick-card > p { margin: 10px 0 0; color: #666771; font-size: 14px; line-height: 1.6; font-weight: 600; }

.home-section { padding: 76px 0; }
.home-section-head { max-width: 780px; margin-bottom: 34px; }
.home-section-head h2,
.home-why__content h2,
.home-area__content h2,
.home-lead__intro h2,
.home-final-cta h2 {
    margin: 13px 0 12px;
    color: #202026;
    font-size: clamp(28px, 3.7vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1px;
}

.home-section-head p,
.home-why__content > p,
.home-area__content > p,
.home-lead__intro > p {
    margin: 0;
    color: #64656d;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.home-service-card {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 20, 25, .07);
    color: #202026;
    transition: .24s ease;
}

.home-service-card:hover {
    border-color: rgba(215, 25, 32, .24);
    box-shadow: 0 30px 70px rgba(20, 20, 25, .13);
    color: #202026;
    transform: translateY(-7px);
}

.home-service-card__image { overflow: hidden; background: #f5f5f7; }
.home-service-card__image img { transition: .35s ease; }
.home-service-card:hover .home-service-card__image img { transform: scale(1.045); }
.home-service-card__content { padding: 22px; }
.home-service-card__content > span,
.home-why-list b {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #fff0f1;
    color: #d71920;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.home-service-card h3 { margin: 0 0 9px; color: #202026; font-size: 20px; line-height: 1.25; font-weight: 900; letter-spacing: -.4px; }
.home-service-card p { margin: 0; color: #64656d; font-size: 14px; line-height: 1.6; font-weight: 600; }
.home-service-card b { margin-top: 18px; color: #d71920; display: inline-flex; font-size: 14px; font-weight: 900; }

.home-why { background: #f6f6f8; }
.home-why__grid,
.home-area__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 42px;
}

.home-why__image {
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(20, 20, 25, .1);
}

.home-why__image img { border-radius: 26px; }
.home-why-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.home-why-list > div { padding: 20px; border: 1px solid rgba(0, 0, 0, .06); border-radius: 24px; background: #fff; }
.home-why-list b { margin-bottom: 14px; background: #d71920; color: #fff; }
.home-why-list strong { margin-bottom: 7px; color: #202026; display: block; font-size: 17px; line-height: 1.25; font-weight: 900; }
.home-why-list small { color: #65666e; display: block; font-size: 13px; line-height: 1.55; font-weight: 600; }

.home-process {
    background:
        radial-gradient(circle at bottom left, rgba(215, 25, 32, .14), transparent 33%),
        linear-gradient(135deg, #202026 0%, #2b2b31 100%);
}

.home-section-head--light .home-kicker { background: rgba(255, 255, 255, .1); color: #fff; }
.home-section-head--light h2 { color: #fff; }
.home-section-head--light p { color: rgba(255, 255, 255, .7); }
.home-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-process-card { padding: 24px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 26px; background: rgba(255, 255, 255, .08); transition: .24s ease; }
.home-process-card:hover { background: rgba(255, 255, 255, .12); transform: translateY(-5px); }
.home-process-card span { width: 48px; height: 48px; margin-bottom: 18px; border-radius: 16px; background: #d71920; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; }
.home-process-card h3 { margin: 0 0 10px; color: #fff; font-size: 19px; line-height: 1.25; font-weight: 900; }
.home-process-card p { margin: 0; color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.6; font-weight: 600; }

.home-area { background: #fff; }
.home-area__tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.home-area__tags span { min-height: 36px; padding: 0 13px; border-radius: 999px; background: #f5f5f7; color: #3e3f47; display: inline-flex; align-items: center; font-size: 13px; font-weight: 800; }
.home-area__panel { padding: 32px; border-radius: 32px; background: radial-gradient(circle at top right, rgba(255, 255, 255, .2), transparent 34%), linear-gradient(135deg, #d71920, #a90f16); box-shadow: 0 28px 65px rgba(215, 25, 32, .2); color: #fff; }
.home-area__panel > strong { margin-bottom: 10px; color: #fff; display: block; font-size: 18px; font-weight: 900; }
.home-area__panel > a { color: #fff; display: inline-flex; font-size: clamp(31px, 4vw, 44px); line-height: 1; font-weight: 900; letter-spacing: -1.2px; }
.home-area__panel > p { margin: 14px 0 0; color: rgba(255, 255, 255, .82); font-size: 15px; line-height: 1.65; font-weight: 600; }
.home-area__panel .home-button-row { margin-top: 24px; gap: 10px; }

.home-regions { background: radial-gradient(circle at top left, rgba(215, 25, 32, .12), transparent 30%), linear-gradient(135deg, #f6f6f8 0%, #fff 100%); }
.home-region-card { min-height: 66px; padding: 18px 20px; border: 1px solid rgba(0, 0, 0, .07); border-radius: 20px; background: #fff; box-shadow: 0 14px 34px rgba(20, 20, 25, .06); color: #202026; display: flex; align-items: center; font-size: 15px; line-height: 1.35; font-weight: 900; transition: .22s ease; }
.home-region-card::before { content: ""; width: 7px; height: 34px; margin-right: 13px; border-radius: 99px; background: #d71920; flex: 0 0 auto; }
.home-region-card::after { content: "İncele"; margin-left: auto; color: #d71920; font-size: 12px; font-weight: 900; opacity: 0; transform: translateX(8px); transition: .22s ease; }
.home-region-card:hover { border-color: rgba(215, 25, 32, .24); box-shadow: 0 22px 48px rgba(20, 20, 25, .11); color: #d71920; transform: translateY(-4px); }
.home-region-card:hover::after { opacity: 1; transform: translateX(0); }

.home-lead { background: #fff; }
.home-lead__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 42px; }
.home-lead .card { padding: 30px; border-color: rgba(0, 0, 0, .07); border-radius: 30px; box-shadow: 0 24px 60px rgba(20, 20, 25, .09); }
.home-lead .field input,
.home-lead .field select { min-height: 50px; border-color: rgba(0, 0, 0, .1); background: #f7f7f8; }

.home-final-cta { padding: 46px 0; background: linear-gradient(135deg, #d71920, #a90f16); }
.home-final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.home-final-cta .home-kicker { background: rgba(255, 255, 255, .13); color: #fff; }
.home-final-cta h2 { margin-bottom: 0; color: #fff; }
.home-final-cta .home-button-row { min-width: max-content; margin-top: 0; }

/* Footer */
.site-footer { padding: 0; overflow: hidden; background: #202026; color: #fff; }
.site-footer__cta { padding: 48px 0; background: radial-gradient(circle at top left, rgba(255, 255, 255, .17), transparent 34%), linear-gradient(135deg, #d71920 0%, #a80f16 100%); }
.site-footer__cta-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 34px; }
.site-footer__cta-content > span { min-height: 32px; padding: 0 13px; border-radius: 999px; background: rgba(255, 255, 255, .14); color: #fff; display: inline-flex; align-items: center; font-size: 12px; font-weight: 900; letter-spacing: .7px; }
.site-footer__cta-content h2 { margin: 14px 0 12px; color: #fff; font-size: clamp(27px, 3.4vw, 44px); line-height: 1.1; font-weight: 900; letter-spacing: -.9px; }
.site-footer__cta-content p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, .9); font-size: 16px; line-height: 1.7; font-weight: 500; }
.site-footer__buttons { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer__buttons a { min-height: 50px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; transition: .22s ease; }
.site-footer__call { background: #fff; color: #d71920; box-shadow: 0 15px 30px rgba(0, 0, 0, .18); }
.site-footer .site-footer__whatsapp { background: #25d366; color: #fff; box-shadow: 0 15px 30px rgba(0, 0, 0, .16); }
.site-footer__buttons a:hover { transform: translateY(-2px); }
.site-footer__call:hover { color: #d71920; }
.site-footer .site-footer__whatsapp:hover { background: #19bd58; color: #fff; }
.site-footer__info { display: grid; gap: 12px; }
.site-footer__info > div { padding: 18px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 22px; background: rgba(255, 255, 255, .13); box-shadow: 0 18px 36px rgba(0, 0, 0, .12); }
.site-footer__info strong { margin-bottom: 6px; color: #fff; display: block; font-size: 17px; font-weight: 900; }
.site-footer__info small { color: rgba(255, 255, 255, .78); display: block; font-size: 13px; line-height: 1.5; font-weight: 600; }

.site-footer__main { padding: 56px 0 42px; background: linear-gradient(180deg, #24242a 0%, #1d1d22 100%); }
.site-footer .footer-grid { margin: 0 auto; display: grid; grid-template-columns: 1.35fr .7fr 1fr .9fr; gap: 34px; }
.footer-logo { margin-bottom: 18px; display: inline-flex; flex-direction: column; line-height: 1.05; }
.footer-logo img { width: auto; max-width: 260px; height: auto; max-height: 92px; object-fit: contain; }
.footer-logo strong { max-width: 290px; color: #fff; font-size: 25px; font-weight: 900; letter-spacing: -.8px; }
.footer-logo small { margin-top: 6px; color: #ff3b42; font-size: 12px; font-weight: 900; letter-spacing: 1.5px; }
.footer-brand > p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 15px; line-height: 1.75; font-weight: 500; }
.footer-badges { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 9px; }
.footer-badges span { min-height: 34px; padding: 0 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); color: #fff; display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; }
.footer-col h3,
.footer-contact h3 { position: relative; margin: 0 0 18px; padding-bottom: 12px; color: #fff; font-size: 18px; font-weight: 900; letter-spacing: -.3px; }
.footer-col h3::after,
.footer-contact h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 38px; height: 3px; border-radius: 99px; background: #d71920; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.site-footer .footer-col a { color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.5; font-weight: 700; }
.site-footer .footer-col a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact h3 { margin-bottom: 8px; }
.footer-contact__card { padding: 14px 15px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; background: rgba(255, 255, 255, .07); display: block; transition: .2s ease; }
.footer-contact__card:hover { background: rgba(255, 255, 255, .11); }
.footer-contact__card span { margin-bottom: 5px; color: rgba(255, 255, 255, .55); display: block; font-size: 12px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.footer-contact__card strong { color: #fff; display: block; font-size: 14px; font-weight: 900; overflow-wrap: anywhere; }
.site-footer__bottom { padding: 18px 0; border: 0; background: #17171b; }
.site-footer .footer-bottom { padding: 0; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-footer .footer-bottom p { margin: 0; color: rgba(255, 255, 255, .58); font-size: 12.5px; line-height: 1.5; font-weight: 600; }

@media (max-width: 1080px) {
    .site-nav { display: none; }
    .site-header__actions { margin-left: auto; }
    .nav-toggle { display: inline-flex; }
    .home-hero__grid,
    .home-why__grid,
    .home-area__grid,
    .home-lead__grid { grid-template-columns: 1fr; }
    .home-hero__visual { min-height: auto; }
    .home-quick-grid,
    .home-service-grid,
    .home-region-grid { grid-template-columns: 1fr 1fr; }
    .home-process-grid { grid-template-columns: 1fr 1fr; }
    .home-floating-card--phone { left: 18px; bottom: 28px; }
    .home-floating-card--service { right: 18px; top: 28px; }
    .home-final-cta__inner { flex-direction: column; align-items: flex-start; }
    .home-final-cta .home-button-row { min-width: 0; }
    .site-footer__cta-grid { grid-template-columns: 1fr; }
    .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .container,
    .home-container,
    .footer-container,
    .mobile-nav { width: min(100% - 24px, 1180px); padding-left: 0; padding-right: 0; }
    .site-marquee { height: 24px; }
    .site-marquee__track { animation-duration: 65s; }
    .site-marquee__group { gap: 32px; padding-right: 32px; }
    .site-marquee__group span { font-size: 10.5px; letter-spacing: .25px; }
    .site-marquee__group span::before { font-size: 14px; }
    .site-header__bar { width: min(100% - 24px, 1180px); height: 70px; gap: 10px; }
    .site-header__brand img { width: 175px; max-width: 175px; }
    .site-header__brand strong { font-size: 17px; letter-spacing: -.45px; }
    .site-header__brand small { margin-top: 3px; font-size: 9px; letter-spacing: 1px; }
    .site-header__call,
    .site-header__whatsapp { display: none; }
    .nav-toggle { width: 36px; height: 36px; border-radius: 11px; }
    .mobile-nav { grid-template-columns: 1fr; gap: 7px; }
    .mobile-nav.is-open { padding-bottom: 11px; }
    .mobile-nav a,
    .mobile-nav__title { min-height: 38px; padding: 8px 12px; border-radius: 12px; font-size: 13px; }
    .mobile-nav__actions { grid-template-columns: 1fr; gap: 7px; }
    .home-hero { padding: 54px 0 70px; }
    .home-hero h1 { font-size: 35px; letter-spacing: -1.1px; }
    .home-hero__content > p { font-size: 15px; line-height: 1.65; }
    .home-button-row,
    .site-footer__buttons { width: 100%; display: grid; grid-template-columns: 1fr; }
    .home-button,
    .site-footer__buttons a { width: 100%; min-height: 48px; text-align: center; }
    .home-hero__image { padding: 12px; border-radius: 26px; }
    .home-hero__image img { border-radius: 20px; }
    .home-floating-card { position: static; width: 100%; margin-top: 10px; }
    .home-hero__visual { display: block; }
    .home-quick-contact { margin-top: -32px; padding-bottom: 44px; }
    .home-quick-grid,
    .home-service-grid,
    .home-why-list,
    .home-process-grid,
    .home-region-grid { grid-template-columns: 1fr; }
    .home-section { padding: 58px 0; }
    .home-section-head h2,
    .home-why__content h2,
    .home-area__content h2,
    .home-lead__intro h2,
    .home-final-cta h2 { font-size: 28px; }
    .home-section-head p,
    .home-why__content > p,
    .home-area__content > p,
    .home-lead__intro > p { font-size: 14px; }
    .home-area__panel { padding: 24px; border-radius: 26px; }
    .home-area__panel > a { font-size: 31px; }
    .home-lead .card { padding: 22px 18px; border-radius: 24px; }
    .home-final-cta { padding: 38px 0; }
    .home-final-cta__inner { align-items: stretch; }
    .site-footer__cta { padding: 40px 0; }
    .site-footer__main { padding: 44px 0 34px; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
    .container,
    .home-container,
    .footer-container,
    .mobile-nav,
    .site-header__bar { width: min(100% - 20px, 1180px); }
    .site-header__bar { height: 64px; }
    .site-header__brand img { width: 155px; max-width: 155px; }
    .site-header__brand strong { font-size: 15.5px; }
    .site-header__brand small { font-size: 8.5px; }
    .nav-toggle { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-marquee__track { animation-play-state: paused; }
    *, *::before, *::after { scroll-behavior: auto !important; }
}

/* SSS sayfası + çalışan accordion */
.faq-hero {
    position: relative;
    padding: 70px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(215, 25, 32, .13), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(32, 32, 38, .08), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f5f5f7 100%);
}

.faq-hero::after {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(215, 25, 32, .08);
}

.faq-hero .home-container { position: relative; z-index: 1; }
.faq-hero .breadcrumb { padding-top: 0; }
.faq-hero h1 {
    max-width: 820px;
    margin: 16px 0 14px;
    color: #202026;
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
}

.faq-hero p { max-width: 680px; margin: 0; color: #5f6068; font-size: 17px; line-height: 1.7; font-weight: 500; }
.faq-page > .section { padding: 76px 0; background: #fff; }
.faq-page .section-title { max-width: 780px; margin: 0 0 34px; text-align: left; }
.faq-page .section-title::before,
.service-faq .section-title::before { content: "SIK SORULAN SORULAR"; min-height: 32px; padding: 0 13px; margin-bottom: 13px; border-radius: 999px; background: #fff0f1; color: #d71920; display: inline-flex; align-items: center; font-size: 12px; font-weight: 900; letter-spacing: .7px; }
.faq-page .section-title h2,
.service-faq .section-title h2 { margin: 0; font-size: clamp(28px, 3.7vw, 46px); line-height: 1.12; font-weight: 900; letter-spacing: -1px; }
.faq-list { gap: 14px; }
.faq-item { border: 1px solid rgba(0, 0, 0, .07); border-radius: 20px; background: #fff; box-shadow: 0 14px 34px rgba(20, 20, 25, .06); transition: border-color .22s ease, box-shadow .22s ease; }
.faq-item.is-open { border-color: rgba(215, 25, 32, .24); box-shadow: 0 20px 48px rgba(20, 20, 25, .1); }
.faq-item__question { min-height: 66px; padding: 18px 20px; font-size: 15px; font-weight: 900; }
.faq-item__icon { width: 32px; height: 32px; border-radius: 11px; background: #fff0f1; color: #d71920; display: inline-flex; align-items: center; justify-content: center; font-size: 19px; }
.faq-item__answer { max-height: 0; padding: 0 20px; transition: max-height .3s ease, padding .3s ease; }
.faq-item.is-open .faq-item__answer { padding: 0 20px 20px; }
.faq-item__answer p { margin: 0; padding-top: 2px; color: #65666e; font-size: 14px; line-height: 1.7; font-weight: 600; }

/* Hizmet detay sayfaları — referans tema, gerçek panel verisi */
.service-page,
.service-page * { box-sizing: border-box; }
.service-page { width: 100%; overflow: hidden; background: #fff; color: #202026; }
.service-hero {
    position: relative;
    padding: 64px 0 86px;
    background:
        radial-gradient(circle at 8% 8%, rgba(215, 25, 32, .13), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(32, 32, 38, .08), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f5f5f7 100%);
}
.service-hero::after { content: ""; position: absolute; top: -170px; right: -170px; width: 390px; height: 390px; border-radius: 50%; background: rgba(215, 25, 32, .08); }
.service-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 44px; }
.service-hero .breadcrumb { padding: 0 0 14px; }
.service-hero h1 { margin: 16px 0; color: #202026; font-size: clamp(38px, 5.4vw, 70px); line-height: 1.02; font-weight: 900; letter-spacing: -2px; }
.service-hero__content > p { max-width: 680px; margin: 0; color: #5f6068; font-size: 17px; line-height: 1.75; font-weight: 500; }
.service-hero__badges { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 9px; }
.service-hero__badges span { min-height: 34px; padding: 0 13px; border: 1px solid rgba(0, 0, 0, .07); border-radius: 999px; background: #fff; box-shadow: 0 10px 24px rgba(20, 20, 25, .06); color: #3f4048; display: inline-flex; align-items: center; font-size: 13px; font-weight: 800; }
.service-hero__visual { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.service-hero__image { width: min(100%, 470px); padding: 16px; border: 1px solid rgba(0, 0, 0, .07); border-radius: 36px; background: #fff; box-shadow: 0 30px 70px rgba(20, 20, 25, .14); }
.service-hero__image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; border-radius: 28px; }
.service-floating-card { display: none; position: absolute; padding: 16px 18px; border: 1px solid rgba(0, 0, 0, .07); border-radius: 20px; background: rgba(255, 255, 255, .94); box-shadow: 0 18px 42px rgba(20, 20, 25, .13); backdrop-filter: blur(12px); }
.service-floating-card strong { color: #d71920; display: block; font-size: 20px; line-height: 1.1; font-weight: 900; }
.service-floating-card span { max-width: 180px; margin-top: 4px; color: #55565f; display: block; font-size: 12px; font-weight: 800; }
.service-floating-card--phone { left: 0; bottom: 82px; }
.service-floating-card--type { right: 0; top: 80px; }
.service-quick { position: relative; z-index: 3; margin-top: -38px; padding-bottom: 58px; }
.service-section { padding: 76px 0; }
.service-section-head { max-width: 780px; margin-bottom: 34px; }
.service-section-head h2,
.service-intro__content h2,
.service-final-cta h2 { margin: 13px 0 12px; color: #202026; font-size: clamp(28px, 3.7vw, 46px); line-height: 1.12; font-weight: 900; letter-spacing: -1px; }
.service-section-head > p { margin: 0; color: #64656d; font-size: 16px; line-height: 1.7; font-weight: 500; }
.service-intro { background: radial-gradient(circle at top left, rgba(215, 25, 32, .12), transparent 30%), linear-gradient(135deg, #f6f6f8 0%, #fff 100%); }
.service-intro__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: start; gap: 34px; }
.service-rich-text p { margin: 0 0 16px; color: #64656d; font-size: 16px; line-height: 1.75; font-weight: 500; }
.service-rich-text p:last-child { margin-bottom: 0; }
.service-contact-panel { position: sticky; top: 132px; padding: 32px; border-radius: 32px; background: radial-gradient(circle at top right, rgba(255, 255, 255, .2), transparent 34%), linear-gradient(135deg, #d71920, #a90f16); box-shadow: 0 28px 65px rgba(215, 25, 32, .2); color: #fff; }
.service-contact-panel > strong { margin-bottom: 12px; color: #fff; display: block; font-size: 22px; font-weight: 900; }
.service-contact-panel > p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 15px; line-height: 1.65; font-weight: 600; }
.service-contact-panel > a { margin-top: 22px; color: #fff; display: inline-flex; font-size: clamp(31px, 4vw, 44px); line-height: 1; font-weight: 900; letter-spacing: -1.2px; }
.service-contact-panel .home-button-row { margin-top: 24px; gap: 10px; }
.service-problems { background: #fff; }
.service-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-problem-card { min-height: 180px; padding: 24px; border: 1px solid rgba(0, 0, 0, .07); border-radius: 26px; background: #fff; box-shadow: 0 18px 45px rgba(20, 20, 25, .07); transition: .24s ease; }
.service-problem-card:hover { border-color: rgba(215, 25, 32, .24); box-shadow: 0 26px 60px rgba(20, 20, 25, .12); transform: translateY(-6px); }
.service-problem-card b { width: 46px; height: 46px; margin-bottom: 18px; border-radius: 16px; background: #fff0f1; color: #d71920; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; }
.service-problem-card h3 { margin: 0; color: #202026; font-size: 19px; line-height: 1.35; font-weight: 900; }
.service-process { padding: 76px 0; }
.service-faq > .section { padding: 76px 0; background: #f6f6f8; }
.service-faq .section-title { max-width: 780px; margin: 0 0 34px; text-align: left; }
.service-other { background: #fff; }
.service-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-other-card { overflow: hidden; border: 1px solid rgba(0, 0, 0, .07); border-radius: 28px; background: #fff; box-shadow: 0 18px 45px rgba(20, 20, 25, .07); color: #202026; transition: .24s ease; }
.service-other-card:hover { border-color: rgba(215, 25, 32, .24); box-shadow: 0 26px 60px rgba(20, 20, 25, .12); color: #202026; transform: translateY(-6px); }
.service-other-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.service-other-card strong { padding: 20px; color: #202026; display: block; font-size: 18px; line-height: 1.3; font-weight: 900; }
.service-lead { background: #f6f6f8; }
.service-lead .card { padding: 30px; border-color: rgba(0, 0, 0, .07); border-radius: 30px; background: #fff; box-shadow: 0 24px 60px rgba(20, 20, 25, .09); }
.service-lead .field input,
.service-lead .field select { min-height: 50px; border-color: rgba(0, 0, 0, .1); background: #f7f7f8; }
.service-final-cta { padding: 46px 0; background: linear-gradient(135deg, #d71920, #a90f16); }
.service-final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.service-final-cta .home-kicker { background: rgba(255, 255, 255, .13); color: #fff; }
.service-final-cta h2 { margin-bottom: 0; color: #fff; }
.service-final-cta .home-button-row { min-width: max-content; margin-top: 0; }

@media (max-width: 1080px) {
    .service-hero__grid,
    .service-intro__grid { grid-template-columns: 1fr; }
    .service-hero__visual { min-height: auto; }
    .service-problem-grid,
    .service-other-grid { grid-template-columns: 1fr 1fr; }
    .service-floating-card--phone { left: 18px; bottom: 28px; }
    .service-floating-card--type { right: 18px; top: 28px; }
    .service-contact-panel { position: static; }
    .service-final-cta__inner { flex-direction: column; align-items: flex-start; }
    .service-final-cta .home-button-row { min-width: 0; }
}

@media (max-width: 760px) {
    .faq-hero { padding: 48px 0 54px; }
    .faq-hero h1,
    .service-hero h1 { font-size: 35px; letter-spacing: -1.1px; }
    .faq-hero p,
    .service-hero__content > p { font-size: 15px; line-height: 1.65; }
    .faq-page > .section,
    .service-faq > .section { padding: 54px 0; }
    .faq-page .section-title h2,
    .service-faq .section-title h2 { font-size: 28px; }
    .faq-item__question { min-height: 58px; padding: 15px 16px; font-size: 14px; }
    .faq-item__answer { padding-left: 16px; padding-right: 16px; }
    .faq-item.is-open .faq-item__answer { padding: 0 16px 17px; }
    .service-hero { padding: 42px 0 70px; }
    .service-hero__badges { gap: 7px; }
    .service-hero__badges span { min-height: 32px; font-size: 12px; }
    .service-hero__image { padding: 12px; border-radius: 26px; }
    .service-hero__image img { border-radius: 20px; }
    .service-floating-card { position: static; width: 100%; margin-top: 10px; }
    .service-hero__visual { display: block; }
    .service-quick { margin-top: -32px; padding-bottom: 44px; }
    .service-section,
    .service-process { padding: 54px 0; }
    .service-section-head h2,
    .service-intro__content h2,
    .service-final-cta h2 { font-size: 28px; letter-spacing: -.7px; }
    .service-section-head > p,
    .service-rich-text p { font-size: 14px; line-height: 1.65; }
    .service-problem-grid,
    .service-other-grid { grid-template-columns: 1fr; }
    .service-contact-panel { padding: 24px; border-radius: 26px; }
    .service-contact-panel > a { font-size: 31px; }
    .service-lead .card { padding: 22px 18px; border-radius: 24px; }
    .service-final-cta { padding: 38px 0; }
    .service-final-cta__inner { align-items: stretch; }
}
