/* ==========================================================================
   ANIL TEKNİK — HERO SLIDER + SİTEYE ÖZEL EKLER
   Mobil öncelikli, bağımsız (owl carousel kullanmaz)
   ========================================================================== */

/* --- Yatay kayma engeli (mobil/tablet) ---
   Taşan herhangi bir öğe sayfanın sağa-sola sürüklenmesine yol açıyordu.
   Masaüstünde uygulanmıyor; orada position:sticky yan sütunu bozulmasın. */
@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    iframe,
    video,
    table {
        max-width: 100%;
    }

    /* Görsellerde oran korunur — height:auto olmadan genişlik sınırı görseli ezer */
    img {
        max-width: 100%;
        height: auto;
    }

    .main-container,
    .wrapper1711,
    .wrapper1578,
    .container,
    .container-fluid {
        max-width: 100%;
    }

    /* Şablon mobilde sayfa kenar boşluğunu %1'e düşürüyor; koyu kutular
       ekran kenarına yapışık duruyordu. Sabit ve yeterli bir boşluk veriyoruz. */
    .padding-rl {
        padding-right: 14px !important;
        padding-left: 14px !important;
    }
}

@media (max-width: 575px) {
    .padding-rl {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }
}

/* ==========================================================================
   HİZMET GRID — görsel üstte, içerik altta (kart görselin üstüne binmez)
   ========================================================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 56px;
}

.service-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid rgba(9, 31, 65, 0.08);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(9, 31, 65, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
}

.service-item:hover,
.service-item:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(9, 31, 65, 0.14);
    border-color: rgba(48, 195, 235, 0.5);
    text-decoration: none;
}

/* --- Görsel --- */
.service-item-img {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #eef3f8;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.service-item:hover .service-item-img img {
    transform: scale(1.06);
}

.service-item-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #30c3eb;
    color: #091f41;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}

/* --- İçerik --- */
.service-item-body {
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.service-item-title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #091f41;
    margin: 0 0 10px;
    transition: color 0.35s ease;
}

.service-item:hover .service-item-title {
    color: #30c3eb;
}

.service-item-text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(9, 31, 65, 0.65);
    margin: 0 0 20px;
    flex: 1 1 auto;
}

.service-item-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #091f41;
    transition: color 0.35s ease, gap 0.35s ease;
}

.service-item-link svg {
    width: 17px;
    height: 17px;
}

.service-item:hover .service-item-link {
    color: #30c3eb;
    gap: 12px;
}

@media (max-width: 1199px) {
    .service-grid {
        gap: 24px;
        margin-top: 44px;
    }

    .service-item-body {
        padding: 22px 22px 20px;
    }

    .service-item-title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 34px;
    }

    .service-item-img {
        aspect-ratio: 16 / 9;
    }
}

/* ==========================================================================
   HIZLI İLETİŞİM — sol altta sabit yuvarlak butonlar
   ========================================================================== */
.hizli-iletisim {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hi-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(9, 31, 65, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hi-btn svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
}

/* Butonun etrafından yayılan dalga */
.hi-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    animation: hiDalga 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes hiDalga {
    0% {
        box-shadow: 0 0 0 0 var(--dalga);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hi-btn:hover,
.hi-btn:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(9, 31, 65, 0.36);
    text-decoration: none;
}

.hi-ara {
    background-color: #30c3eb;
    color: #ffffff;
    --dalga: rgba(48, 195, 235, 0.6);
}

.hi-ara:hover {
    background-color: #091f41;
    color: #ffffff;
}

.hi-wp {
    background-color: #25d366;
    color: #ffffff;
    --dalga: rgba(37, 211, 102, 0.6);
}

.hi-wp:hover {
    background-color: #128c3e;
    color: #ffffff;
}

/* İki buton sırayla dalgalansın */
.hi-wp::after {
    animation-delay: 1.3s;
}

@media (max-width: 991px) {
    .hizli-iletisim {
        left: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .hi-btn {
        width: 52px;
        height: 52px;
    }

    .hi-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 575px) {
    .hizli-iletisim {
        left: 12px;
        bottom: 12px;
    }

    .hi-btn {
        width: 48px;
        height: 48px;
    }

    .hi-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hi-btn {
        transition: none;
    }

    .hi-btn:hover {
        transform: none;
    }

    .hi-btn::after {
        animation: none;
    }
}

/* ==========================================================================
   LIGHTBOX — görsele tıklayınca büyütme
   ========================================================================== */
.lb-katman {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(6, 20, 43, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.lb-katman.acik {
    display: flex;
    animation: lbAc 0.25s ease;
}

@keyframes lbAc {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lb-icerik {
    margin: 0;
    max-width: 1100px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lb-icerik img {
    max-width: 100%;
    max-height: calc(100vh - 170px);
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    display: block;
}

.lb-icerik figcaption {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.lb-yazi {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 22px;
}

.lb-sayac {
    background-color: rgba(255, 255, 255, 0.12);
    color: #30c3eb;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 100px;
}

.lb-kapat,
.lb-onceki,
.lb-sonraki {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.lb-kapat svg,
.lb-onceki svg,
.lb-sonraki svg {
    width: 21px;
    height: 21px;
}

.lb-kapat:hover,
.lb-onceki:hover,
.lb-sonraki:hover {
    background-color: #30c3eb;
    border-color: #30c3eb;
    color: #091f41;
}

.lb-kapat {
    top: 22px;
    right: 22px;
}

.lb-onceki {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.lb-sonraki {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}

/* Büyütülebilir görsellerde imleç ve hafif ipucu */
.urun-kart-img,
.hizmet-gorsel,
.bolge-kart-img {
    cursor: zoom-in;
}

.urun-kart-img::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background-color: rgba(9, 31, 65, 0.75);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='M11 8.5v5M8.5 11h5M16 16l4 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.urun-kart:hover .urun-kart-img::after {
    opacity: 1;
}

@media (max-width: 767px) {
    .lb-katman {
        padding: 70px 12px 90px;
    }

    .lb-kapat {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .lb-onceki,
    .lb-sonraki {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .lb-onceki {
        left: calc(50% - 56px);
    }

    .lb-sonraki {
        right: calc(50% - 56px);
    }

    .lb-icerik img {
        max-height: calc(100vh - 210px);
    }

    .urun-kart-img::after {
        opacity: 1;
    }
}

/* ==========================================================================
   ÜRÜN LİSTESİ — ikinci el kombi kartları
   ========================================================================== */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 30px 0 34px;
}

.urun-kart {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid rgba(9, 31, 65, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.urun-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(9, 31, 65, 0.13);
    border-color: rgba(48, 195, 235, 0.5);
}

.urun-kart-img {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #eef3f8;
}

.urun-kart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.urun-kart:hover .urun-kart-img img {
    transform: scale(1.05);
}

.urun-rozet {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #30c3eb;
    color: #091f41;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 13px;
    border-radius: 100px;
}

.urun-kart-govde {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.hizmet-makale .urun-kart-govde h3 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 800;
    color: #091f41;
    margin: 0 0 12px;
}

.hizmet-makale .urun-ozellik {
    margin: 0 0 16px;
    flex: 1 1 auto;
}

.hizmet-makale .urun-ozellik li {
    font-size: 14.5px;
    line-height: 22px;
    padding-left: 22px;
    margin-bottom: 7px;
}

.hizmet-makale .urun-ozellik li::before {
    width: 7px;
    height: 7px;
    top: 8px;
    left: 0;
}

.urun-fiyat {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #30c3eb;
    margin-bottom: 14px;
}

/* Butonlar alt alta — yazı sarmıyor, ikonlu ve nefes alan */
.urun-aksiyon {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: auto;
}

.urun-btn-ara,
.urun-btn-wp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    padding: 0 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.35s ease;
}

.urun-btn-ara svg,
.urun-btn-wp svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.urun-btn-ara {
    background-color: #091f41;
    color: #ffffff;
}

.urun-btn-ara:hover {
    background-color: #30c3eb;
    color: #091f41;
    text-decoration: none;
}

.urun-btn-wp {
    background-color: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #128c3e;
}

.urun-btn-wp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: #ffffff;
    text-decoration: none;
}

/* Son kart: stok yoksa ara */
.urun-kart-cta {
    background-color: #091f41;
    border-color: #091f41;
    justify-content: center;
}

.hizmet-makale .urun-kart-cta h3 {
    color: #ffffff;
}

.hizmet-makale .urun-kart-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 23px;
    margin-bottom: 18px;
}

.urun-kart-cta .urun-btn-ara {
    background-color: #30c3eb;
    color: #091f41;
}

.urun-kart-cta .urun-btn-ara:hover {
    background-color: #ffffff;
}

/* ==========================================================================
   ETİKET BULUTU — sayfa sonu bölge etiketleri
   ========================================================================== */
.etiket-bolumu {
    margin-top: 46px;
    padding-top: 34px;
    border-top: 1px solid rgba(9, 31, 65, 0.1);
}

.hizmet-makale .etiket-bolumu h2 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 10px;
}

.hizmet-makale .etiket-bolumu p {
    font-size: 15.5px;
    line-height: 26px;
    margin-bottom: 20px;
}

.hizmet-makale .etiket-bulutu {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hizmet-makale .etiket-bulutu li {
    padding: 0;
    margin: 0;
}

.hizmet-makale .etiket-bulutu li::before {
    display: none;
}

.hizmet-makale .etiket-bulutu a,
.hizmet-makale .etiket-bulutu span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: rgba(9, 31, 65, 0.05);
    border: 1px solid rgba(9, 31, 65, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: rgba(9, 31, 65, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hizmet-makale .etiket-bulutu a:hover {
    background-color: #30c3eb;
    border-color: #30c3eb;
    color: #091f41;
    text-decoration: none;
}

.hizmet-makale .etiket-bulutu span {
    opacity: 0.75;
}

@media (max-width: 1199px) {
    .urun-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .urun-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .urun-kart-img {
        aspect-ratio: 16 / 10;
    }
}

/* ==========================================================================
   HİZMET BÖLGELERİ — ilçe kartları
   ========================================================================== */
.bolge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 52px;
}

.bolge-kart {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid rgba(9, 31, 65, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(9, 31, 65, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
}

.bolge-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(9, 31, 65, 0.14);
    border-color: rgba(48, 195, 235, 0.5);
}

.bolge-kart-img {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #eef3f8;
}

.bolge-kart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.bolge-kart:hover .bolge-kart-img img {
    transform: scale(1.06);
}

.bolge-kart-etiket {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background-color: rgba(9, 31, 65, 0.92);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: 100px;
}

/* Görsel üzerine yazılan bölge başlığı */
.bolge-kart-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(9, 31, 65, 0.05) 0%,
            rgba(9, 31, 65, 0.35) 45%,
            rgba(9, 31, 65, 0.88) 100%);
}

.bolge-kart-baslik {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
    font-size: 22px;
    line-height: 28px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(9, 31, 65, 0.5);
}

.bolge-kart-etiket {
    z-index: 2;
    top: 16px;
    bottom: auto;
    background-color: #30c3eb;
    color: #091f41;
}

/* Kart içindeki H2 görselde zaten yazılı olduğu için gizli tutulur (SEO için DOM'da kalır) */
.bolge-kart-govde h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Kart aksiyon butonları */
.bolge-kart-aksiyon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bolge-btn-detay {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 48px;
    padding: 0 20px;
    border-radius: 100px;
    background-color: #091f41;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.bolge-btn-detay svg {
    width: 16px;
    height: 16px;
}

.bolge-btn-detay:hover {
    background-color: #30c3eb;
    color: #091f41;
    text-decoration: none;
}

.bolge-btn-ara {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: rgba(48, 195, 235, 0.16);
    border: 1px solid rgba(48, 195, 235, 0.45);
    color: #30c3eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.bolge-btn-ara svg {
    width: 19px;
    height: 19px;
}

.bolge-btn-ara:hover {
    background-color: #30c3eb;
    border-color: #30c3eb;
    color: #091f41;
}

/* Giriş metninden sonraki CTA şeridi */
.bolge-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
    background-color: #091f41;
    border-radius: 26px;
    padding: 34px 40px;
    margin-top: 40px;
}

.bolge-cta-metin h2 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 7px;
}

.bolge-cta-metin p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 560px;
}

.bolge-cta-butonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767px) {
    .bolge-cta {
        padding: 26px 24px;
        gap: 20px;
    }

    .bolge-cta-metin h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .bolge-cta-butonlar {
        width: 100%;
    }

    .bolge-cta-butonlar .hero-btn {
        flex: 1 1 100%;
    }

    .bolge-kart-baslik {
        font-size: 19px;
        line-height: 25px;
    }
}

/* İlçe sayfası başlık bandı — Samsun kapak görseli */
.bolge-basligi-con {
    background-image: url(../images/samsun-kombi-servisi-kapak.webp) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.bolge-basligi-con::before {
    background: linear-gradient(180deg,
            rgba(9, 31, 65, 0.88) 0%,
            rgba(9, 31, 65, 0.8) 50%,
            rgba(15, 55, 110, 0.88) 100%) !important;
}

.bolge-basligi-con .sub-banner-img1,
.bolge-basligi-con .sub-banner-img2,
.bolge-basligi-con .sub-banner-dots {
    display: none !important;
}

@media (max-width: 991px) {
    .bolge-basligi-con::before {
        background: linear-gradient(180deg,
                rgba(9, 31, 65, 0.92) 0%,
                rgba(9, 31, 65, 0.9) 100%) !important;
    }
}

.bolge-kart-govde {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.bolge-kart-govde h2,
.bolge-kart-govde h3 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 800;
    color: #091f41;
    margin: 0 0 10px;
}

.bolge-kart-govde p {
    font-size: 15.5px;
    line-height: 26px;
    color: rgba(9, 31, 65, 0.65);
    margin: 0 0 18px;
    flex: 1 1 auto;
}

.bolge-kart-tel {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 700;
    color: #091f41;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.bolge-kart-tel svg {
    width: 18px;
    height: 18px;
    color: #30c3eb;
}

.bolge-kart-tel:hover {
    color: #30c3eb;
    text-decoration: none;
    gap: 12px;
}

@media (max-width: 1199px) {
    .bolge-grid {
        gap: 24px;
    }

    .bolge-kart-govde {
        padding: 20px 20px 22px;
    }
}

@media (max-width: 991px) {
    .bolge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bolge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 34px;
    }
}

/* ==========================================================================
   HİZMET SAYFASI — makale + yapışkan iletişim kutusu
   ========================================================================== */
.hizmet-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 366px;
    gap: 46px;
    align-items: start;
}

/* --- Makale --- */
.hizmet-makale {
    background-color: #ffffff;
    border: 1px solid rgba(9, 31, 65, 0.08);
    border-radius: 28px;
    padding: 50px 52px;
    box-shadow: 0 10px 34px rgba(9, 31, 65, 0.05);
}

.hizmet-makale>*:first-child {
    margin-top: 0;
}

.hizmet-makale p {
    font-size: 17px;
    line-height: 31px;
    color: rgba(9, 31, 65, 0.72);
    margin-bottom: 20px;
}

.hizmet-makale h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 800;
    color: #091f41;
    margin: 42px 0 16px;
}

.hizmet-makale h3 {
    font-size: 21px;
    line-height: 29px;
    font-weight: 700;
    color: #091f41;
    margin: 30px 0 12px;
}

.hizmet-makale strong {
    color: #091f41;
    font-weight: 700;
}

.hizmet-makale ul,
.hizmet-makale ol {
    margin: 0 0 22px;
    padding-left: 0;
    list-style: none;
}

.hizmet-makale ul li {
    position: relative;
    padding-left: 30px;
    font-size: 17px;
    line-height: 29px;
    color: rgba(9, 31, 65, 0.72);
    margin-bottom: 11px;
}

.hizmet-makale ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 100px;
    background-color: #30c3eb;
}

.hizmet-makale ol {
    counter-reset: adim;
}

.hizmet-makale ol li {
    position: relative;
    padding-left: 46px;
    font-size: 17px;
    line-height: 29px;
    color: rgba(9, 31, 65, 0.72);
    margin-bottom: 16px;
    counter-increment: adim;
}

.hizmet-makale ol li::before {
    content: counter(adim, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1px;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background-color: rgba(48, 195, 235, 0.16);
    color: #091f41;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vurgu kutusu */
.hizmet-not {
    background-color: rgba(48, 195, 235, 0.09);
    border-left: 4px solid #30c3eb;
    border-radius: 0 16px 16px 0;
    padding: 22px 26px;
    margin: 28px 0;
}

.hizmet-not p:last-child {
    margin-bottom: 0;
}

/* Makale içi görsel */
.hizmet-gorsel {
    margin: 30px 0;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.hizmet-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Yan sütun --- */
.hizmet-yan {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.yan-kutu {
    border-radius: 26px;
    padding: 30px 28px;
    border: 1px solid rgba(9, 31, 65, 0.08);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(9, 31, 65, 0.05);
}

.yan-kutu.koyu {
    background-color: #091f41;
    border-color: rgba(255, 255, 255, 0.1);
}

.yan-kutu h2,
.yan-kutu h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: #091f41;
    margin: 0 0 8px;
}

.yan-kutu.koyu h2,
.yan-kutu.koyu h3 {
    color: #ffffff;
}

.yan-kutu p {
    font-size: 15px;
    line-height: 25px;
    color: rgba(9, 31, 65, 0.65);
    margin: 0 0 18px;
}

.yan-kutu.koyu p {
    color: rgba(255, 255, 255, 0.75);
}

/* Telefon bloğu */
.yan-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background-color: #30c3eb;
    color: #091f41;
    border-radius: 100px;
    height: 60px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.35s ease;
}

.yan-tel:hover {
    background-color: #ffffff;
    color: #091f41;
    text-decoration: none;
}

.yan-tel svg {
    width: 22px;
    height: 22px;
}

.yan-wp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 100px;
    height: 54px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.yan-wp:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #091f41;
    text-decoration: none;
}

.yan-wp svg {
    width: 20px;
    height: 20px;
}

.yan-bilgi {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.yan-bilgi li {
    display: flex;
    gap: 11px;
    font-size: 15px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 13px;
}

.yan-bilgi li:last-child {
    margin-bottom: 0;
}

.yan-bilgi li svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 3px;
    color: #30c3eb;
}

.yan-bilgi a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s ease;
}

.yan-bilgi a:hover {
    color: #30c3eb;
    text-decoration: none;
}

/* Diğer hizmetler listesi */
.yan-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yan-liste li {
    border-bottom: 1px solid rgba(9, 31, 65, 0.08);
}

.yan-liste li:last-child {
    border-bottom: 0;
}

.yan-liste a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 0;
    font-size: 16px;
    font-weight: 600;
    color: #091f41;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yan-liste a svg {
    width: 15px;
    height: 15px;
    color: rgba(9, 31, 65, 0.3);
    transition: all 0.3s ease;
}

.yan-liste a:hover,
.yan-liste a.aktif {
    color: #30c3eb;
    text-decoration: none;
}

.yan-liste a:hover svg,
.yan-liste a.aktif svg {
    color: #30c3eb;
    transform: translateX(3px);
}


@media (max-width: 1199px) {
    .hizmet-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 32px;
    }

    .hizmet-makale {
        padding: 38px 34px;
    }

    .hizmet-makale h2 {
        font-size: 27px;
        line-height: 35px;
    }
}

@media (max-width: 991px) {
    .hizmet-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hizmet-yan {
        position: static;
    }
}

@media (max-width: 767px) {
    .hizmet-makale {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .hizmet-makale p,
    .hizmet-makale ul li,
    .hizmet-makale ol li {
        font-size: 16px;
        line-height: 28px;
    }

    .hizmet-makale h2 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 34px;
    }

}

/* ==========================================================================
   İÇ SAYFA BAŞLIK BANDI — arka planda slider görseli
   ========================================================================== */
.sayfa-basligi-con {
    background-image: url(../images/slider/samsun-kombi-tamiri.webp) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center right !important;
}

.sayfa-basligi-con::before {
    background: linear-gradient(180deg,
            rgba(9, 31, 65, 0.9) 0%,
            rgba(9, 31, 65, 0.84) 50%,
            rgba(15, 55, 110, 0.88) 100%) !important;
}

/* Şablonun yüzen dekoratif görselleri iç sayfalarda kullanılmıyor */
.sayfa-basligi-con .sub-banner-img1,
.sayfa-basligi-con .sub-banner-img2,
.sayfa-basligi-con .sub-banner-dots {
    display: none !important;
}

.sayfa-basligi-con .breadcrumb-con {
    margin-bottom: 18px;
}

.sayfa-basligi-con h1 {
    margin-bottom: 18px;
}

.sayfa-basligi-con .about-listing-con {
    margin-top: 26px;
}

@media (max-width: 991px) {
    .sayfa-basligi-con {
        background-position: 72% center !important;
    }

    .sayfa-basligi-con::before {
        background: linear-gradient(180deg,
                rgba(9, 31, 65, 0.93) 0%,
                rgba(9, 31, 65, 0.92) 100%) !important;
    }
}

/* ==========================================================================
   HAKKIMIZDA — firma hikâyesi metni
   ========================================================================== */
.hakkimizda-metin {
    max-width: 900px;
    margin: 46px auto 0;
}

.hakkimizda-metin p {
    font-size: 18px;
    line-height: 32px;
    color: rgba(9, 31, 65, 0.72);
    margin-bottom: 22px;
}

.hakkimizda-metin p strong {
    color: #091f41;
    font-weight: 700;
}

@media (max-width: 767px) {
    .hakkimizda-metin {
        margin-top: 32px;
    }

    .hakkimizda-metin p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 18px;
    }
}

/* ==========================================================================
   FOOTER ALT ŞERİT — telif solda, tasarımcı linki sağda
   ========================================================================== */
/* Alt şerit ortalanır — sağ alttaki dekoratif görselin altında kalmasın */
.footer-con .copyright-con {
    position: relative;
    z-index: 2;
}

.footer-con .copyright-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 11px;
    flex-wrap: wrap;
}

.footer-con .copyright-inner p {
    text-align: center;
}

/* Dekoratif görsel metnin okunmasını engellemesin */
.footer-con .footer-vector {
    opacity: 0.35;
    pointer-events: none;
    max-width: 280px;
    height: auto;
}

@media (max-width: 991px) {
    .footer-con .footer-vector {
        max-width: 190px;
        opacity: 0.22;
    }
}

/* Footer açıklama metni */
.footer-con .logo-content .text {
    max-width: 400px;
    line-height: 26px;
}

/* --- Footer logosu: oranı korunur, ekrana göre ölçeklenir --- */
.footer-con .middle_portion .footer-logo {
    max-width: 100%;
}

.footer-con .middle_portion .footer-logo figure {
    margin: 0;
    line-height: 0;
}

.footer-con .middle_portion .footer-logo img {
    width: auto;
    height: 86px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1199px) {
    .footer-con .middle_portion .footer-logo img {
        height: 76px;
    }
}

@media (max-width: 767px) {
    .footer-con .middle_portion .footer-logo img {
        height: 80px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .footer-con .middle_portion .footer-logo img {
        height: 68px;
    }
}

@media (max-width: 400px) {
    .footer-con .middle_portion .footer-logo img {
        height: 58px;
    }
}

/* --- Tablet (768-991px): tüm sütunlar sola hizalı, 3'lü düzen --- */
@media (min-width: 768px) and (max-width: 991px) {

    .footer-con .logo-content {
        text-align: left !important;
        margin-bottom: 40px;
    }

    .footer-con .middle_portion p {
        padding: 0 !important;
        max-width: 100%;
    }

    .footer-con .logo-content .social-icons {
        justify-content: flex-start;
    }

    .footer-con .middle_portion .links,
    .footer-con .middle_portion .contact {
        text-align: left;
    }

    /* Sütunlar arası dikey nefes payı */
    .footer-con .middle_portion .row>div {
        margin-bottom: 10px;
    }
}

/* --- Mobil (767px altı): footer sola hizalı, linkler tek satırda --- */
@media (max-width: 767px) {

    .footer-con {
        padding-top: 48px !important;
        text-align: left !important;
    }

    /* Şablon mobilde listelere sabit genişlik veriyor (links 100px, contact 177px)
       ve ortalıyor; linkler bu yüzden 3 satıra bölünüyordu. */
    .footer-con .links ul,
    .footer-con .contact ul {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
    }

    /* Logo bloğu üstten nefes alsın, altındaki metinle arası açılsın */
    .footer-con .middle_portion .footer-logo {
        margin-bottom: 22px !important;
    }

    .footer-con .logo-content {
        margin-bottom: 36px !important;
    }

    /* Başlıklar ve listeler sola yaslı */
    .footer-con .middle_portion .links,
    .footer-con .middle_portion .contact,
    .footer-con .middle_portion .heading {
        text-align: left !important;
    }

    /* Ok ikonu ile metin aynı satırda, metin sarınca ok yerinde kalır */
    .footer-con .middle_portion .links li {
        display: flex;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 13px;
    }

    .footer-con .middle_portion .links li i {
        flex: 0 0 auto;
        top: 5px;
    }

    .footer-con .middle_portion .links li a {
        flex: 1 1 auto;
        padding-left: 12px;
        font-size: 15.5px;
        line-height: 23px;
    }

    /* Logo bloğu ortalı kalsın, listeler solda */
    .footer-con .logo-content {
        text-align: center !important;
    }

    .footer-con .logo-content .social-icons {
        justify-content: center;
    }

    /* İletişim satırları da aynı mantıkla */
    .footer-con .middle_portion .contact .text {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .footer-con .middle_portion .contact .text i {
        flex: 0 0 auto;
        top: 5px;
    }

    .footer-con .middle_portion .heading {
        margin-bottom: 18px !important;
    }

    /* Sütunlar arası boşluk */
    .footer-con .middle_portion .row>div+div {
        margin-top: 30px;
    }
}

/* --- Küçük tablet / büyük telefon (576-767px): 2'li düzen, sola hizalı --- */
@media (min-width: 576px) and (max-width: 767px) {

    .footer-con .logo-content {
        text-align: left !important;
        margin-bottom: 34px;
    }

    .footer-con .middle_portion p {
        padding: 0 !important;
        max-width: 100%;
    }

    .footer-con .logo-content .social-icons {
        justify-content: flex-start;
    }

    .footer-con .middle_portion .row>div {
        margin-bottom: 28px;
    }

    .footer-con .middle_portion .row>div:last-child {
        margin-bottom: 0;
    }
}

/* 4. sütundaki ikinci başlık (Hizmet Bölgelerimiz) */
.footer-con .footer-alt-baslik {
    margin-top: 34px;
}

/* Bölge linkleri: etiket şeklinde, yer kaplamadan */
.footer-bolge-linkler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bolge-linkler li {
    margin: 0;
    padding: 0;
}

.footer-bolge-linkler li::before {
    display: none;
}

.footer-bolge-linkler a {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 13.5px;
    line-height: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bolge-linkler a:hover {
    background-color: #30c3eb;
    border-color: #30c3eb;
    color: #091f41;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-con .footer-alt-baslik {
        margin-top: 28px;
    }
}

.footer-con .copyright-inner p {
    margin: 0;
    text-align: left;
}

.footer-yasal-linkler {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 0;
}

/* Ayıraç: glyph yerine 1px'lik çizgi — yazı tipine bağlı kayma olmaz,
   flex hizalaması sayesinde her zaman tam ortada durur */
.footer-yasal-linkler li {
    display: inline-flex;
    align-items: center;
}

.footer-yasal-linkler li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 13px;
    margin: 0 18px;
    background-color: rgba(255, 255, 255, 0.28);
}

.footer-yasal-linkler a {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-yasal-linkler a:hover {
    color: #30c3eb;
    text-decoration: none;
}

/* Yer sağlayıcı linki: aynı sırada ama biraz daha belirgin */
.footer-yasal-linkler .ul-footer-bottom-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-yasal-linkler .ul-footer-bottom-link:hover {
    color: #30c3eb;
}

/* Yasal metin sayfaları */
.yasal-makale {
    max-width: 1000px;
    margin: 0 auto;
}

.yasal-makale .yasal-tarih {
    display: inline-block;
    background-color: rgba(48, 195, 235, 0.12);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 14px !important;
    font-weight: 600;
    color: #091f41 !important;
    margin-bottom: 28px !important;
}

.yasal-makale h2 {
    font-size: 26px;
    line-height: 34px;
    margin-top: 38px;
}

.footer-yasal-linkler {
    justify-content: center;
}

@media (max-width: 767px) {
    .footer-yasal-linkler {
        justify-content: center;
        width: 100%;
    }

    .footer-yasal-linkler li:not(:last-child)::after {
        margin: 0 12px;
    }

    .yasal-makale h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

.ul-footer-bottom-link {
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.35s ease;
}

.ul-footer-bottom-link:hover {
    color: #30c3eb;
    text-decoration: none;
}

@media (max-width: 575px) {
    .footer-con .copyright-inner {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .footer-con .copyright-inner p {
        text-align: center;
        width: 100%;
    }
}

/* ==========================================================================
   HİZMET BÖLGELERİ — arka planda slider görseli
   ========================================================================== */
.bolgeler-con {
    background-image: url(../images/slider/samsun-kombi-tamiri.webp) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center right !important;
}

/* Şablonun düz mavi örtüsü yerine, görselin görünmesine izin veren gradient */
.bolgeler-con::before {
    background: linear-gradient(100deg,
            rgba(9, 31, 65, 0.95) 0%,
            rgba(9, 31, 65, 0.88) 45%,
            rgba(15, 55, 110, 0.74) 100%) !important;
}

@media (max-width: 991px) {
    .bolgeler-con {
        background-position: 70% center !important;
    }

    .bolgeler-con::before {
        background: linear-gradient(180deg,
                rgba(9, 31, 65, 0.93) 0%,
                rgba(9, 31, 65, 0.9) 60%,
                rgba(9, 31, 65, 0.95) 100%) !important;
    }
}

/* ==========================================================================
   İLETİŞİM & HARİTA — solda bilgiler, sağda Google Maps
   ========================================================================== */
.iletisim-con {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../images/slider/brulor-bakimi.webp) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center left !important;
}

/* Düz mavi örtü yerine gradient — solda metin okunur, sağda harita zaten örtüyor */
.iletisim-con::before {
    background: linear-gradient(105deg,
            rgba(9, 31, 65, 0.95) 0%,
            rgba(9, 31, 65, 0.89) 45%,
            rgba(15, 55, 110, 0.76) 100%) !important;
}

@media (max-width: 991px) {
    .iletisim-con {
        background-position: 68% center !important;
    }

    .iletisim-con::before {
        background: linear-gradient(180deg,
                rgba(9, 31, 65, 0.93) 0%,
                rgba(9, 31, 65, 0.9) 55%,
                rgba(9, 31, 65, 0.95) 100%) !important;
    }
}

.iletisim-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.iletisim-content .special-text {
    margin-bottom: 12px;
}

.iletisim-content h2 {
    margin-bottom: 18px;
}

.iletisim-content p {
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

/* --- Bilgi listesi --- */
.iletisim-list {
    margin-bottom: 34px !important;
}

.iletisim-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.iletisim-ikon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    background-color: rgba(48, 195, 235, 0.16);
    border: 1px solid rgba(48, 195, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #30c3eb;
}

.iletisim-ikon svg {
    width: 21px;
    height: 21px;
}

.iletisim-metin {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.iletisim-metin strong {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #30c3eb;
}

.iletisim-metin a,
.iletisim-metin .deger {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.35s ease;
}

.iletisim-metin a:hover {
    color: #30c3eb;
    text-decoration: none;
}

.iletisim-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* --- Harita --- */
.iletisim-harita {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.iletisim-harita iframe {
    display: block;
    width: 100%;
    height: 470px;
    border: 0;
    filter: grayscale(0.15);
}

.harita-bilgi {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px 26px;
    background-color: rgba(9, 31, 65, 0.92);
}

.harita-baslik {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
}

.harita-adres {
    font-size: 15px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.75);
}

.harita-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #30c3eb;
    text-decoration: none;
    transition: gap 0.35s ease;
}

.harita-link svg {
    width: 16px;
    height: 16px;
}

.harita-link:hover {
    color: #ffffff;
    text-decoration: none;
    gap: 11px;
}

@media (max-width: 1199px) {
    .iletisim-inner {
        gap: 40px;
    }

    .iletisim-harita iframe {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .iletisim-con {
        padding: 55px 40px;
    }

    .iletisim-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .iletisim-content p {
        font-size: 17px;
        line-height: 28px;
    }

    /* Mobil/tablette içerik sola yaslı — şablonun ortalama kuralı geçersiz */
    .iletisim-content,
    .iletisim-content .special-text,
    .iletisim-content h2,
    .iletisim-content p {
        text-align: left !important;
    }

    .iletisim-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .iletisim-metin {
        align-items: flex-start;
        text-align: left;
    }

    .iletisim-metin strong,
    .iletisim-metin a,
    .iletisim-metin .deger {
        text-align: left;
    }

    .iletisim-cta {
        justify-content: flex-start;
    }

    .iletisim-harita iframe {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .iletisim-con {
        padding: 48px 30px;
    }
}

@media (max-width: 575px) {
    .iletisim-con {
        padding: 42px 24px;
    }

    .iletisim-harita {
        border-radius: 20px;
    }

    .iletisim-harita iframe {
        height: 280px;
    }

    .harita-bilgi {
        padding: 18px 20px;
    }

    .iletisim-cta .hero-btn {
        flex: 1 1 100%;
    }

    .iletisim-list li {
        gap: 13px;
        margin-bottom: 17px;
    }
}

/* ==========================================================================
   SERVİS SÜRECİ İKONLARI
   SVG'ler kendi mavi dairesini taşıdığı için şablonun daire zemini kalkıyor
   ========================================================================== */
.how-it-works-con .work-box figure {
    background-color: transparent !important;
    padding: 0;
}

.how-it-works-con .work-box figure img {
    width: 130px;
    height: 130px;
    display: block;
}

@media (max-width: 991px) {

    .how-it-works-con .work-box figure,
    .how-it-works-con .work-box figure img {
        width: 104px;
        height: 104px;
    }
}

@media (max-width: 575px) {

    .how-it-works-con .work-box figure,
    .how-it-works-con .work-box figure img {
        width: 92px;
        height: 92px;
    }
}

/* ==========================================================================
   İKİNCİ EL KOMBİ — metin solda, 2x2 dikey foto ızgarası sağda
   ========================================================================== */
.ikinci-el-con {
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url(../images/slider/samsun-kombi-servisi.webp) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center left !important;
}

/* Düz mavi örtü yerine gradient — sol tarafta metin okunur, sağda görsel nefes alır */
.ikinci-el-con::before {
    background: linear-gradient(105deg,
            rgba(9, 31, 65, 0.95) 0%,
            rgba(9, 31, 65, 0.9) 42%,
            rgba(15, 55, 110, 0.78) 100%) !important;
}

@media (max-width: 991px) {
    .ikinci-el-con {
        background-position: 65% center !important;
    }

    .ikinci-el-con::before {
        background: linear-gradient(180deg,
                rgba(9, 31, 65, 0.93) 0%,
                rgba(9, 31, 65, 0.9) 55%,
                rgba(9, 31, 65, 0.95) 100%) !important;
    }
}

.ikinci-el-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ikinci-el-content .special-text {
    margin-bottom: 12px;
}

.ikinci-el-content h2 {
    margin-bottom: 20px;
}

.ikinci-el-content p {
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
}

.ikinci-el-list {
    margin-bottom: 32px !important;
}

.ikinci-el-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 12px;
}

.ikinci-el-list li svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 4px;
    color: #30c3eb;
}

.ikinci-el-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* --- Foto ızgarası: hepsi 3:4 dikey, eşit boyut --- */
.ikinci-el-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ikinci-el-gallery figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.06);
}

.ikinci-el-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.ikinci-el-gallery figure:hover img {
    transform: scale(1.06);
}

/* Izgaraya hafif kademe: tek sütunlar aşağı kayar */
.ikinci-el-gallery figure:nth-child(2),
.ikinci-el-gallery figure:nth-child(4) {
    margin-top: 34px;
}

@media (max-width: 1199px) {
    .ikinci-el-inner {
        gap: 40px;
    }

    .ikinci-el-content p {
        font-size: 17px;
        line-height: 28px;
    }
}

@media (max-width: 991px) {
    .ikinci-el-con {
        padding: 60px 40px;
    }

    .ikinci-el-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ikinci-el-gallery figure:nth-child(2),
    .ikinci-el-gallery figure:nth-child(4) {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .ikinci-el-con {
        padding: 50px 30px;
    }
}

@media (max-width: 575px) {
    .ikinci-el-con {
        padding: 44px 24px;
    }

    .ikinci-el-gallery {
        gap: 14px;
    }

    .ikinci-el-gallery figure {
        border-radius: 18px;
    }

    .ikinci-el-cta .hero-btn {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   BAKIM ÖNCESİ / SONRASI GALERİSİ
   Fotoğraflar farklı boyutlarda geldiği için sabit orana kilitleniyor
   ========================================================================== */
.before-after-gallery-con .single-item-con {
    align-items: stretch;
}

.before-after-gallery-con .result-box {
    flex: 1 1 0;
    min-width: 0;
}

.before-after-gallery-con .result-box figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 40px;
}

.before-after-gallery-con .result-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 40px;
}

@media (max-width: 767px) {
    .before-after-gallery-con .single-item-con {
        flex-direction: column;
        gap: 20px;
    }

    .before-after-gallery-con .result-box {
        width: 100%;
    }

    .before-after-gallery-con .result-box figure,
    .before-after-gallery-con .result-box figure img {
        border-radius: 26px;
    }

    .before-after-gallery-con .result-box h3 {
        font-size: 20px !important;
        line-height: 26px;
        bottom: 22px;
        padding: 0 18px;
    }

    .before-after-gallery-con .result-box span {
        top: 18px;
        left: 18px;
        padding: 6px 20px;
    }
}

/* --- Hakkımızda: köşedeki dekoratif şekil --- */
.about-us-con .about-vector {
    width: 230px;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .about-us-con .about-vector {
        width: 170px;
    }
}

@media (max-width: 767px) {
    .about-us-con .about-vector {
        width: 120px;
        opacity: 0.6;
    }
}

/* --- Hakkımızda: tek görsel düzeni --- */
.about-us-con .about-left-con {
    width: 100%;
}

.about-single-img {
    width: 100%;
    max-width: 470px;
}

.about-single-img figure img {
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .about-single-img {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-single-img figure img {
        max-height: 520px;
    }
}


/* --- Uzun metinli primary buton (ör. "Hemen Ara: 0543 844 6155") --- */
.primary_btn.btn-genis {
    min-width: 0;
    width: auto;
    font-size: 17px;
    padding-left: 34px;
    padding-right: 68px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .primary_btn.btn-genis {
        font-size: 15px;
        height: 58px;
        line-height: 58px;
        border-radius: 29px;
        padding-left: 24px;
        padding-right: 60px;
    }

    .primary_btn.btn-genis figure {
        width: 38px;
        height: 38px;
        right: 10px;
        top: 10px;
    }
}

@media (max-width: 380px) {
    .primary_btn.btn-genis {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 54px;
    }
}

/* --- Mobilde (767px altı) üst bardan adres ve sağ blok gizlenir --- */
@media (max-width: 767px) {

    /* Adres satırı */
    .topbar-con .top-bar-info ul li:last-child {
        display: none !important;
    }

    /* "Her Marka Kombiye Servis" + e-posta bloğu */
    .topbar-con .top-bar-right-con {
        display: none !important;
    }

    /* Tek öğe kaldığı için üst bar ortalanır */
    .topbar-con .top-bar-inner-content {
        justify-content: center;
    }

    .topbar-con .top-bar-info ul {
        justify-content: center;
    }

    .topbar-con .top-bar-info ul li {
        border-right: 0 !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
}

/* --- Header logosu: sabit yükseklik, mobilde kademeli küçülme --- */
.header-con .navbar-brand {
    flex: 0 0 auto;
    max-width: 340px;
}

.header-con .navbar-brand figure {
    margin: 0;
    line-height: 0;
}

.header-con .navbar-brand img {
    width: auto;
    height: 72px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Büyük masaüstü altında menüye yer açmak için kademeli küçülme */
@media (max-width: 1399px) {
    .header-con .navbar-brand {
        max-width: 300px;
    }

    .header-con .navbar-brand img {
        height: 64px;
    }
}

@media (max-width: 1199px) {
    .header-con .navbar-brand {
        max-width: 265px;
    }

    .header-con .navbar-brand img {
        height: 56px;
    }
}

/* 991px altında menü hamburger'a döner, logo yeniden büyüyebilir */
@media (max-width: 991px) {
    .header-con .navbar-brand {
        max-width: 285px;
    }

    .header-con .navbar-brand img {
        height: 60px;
    }
}

/* Mobilde logo belirgin şekilde büyütüldü */
@media (max-width: 767px) {
    .header-con .navbar-brand {
        max-width: 340px;
    }

    .header-con .navbar-brand img {
        height: 80px;
    }
}

@media (max-width: 575px) {
    .header-con .navbar-brand {
        max-width: 300px;
    }

    .header-con .navbar-brand img {
        height: 70px;
    }
}

@media (max-width: 400px) {
    .header-con .navbar-brand {
        max-width: 250px;
    }

    .header-con .navbar-brand img {
        height: 60px;
    }
}

/* Logo büyüdüğü için hamburger butonuyla çakışmasın */
@media (max-width: 991px) {
    .header-con .navbar {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .header-con .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
    }
}

/* --- Marka şeridi (logo yerine metin) --- */
.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.brand-list li {
    background-color: #ffffff;
    border: 1px solid rgba(9, 31, 65, 0.1);
    border-radius: 100px;
    padding: 12px 26px;
    font-size: 17px;
    font-weight: 700;
    color: #091f41;
    box-shadow: 0 6px 18px rgba(9, 31, 65, 0.05);
    transition: all 0.35s ease-in-out;
}

.brand-list li:hover {
    background-color: #30c3eb;
    border-color: #30c3eb;
    color: #091f41;
    transform: translateY(-3px);
}

.brand-list li.brand-more {
    background-color: transparent;
    border-style: dashed;
    border-color: rgba(9, 31, 65, 0.25);
    box-shadow: none;
    font-weight: 500;
    color: rgba(9, 31, 65, 0.7);
}

@media (max-width: 767px) {
    /* Mobilde markalar 2 sütunlu ızgara — eşit genişlik, düzgün hizalama */
    .brand-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brand-list li {
        padding: 11px 10px;
        font-size: 14.5px;
        text-align: center;
    }

    /* "ve tüm diğer markalar" tek başına iki sütuna yayılsın */
    .brand-list li.brand-more {
        grid-column: 1 / -1;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    float: left;
    overflow: hidden;
    border-radius: 30px;
    background-color: #0b1a2e;
    isolation: isolate;
    /* Header'ın hemen altına oturur — şablondaki banner gibi araya beyaz boşluk girmez */
    margin: 0 0 60px;
}

.hero-slides {
    position: relative;
    width: 100%;
    /* Mobilde daha uzun, masaüstünde 16:7 oranına yakın */
    min-height: 560px;
    height: 78vh;
    max-height: 760px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0.9s;
    display: flex;
    align-items: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* --- Görsel katmanı --- */
.hero-slide-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    /* Teknisyen sağda kalıyor, dar ekranda da kadrajda tutuyoruz */
    background-position: 72% center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    z-index: 0;
}

.hero-slide.is-active .hero-slide-media {
    transform: scale(1);
}

/* --- Okunabilirlik katmanı --- */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(9, 31, 65, 0.94) 0%,
            rgba(9, 31, 65, 0.86) 32%,
            rgba(9, 31, 65, 0.55) 58%,
            rgba(9, 31, 65, 0.15) 100%);
}

/* --- İçerik --- */
.hero-slide-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1711px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-copy {
    max-width: 640px;
    /* Alttaki nokta göstergesinin metinle çakışmaması için güvenlik payı */
    padding-bottom: 56px;
}

/* H1 ve H2/DIV başlıkları birebir aynı görünsün */
h1.hero-title,
h2.hero-title,
div.hero-title {
    font-family: inherit;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(48, 195, 235, 0.16);
    border: 1px solid rgba(48, 195, 235, 0.45);
    color: #30c3eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero-eyebrow svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    color: #ffffff;
    font-size: 68px;
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.hero-title .hero-title-accent {
    display: block;
    color: #30c3eb;
}

.hero-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 30px;
    max-width: 560px;
}

/* --- Butonlar --- */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 58px;
    padding: 0 30px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease-in-out;
    white-space: nowrap;
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.hero-btn-primary {
    background-color: #30c3eb;
    color: #091f41;
}

.hero-btn-primary:hover {
    background-color: #ffffff;
    color: #091f41;
    text-decoration: none;
}

.hero-btn-ghost {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.hero-btn-ghost:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #091f41;
    text-decoration: none;
}

/* --- Güven rozetleri --- */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-badges li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.hero-badges li svg {
    width: 18px;
    height: 18px;
    color: #30c3eb;
    flex: 0 0 18px;
}

/* --- Oklar --- */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(9, 31, 65, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease-in-out;
}

.hero-nav:hover {
    background-color: #30c3eb;
    border-color: #30c3eb;
    color: #091f41;
}

.hero-nav svg {
    width: 20px;
    height: 20px;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

/* --- Noktalar --- */
.hero-dots {
    position: absolute;
    /* Masaüstünde metin sol tarafta olduğu için noktalar sağ altta durur */
    right: 60px;
    bottom: 36px;
    z-index: 6;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 5px;
    border-radius: 100px;
    border: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}

.hero-dot.is-active {
    width: 54px;
    background-color: #30c3eb;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1399px) {
    .hero-title {
        font-size: 58px;
    }

    .hero-slide-inner {
        padding: 0 45px;
    }

    .hero-dots {
        right: 45px;
    }
}

@media (max-width: 1199px) {
    .hero-slides {
        min-height: 520px;
        height: 70vh;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-text {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        border-radius: 24px;
        margin: 0 0 45px;
    }

    /* Slaytlar aynı grid hücresinde üst üste durur: kap yüksekliği en uzun
       slayta göre sabitlenir, geçişlerde sayfa aşağı-yukarı zıplamaz */
    .hero-slides {
        min-height: 500px;
        height: auto;
        padding: 80px 0;
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        display: flex;
        grid-area: 1 / 1;
    }

    /* Mobilde görsel sağa kayıyor, metin sol üstte kalıyor */
    .hero-slide-media {
        background-position: 76% center;
    }

    .hero-slide::before {
        background: linear-gradient(180deg,
                rgba(9, 31, 65, 0.9) 0%,
                rgba(9, 31, 65, 0.82) 55%,
                rgba(9, 31, 65, 0.92) 100%);
    }

    .hero-slide-inner {
        padding: 0 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-nav {
        width: 46px;
        height: 46px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    /* Mobilde metin tam genişliğe yayıldığı için noktalar sola alınır,
       içerik de nokta yüksekliği kadar yukarıda tutulur */
    .hero-dots {
        left: 32px;
        right: auto;
        bottom: 26px;
    }

    .hero-copy {
        padding-bottom: 42px;
    }
}

@media (max-width: 767px) {
    .hero-slides {
        min-height: 0;
        padding: 64px 0 76px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .hero-eyebrow {
        font-size: 13px;
        padding: 7px 15px;
        margin-bottom: 18px;
    }

    .hero-cta {
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-btn {
        height: 54px;
        font-size: 16px;
        padding: 0 24px;
        flex: 1 1 100%;
    }

    .hero-badges {
        gap: 10px 20px;
    }

    .hero-badges li {
        font-size: 14px;
    }

    /* Küçük ekranda oklar kalabalık yapıyor, sadece noktalar kalsın */
    .hero-nav {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        border-radius: 18px;
        margin: 0 0 35px;
    }

    .hero-slide-inner {
        padding: 0 22px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-dots {
        left: 22px;
        right: auto;
        bottom: 22px;
    }

    .hero-copy {
        padding-bottom: 38px;
    }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .hero-slide-media,
    .hero-btn,
    .hero-nav,
    .hero-dot {
        transition: none !important;
    }

    .hero-slide-media,
    .hero-slide.is-active .hero-slide-media {
        transform: none;
    }
}
