/*
Theme Name: Kargo Takip
Theme URI: https://kargomtakip.com.tr/
Author: Erdemsoft
Author URI: https://www.erdemsoft.com/
Description: Kargo Takip - kargo şubeleri, takip, ücret hesaplama ve kargo hizmetleri için hızlı, sade ve SEO odaklı özel tema.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kargomtakip
*/
/* Kargo Takip - Ana Stil Dosyası (tek dosya, framework yok) */

:root {
    --navy-900: #0e1c30;
    --navy-800: #16283f;
    --navy-700: #203552;
    --orange-500: #f2640c;
    --orange-600: #d9550a;
    --bg: #f5f7fa;
    --surface: #ffffff;
    --text: #1a2331;
    --text-muted: #5b6675;
    --border: #e3e7ec;
    --success: #1a9c5c;
    --danger: #d64545;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(14, 28, 48, 0.08), 0 1px 2px rgba(14, 28, 48, 0.06);
    --max-width: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.25; margin: 0 0 .5em; color: var(--navy-900); }
h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

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

.kt-skip-link {
    position: absolute; left: -999px; top: 0; background: var(--orange-500); color: #fff;
    padding: 10px 16px; z-index: 1000; border-radius: 0 0 6px 0;
}
.kt-skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.kt-site-header { background: var(--surface); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); border-bottom: 1px solid var(--border); }
.kt-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.kt-logo { display: flex; align-items: center; gap: 10px; color: var(--navy-900); font-weight: 800; font-size: 1.2rem; }
.kt-logo:hover { text-decoration: none; }
.kt-logo img { max-height: 40px; width: auto; }
.kt-logo-text { color: var(--navy-900); }
.kt-nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.kt-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-900); margin: 0 auto; }
.kt-primary-nav { display: flex; }

/* Menü - üst seviye */
.kt-menu { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.kt-menu li { position: relative; }
.kt-menu > li > a {
    display: block; padding: 10px 13px; color: var(--navy-900); font-weight: 700; font-size: .95rem; border-radius: 6px;
    white-space: nowrap;
}
.kt-menu > li > a:hover { background: var(--bg); color: var(--orange-600); text-decoration: none; }

/* Alt menü (dropdown) - masaüstü
   NOT: sağa/sola hizalama nth-last-child gibi sabit bir varsayımla DEĞİL,
   app.js içinde her hover'da gerçek konum ölçülerek (getBoundingClientRect)
   belirlenir - menü sarılsa, öğe sayısı değişse veya pencere genişliği
   farklı olsa bile ekran dışına taşma/çakışma olmaz. */
.kt-menu .sub-menu {
    display: none; position: absolute; top: 100%; left: 0; min-width: 220px; z-index: 500;
    background: var(--surface); border-radius: 8px; box-shadow: 0 8px 24px rgba(14,28,48,.15);
    padding: 6px; border: 1px solid var(--border);
}
.kt-menu li:hover > .sub-menu,
.kt-menu li:focus-within > .sub-menu { display: block; }
.kt-menu > li.kt-submenu-right > .sub-menu { left: auto; right: 0; }
.kt-menu .sub-menu li a {
    display: block; padding: 10px 12px; font-size: .9rem; font-weight: 600; color: var(--navy-800); border-radius: 6px; white-space: nowrap;
}
.kt-menu .sub-menu li a:hover { background: var(--bg); color: var(--orange-600); }
.kt-menu > li.menu-item-has-children > a::after { content: " ▾"; font-size: .75em; opacity: .8; }

/* ---------- Breadcrumb ---------- */
.kt-breadcrumb { padding: 12px 0; font-size: .85rem; }
.kt-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.kt-breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--text-muted); }
.kt-breadcrumb li[aria-current="page"] { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.kt-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: 8px; font-weight: 700; font-size: .95rem;
    border: 2px solid transparent; cursor: pointer; white-space: nowrap;
}
.kt-btn:hover { text-decoration: none; }
.kt-btn-primary { background: var(--orange-500); color: #fff; }
.kt-btn-primary:hover { background: var(--orange-600); }
.kt-btn-outline { background: transparent; border-color: var(--navy-800); color: var(--navy-800); }
.kt-btn-outline:hover { background: var(--navy-800); color: #fff; }

/* ---------- Hero / Takip Kutusu ---------- */
.kt-hero { background: linear-gradient(160deg, #eef2f7, #ffffff); padding: 48px 0 40px; border-bottom: 1px solid var(--border); }
.kt-hero h1 { color: var(--navy-900); max-width: 720px; }
.kt-hero-sub { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }
.kt-track-box {
    background: var(--surface); border-radius: var(--radius); padding: 14px; margin-top: 24px;
    display: flex; gap: 10px; flex-wrap: wrap; box-shadow: var(--shadow); max-width: 780px;
}
.kt-track-box select, .kt-track-box input[type="text"] {
    flex: 1 1 200px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 1rem; color: var(--text); background-color: #fff;
}
.kt-track-box button { flex: 0 0 auto; }
.kt-hero-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
.kt-hero-links a { color: var(--navy-800); font-weight: 600; font-size: .9rem; }
.kt-hero-links a:hover { color: var(--orange-600); }

/* ---------- Section genel ---------- */
section { padding: 44px 0; }
.kt-section-title { text-align: left; margin-bottom: 22px; }

/* ---------- Firma kartları ---------- */
.kt-company-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.kt-company-card {
    background: var(--surface); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
    border-top: 4px solid var(--kt-accent, var(--orange-500)); display: flex; flex-direction: column; gap: 6px;
}
.kt-company-card:hover { text-decoration: none; transform: translateY(-2px); transition: transform .15s ease; }
.kt-company-name { font-weight: 800; font-size: 1.05rem; color: var(--navy-900); }
.kt-company-stats { color: var(--text-muted); font-size: .85rem; }

/* ---------- Hizmet kartları ---------- */
.kt-service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.kt-service-card {
    background: var(--surface); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
    display: block; color: var(--text);
}
.kt-service-card:hover { text-decoration: none; box-shadow: 0 4px 14px rgba(14,28,48,.12); }
.kt-service-icon { font-size: 1.6rem; }
.kt-service-card h3 { margin: 10px 0 6px; font-size: 1.05rem; }
.kt-service-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ---------- Şube kart listesi ---------- */
.kt-branch-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.kt-branch-card {
    background: var(--surface); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); color: var(--text);
    display: block; border: 1px solid transparent;
}
.kt-branch-card:hover { text-decoration: none; border-color: var(--orange-500); }
.kt-branch-card h2 { font-size: 1rem; margin-bottom: 8px; }
.kt-branch-card-addr, .kt-branch-card-phone { font-size: .85rem; color: var(--text-muted); margin: 0 0 4px; }

/* ---------- FAQ ---------- */
.kt-faq-list details {
    background: var(--surface); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 10px; box-shadow: var(--shadow);
}
.kt-faq-list summary { font-weight: 700; cursor: pointer; }
.kt-faq-list p { margin-top: 10px; color: var(--text-muted); }

/* ---------- Firma / Şehir Arşiv Sayfaları ---------- */
.kt-archive-head { padding: 32px 0 20px; }
.kt-archive-sub { color: var(--text-muted); max-width: 720px; }
.kt-archive-desc { color: var(--text-muted); max-width: 780px; }
.kt-tracking-inline { margin: 20px 0 32px; }
.kt-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; padding-bottom: 40px; }
.kt-city-chip {
    background: var(--surface); border-radius: 8px; padding: 14px 16px; box-shadow: var(--shadow);
    display: flex; justify-content: space-between; align-items: center; color: var(--text);
}
.kt-city-chip:hover { text-decoration: none; border-left: 3px solid var(--orange-500); padding-left: 13px; }
.kt-city-name { font-weight: 700; font-size: .92rem; }
.kt-city-count { font-size: .78rem; color: var(--text-muted); }
.kt-city-page .kt-branch-list { padding: 24px 0 20px; }
.kt-back-link { margin: 20px 0 40px; }

/* ---------- Şube Tekil Sayfa ---------- */
.kt-branch { padding: 28px 0 60px; }
.kt-branch-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.kt-status { font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.kt-status.is-open { background: #e5f7ec; color: var(--success); }
.kt-status.is-closed { background: #fbe9e9; color: var(--danger); }
.kt-branch-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 26px; align-items: start; }
.kt-branch-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.kt-info-card, .kt-hours-card, .kt-map-card, .kt-tracking-card, .kt-side-card {
    background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 16px;
}
.kt-info-row { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .92rem; }
.kt-info-row:last-child { border-bottom: none; }
.kt-info-label { flex: 0 0 110px; color: var(--text-muted); font-weight: 600; }
.kt-info-value { flex: 1; }
.kt-hours-table th, .kt-hours-table td { text-align: left; padding: 8px 14px 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.kt-hours-table th { color: var(--text-muted); font-weight: 600; }
.kt-hours-table:not(.kts-compare-table) th { width: 40%; }
.kt-hours-season { font-weight: 700; margin: 12px 0 4px; color: var(--navy-800); }
.kt-map-load {
    width: 100%; padding: 14px; border-radius: 8px; border: 1px dashed var(--border); background: var(--bg);
    cursor: pointer; font-weight: 600; color: var(--navy-800);
}
.kt-map-frame { margin-top: 12px; border-radius: 8px; overflow: hidden; }
.kt-map-frame iframe { width: 100%; height: 320px; border: 0; }
.kt-tracking-card h2 { margin-bottom: 6px; }
.kt-tracking-card p { color: var(--text-muted); font-size: .9rem; }
.kt-side-card h3 { font-size: .95rem; }
.kt-side-card ul li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.kt-side-card ul li:last-child { border-bottom: none; }
.kt-link-more { display: inline-block; margin-top: 10px; font-weight: 700; font-size: .85rem; }
.kt-branch-fallback { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }

/* ---------- Genel sayfa ---------- */
.kt-page { padding-block: 32px 60px; }
.kt-page-content { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.kt-generic-post { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 14px; }
.kt-404 { text-align: center; }

/* ---------- Arama formu ---------- */
.kt-search-form { display: flex; gap: 8px; max-width: 480px; margin: 20px 0; }
.kt-search-form input { flex: 1; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; }
.kt-search-form button { padding: 12px 18px; background: var(--navy-800); color: #fff; border: 0; border-radius: 8px; font-weight: 700; cursor: pointer; }

/* ---------- Footer ---------- */
.kt-site-footer { background: #eef1f5; color: var(--text); margin-top: 30px; border-top: 1px solid var(--border); }
.kt-footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 26px; padding-block: 44px 24px; }
.kt-footer-title { color: var(--navy-900); font-size: .95rem; margin-bottom: 12px; }
.kt-footer-col p { color: var(--text-muted); font-size: .88rem; }
.kt-footer-col ul li { padding: 4px 0; }
.kt-footer-col ul li a { color: var(--navy-800); font-size: .88rem; }
.kt-footer-col ul li a:hover { color: var(--orange-600); }
.kt-footer-bottom {
    border-top: 1px solid var(--border); padding-block: 16px; font-size: .82rem; color: var(--text-muted);
    text-align: center; display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.kt-footer-bottom p { margin: 0; }
.kt-footer-dev a { font-weight: 700; color: var(--navy-800); }
.kt-footer-dev a:hover { color: var(--orange-600); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
    .kt-branch-grid { grid-template-columns: 1fr; }
    .kt-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .kt-nav-toggle { display: flex; }
    .kt-primary-nav {
        position: fixed; inset: 64px 0 0 0; background: var(--surface); flex-direction: column;
        padding: 12px; transform: translateY(-110%); transition: transform .2s ease; overflow-y: auto;
    }
    .kt-primary-nav.is-open { transform: translateY(0); }
    .kt-menu { flex-direction: column; align-items: stretch; width: 100%; }
    .kt-menu > li > a { padding: 14px; font-size: 1rem; }
    /* Mobilde hover olmadığı için alt menüler her zaman açık, girintili gösterilir */
    .kt-menu .sub-menu {
        display: block; position: static; box-shadow: none; border: none; border-left: 2px solid var(--border);
        margin: 0 0 4px 16px; padding: 0; background: transparent;
    }
    .kt-menu .sub-menu li a { padding: 10px 12px; }
    .kt-track-box { flex-direction: column; }
    .kt-footer-grid { grid-template-columns: 1fr; }
}

/* Not: Bilinçli olarak her zaman açık/beyaz tema kullanılıyor - sistem karanlık
   mod tercihine göre otomatik koyulaşma YOK (kullanıcı tercihi: okunabilirlik). */

/* ==========================================================================
   FORM ELEMANLARI - select / input / textarea (tutarlı görünüm)
   ========================================================================== */
select, input[type="text"], input[type="search"], input[type="tel"],
input[type="email"], input[type="number"], textarea {
    font-family: inherit; font-size: 1rem; color: var(--text);
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    padding: 11px 14px; width: 100%; line-height: 1.4;
    transition: border-color .15s ease, box-shadow .15s ease;
}
select {
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    padding-right: 40px; cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2214%22%20height%3D%229%22%20viewBox%3D%220%200%2014%209%22%3E%3Cpath%20fill%3D%22%235b6675%22%20d%3D%22M1.41%200%207%205.59%2012.59%200%2014%201.41%207%208.41%200%201.41z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
}
select:focus, input:focus, textarea:focus {
    outline: none; border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(242,100,12,.15);
}
select:hover, input:hover, textarea:hover { border-color: #c9d2dd; }
input::placeholder, textarea::placeholder { color: #9aa5b4; }
button { font-family: inherit; }

/* ==========================================================================
   SAYFA İÇERİĞİ - eski (legacy) içerik dahil zengin tipografi
   ========================================================================== */
.kt-page-content .lead { font-size: 1.08rem; color: var(--navy-800); }
.kt-page-content .kt-updated { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5em; }
.kt-page-content .kt-contact-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px 22px; margin: 1.2em 0 1.6em;
}
.kt-page-content .kt-contact-card h2 { margin-top: 0; }
.kt-page-content .kt-contact-card a { font-size: 1.1rem; font-weight: 700; }
.kt-page-content .kt-contact-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 0; }
.kt-page-content h2, .kt-page-content h3, .kt-page-content h4 {
    margin: 1.5em 0 .5em; color: var(--navy-900); line-height: 1.3;
}
.kt-page-content h2 { font-size: 1.35rem; }
.kt-page-content h3 { font-size: 1.12rem; }
.kt-page-content h4 { font-size: 1rem; }
.kt-page-content p { margin: 0 0 1em; }
.kt-page-content ul, .kt-page-content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.kt-page-content ul { list-style: disc; }
.kt-page-content ol { list-style: decimal; }
.kt-page-content li { margin-bottom: .4em; }
.kt-page-content a { font-weight: 600; }
.kt-page-content img { border-radius: 8px; margin: 1em 0; }
.kt-page-content table { margin: 1em 0; font-size: .92rem; display: block; overflow-x: auto; }
.kt-page-content th, .kt-page-content td {
    padding: 9px 12px; border: 1px solid var(--border); text-align: left;
}
.kt-page-content th { background: var(--bg); font-weight: 700; }
.kt-page-content iframe { max-width: 100%; border-radius: 8px; }
.kt-page-content > *:first-child { margin-top: 0; }

/* Eski temadan kalan içerik sınıfları ("X Kargo Takip" sayfaları) */
.kt-page-content .cargo-home-panel { display: block; }
.kt-page-content .cargo-home-panel .item { margin-bottom: 18px; height: auto !important; }
.kt-page-content .sayfa-buton ul,
.kt-page-content .sayfa-buton ol {
    list-style: none; padding: 0; margin: 14px 0 18px;
    display: flex; flex-wrap: wrap; gap: 10px;
}
.kt-page-content .hobutton { margin: 0; }
.kt-page-content .hobutton a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 8px; background: var(--bg);
    border: 1px solid var(--border); color: var(--navy-800);
    font-weight: 600; font-size: .9rem; text-decoration: none;
}
.kt-page-content .hobutton a:hover {
    background: var(--orange-500); border-color: var(--orange-500); color: #fff; text-decoration: none;
}
.kt-page-content .i-title { font-size: 1.05rem; margin: 1.3em 0 .4em; }

/* ==========================================================================
   PAYLAŞIM BUTONLARI (tema içi - eklentisiz)
   ========================================================================== */
.kt-share { margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--border); }
.kt-share-title { font-size: .88rem; font-weight: 700; color: var(--text-muted); margin: 0 0 10px; }
.kt-share-list { display: flex; flex-wrap: wrap; gap: 8px; }
.kt-share-list a, .kt-share-list button {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border-radius: 8px; font-size: .85rem; font-weight: 600;
    background: var(--bg); border: 1px solid var(--border); color: var(--navy-800);
    cursor: pointer; text-decoration: none; line-height: 1; width: auto;
}
.kt-share-list a:hover, .kt-share-list button:hover { border-color: #c9d2dd; text-decoration: none; }
.kt-share-list svg { width: 16px; height: 16px; flex: 0 0 auto; fill: currentColor; }
.kt-share-wa:hover { background: #25d366 !important; border-color: #25d366 !important; color: #fff !important; }
.kt-share-fb:hover { background: #1877f2 !important; border-color: #1877f2 !important; color: #fff !important; }
.kt-share-x:hover  { background: #14171a !important; border-color: #14171a !important; color: #fff !important; }
.kt-share-tg:hover { background: #2aabee !important; border-color: #2aabee !important; color: #fff !important; }

/* ==========================================================================
   SEO İÇERİK BLOKLARI (şube / kategori sayfaları)
   ========================================================================== */
.kt-seo-block {
    background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 22px; margin-bottom: 16px;
}
.kt-seo-block h2 { font-size: 1.15rem; margin-bottom: .6em; }
.kt-seo-block h3 { font-size: 1rem; margin: 1.1em 0 .4em; }
.kt-seo-block p { color: var(--text); margin-bottom: .9em; }
.kt-seo-block p:last-child { margin-bottom: 0; }
.kt-seo-list { list-style: disc; padding-left: 1.3em; margin: 0 0 1em; color: var(--text); }
.kt-seo-list li { margin-bottom: .45em; }
.kt-faq-block details {
    border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; margin-bottom: 8px; background: var(--surface);
}
.kt-faq-block details[open] { border-color: #c9d2dd; }
.kt-faq-block summary { font-weight: 700; cursor: pointer; color: var(--navy-900); font-size: .95rem; }
.kt-faq-block summary::marker { color: var(--orange-500); }
.kt-faq-block details p { margin: 10px 0 0; color: var(--text-muted); font-size: .92rem; }
.kt-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; }
.kt-chip {
    display: inline-block; padding: 7px 13px; border-radius: 20px; background: var(--bg);
    border: 1px solid var(--border); font-size: .85rem; font-weight: 600; color: var(--navy-800);
}
.kt-chip:hover { background: var(--orange-500); border-color: var(--orange-500); color: #fff; text-decoration: none; }

/* ==========================================================================
   RESPONSIVE - ara kırılım noktaları
   ========================================================================== */
.kt-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 1024px) {
    .kt-menu > li > a { padding: 10px 9px; font-size: .88rem; }
    .kt-company-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
}
@media (max-width: 880px) {
    section { padding: 34px 0; }
    .kt-hero { padding: 36px 0 32px; }
}
@media (max-width: 640px) {
    body { font-size: 15.5px; }
    .kt-container { padding: 0 16px; }
    .kt-hero { padding: 28px 0 26px; }
    .kt-hero-sub { font-size: .98rem; }
    .kt-branch-list, .kt-service-grid { grid-template-columns: 1fr; }
    .kt-company-grid { grid-template-columns: repeat(2, 1fr); }
    .kt-city-grid { grid-template-columns: 1fr; }
    .kt-branch-actions { flex-direction: column; align-items: stretch; }
    .kt-branch-actions .kt-btn { width: 100%; }
    .kt-info-row { flex-direction: column; gap: 2px; }
    .kt-info-label { flex: none; }
    .kt-hero-links { gap: 12px; }
    .kt-seo-block, .kt-info-card, .kt-hours-card, .kt-map-card, .kt-tracking-card, .kt-side-card { padding: 16px; }
    .kt-page-content { padding: 18px 16px; }
}
@media (max-width: 380px) {
    .kt-company-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ek stiller ---------- */
.kt-footer-note { font-size: .82rem; color: var(--text-muted); margin-top: 10px; }
.kt-footer-note strong { color: var(--navy-800); }
.kt-footer-disclaimer {
    border-top: 1px solid var(--border); padding-block: 16px;
}
.kt-footer-disclaimer p {
    margin: 0; font-size: .8rem; line-height: 1.6; color: var(--text-muted);
}
.kt-footer-disclaimer strong { color: var(--navy-800); }

.kt-post-excerpt { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.kt-article h1 { max-width: 820px; }
