/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ================================
   GÖRSEL BANNER BÖLÜMÜ
===================================*/
.banner {
    display: none;
}

@media (min-width: 1025px) {

    /* Banner Bölümü */
    .banner {
        display: block;
        width: 100%;
        max-width: 1200px;
        height: 310px;
        margin: 0 auto;
        position: relative;
        margin-top: 130px;
    }

    .banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        fetchpriority: high; /* LCP için yüksek öncelikli yükleme */
    }

    /* Banner Üzeri Yazı Alanı */
    .banner-text {
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        color: white;
        text-align: center;
        width: 300px;
    }

    .banner-text h2 {
        font-size: 18px;
        font-weight: bold;
        margin: 0 0 20px 0;
        white-space: nowrap;
    }

    .banner-text p {
        font-size: 15px;
        margin: 0 0 30px 0;
    }

    /* Call Button (Arama Butonu) */
    .call-btn {
        position: relative;
        overflow: hidden;
        display: inline-block;
        background: #ffffff;
        padding: 12px 25px;
        border-radius: 40px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        margin-top: 50px;
        animation: breathe 1.0s ease-in-out infinite;
        transition: all 0.25s ease;
    }

    .call-btn:hover {
        color: #0056d2;
        text-decoration: underline;
        transform: scale(1.1);
        background: #f3f3f3;
    }

    .call-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: skewX(-20deg);
        animation: shine 1.2s linear infinite;
    }
}

/* Banner Buton Animasyonları (global kalabilir) */
@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 130%; }
}
/* ================================
   GÖRSEL BANNER BÖLÜMÜ BİTİŞ
===================================*/
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/









/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ==============================
   HİZMETLER – BÖLÜMÜ
================================= */
.services-section {
    display: none;
}

@media (min-width: 1200px) {

    .services-section {
        display: flex;
        width: 100%;
        padding: 60px 0;
        justify-content: center;
        background: #f2f2f2;
    }

    .services-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-text {
        margin-bottom: 40px;
    }

    .section-text h4 {
        color: #003399;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .section-text h2 {
        font-size: 32px;
        font-weight: 700;
        margin: 0;
    }

    .blue-line {
        width: 80px;
        height: 3px;
        background: #003399;
        margin: 12px 0 18px 0;
    }

    .section-text p {
        color: #444;
        font-size: 16px;
        max-width: 550px;
    }

    /* Hizmet Kartları */
    .service-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .service-card {
        background: #fff;
        width: 220px;
        height: 250px;
        padding: 18px 15px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        text-align: center;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .service-card img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
        min-height: 32px;
    }

    .service-card p {
        font-size: 12.5px;
        line-height: 1.45;
        color: #3a3a3a;
    }
}
/* ==============================
   HİZMETLER – BÖLÜMÜ BİTİŞ
================================= */
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/











/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* ============================
   MANİFESTO – SADECE MASAÜSTÜ
============================ */
.manifesto{
  display: none;
}

@media (min-width: 1200px){

  .manifesto{
    display: block;
    background: #f2f2f2;
    padding: 60px 0;
    border-bottom: 1px solid #eef2f7;
  }

  .manifesto-inner{
    width: min(1180px, 92%);
    margin: 0 auto;
  }

  /* Başlık */
  .manifesto-title{
    margin: 0 0 26px;
  }

  .manifesto-title-main{
    display: inline-block;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.55px;

    background: linear-gradient(
      90deg,
      #0b53c7 0%,
      #0a66ff 65%,
      #0f172a 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .manifesto-title-sub{
    display: block;
    margin-top: 10px;
    font-size: 19px;
    font-weight: 600;
    color: #475569;
  }

  /* Başlık alt çizgi */
  .manifesto-title::after{
    content: "";
    display: block;
    width: 76px;
    height: 3px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b53c7, #0a66ff);
  }

  /* İçerik – 2 kolon */
  .manifesto-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
    margin-bottom: 26px;
  }

  .manifesto-content p{
    margin: 0 0 14px;
    font-size: 15.8px;
    line-height: 1.8;
    color: #334155;
  }

  .manifesto-content p:last-child{
    margin-bottom: 0;
  }

  /* CTA */
  .manifesto-cta{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
  }

  .manifesto-cta a{
    font-size: 16px;
    font-weight: 900;
    color: #0b53c7;
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 0;
  }

  .manifesto-cta a:hover{
    text-decoration: underline;
  }

  .manifesto-cta span{
    margin-top: 4px;
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
  }
}
/* =========================================
   MANİFESTO – SADECE MASAÜSTÜ BİTİŞ
============================================ */
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/













/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* =========================================
   HİZMET VERDİĞİMİZ CİHAZLAR BÖLÜMÜ
============================================ */
.kart {
    display: none;
}
@media (min-width: 1200px) {

    .kart {
        display: block;
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px 20px;
        text-align: center;
    }

    .kart h2 {
        font-size: 28px;
        margin-bottom: 10px;
        color: #333;
    }

    .aciklama {
        font-size: 16px;
        color: #666;
        margin-bottom: 40px;
    }

    /* 4'lü grid */
    .kartlar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Kart */
    .kart-item {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover – masaüstü */
    .kart-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .kart-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 15px;
    }

    .kart-item h3 {
        font-size: 15px;
        color: #333;
        line-height: 1.4;
    }
}
/* =========================================
   HİZMET VERDİĞİMİZ CİHAZLAR BÖLÜMÜ BİTİŞ
============================================ */
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/












/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ================================
   KART ONARIM – BÖLÜMÜ
=================================== */
.kart {
    display: none;
}

@media (min-width: 1200px) {

    .kart {
        display: block;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 40px;
        text-align: center;
    }

    .kart-banner-container {
        position: relative;
    }

    .kart-banner {
        width: 100%;
        height: auto;
        display: block;
    }

    .kart-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .kart-text h3 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .kart-text p {
        font-size: 1.2rem;
    }
}
/* ================================
   KART ONARIM – BÖLÜMÜ BİTİŞ
=================================== */
/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/













/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* =========================
   NEDEN BİZ – BÖLÜMÜ
========================= */
.title,
.advantages {
    display: none;
}

@media (min-width: 1200px) {

    .title {
        display: block;
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
        color: #333;
    }

    .advantages {
        display: grid;
        max-width: 1150px;
        margin: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 100px;
    }

    .adv-box {
        background: #fff;
        padding: 35px 20px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.07);
        border-bottom: 6px solid #d60000;
        transition: 0.25s ease;
    }

    .adv-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .adv-number {
        font-size: 34px;
        font-weight: 700;
        color: #d60000;
        margin-bottom: 10px;
    }

    .adv-text {
        font-size: 17px;
        color: #444;
    }
}
/* =========================
   NEDEN BİZ – BÖLÜMÜ BİTİŞ
========================= */
/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/



















/*______________________________________________________________________________________MOBİL______________________________________________________________________________________________*/










/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* =========================
    MOBİL İLK GÖRSEL BANNER
   ========================= */
.mobile {
  display: none;
}

@media (max-width: 768px) {

  .mobile {
    display: block;
  }

  html, body {
    overflow-x: hidden;
  }

  body {
    position: relative;
    width: 100%;
    left: 0;
  }

  /* Görsel alanı */
  .mobile-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10%;
  }

  .mobile-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Siyah saydam alan */
  .mobile-overlay {
    position: absolute;
    inset: 0;               /* top:0; left:0; width/height yerine */
    background: rgba(0, 0, 0, 0.45);
    z-index: 10;
    pointer-events: none;   /* tıklamaları engellemesin */
  }

  /* Yazı Alanı */
  .mobile-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 20;
    width: 90%;
    pointer-events: none;   /* sadece buton tıklanabilir olacak */
  }

  .mobile-banner-text h2 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: bold;
  }

  .mobile-banner-text p {
    font-size: 16px;
    margin: 0 0 15px 0;
  }

  /* BUTON - Reklamcı animasyonlu */
  .mobile-call-btn {
    pointer-events: auto;   /* banner-text pointer-events none iken buton çalışsın */
    display: inline-block;
    padding: 10px 20px;
    background: #d60000 !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    margin-top: 35px;

    /* Mobilde daha iyi his (görseli bozmaz) */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;

    animation: reklamPulse 1.4s infinite ease-in-out;
  }

  /* Reklamcı animasyon */
  @keyframes reklamPulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(255, 59, 59, 0.6);
    }
    50% {
      transform: scale(1.08);
      box-shadow: 0 0 15px rgba(255, 59, 59, 0.8);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(255, 59, 59, 0.6);
    }
  }

.only-mobile {
  display: block;
}

@media (min-width: 769px) {
  .only-mobile {
    display: none;
  }
}
/* =========================
   MOBİL İLK GÖRSEL BİTİŞ
   ========================= */
/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/












/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* =====================================
   MOBILE WİDGET BAŞLANGIÇ
===================================== */
/* Tablet + Masaüstü gizle */
@media (min-width: 769px){
  .mobile-stats-widget{ display:none !important; }
}

/* Mobil */
@media (max-width: 768px){

  /* Section zemini siteyle aynı */
  .mobile-stats-widget{
    width: 100%;
    background: #f2f2f2;
    padding: 26px 0 18px; /* yan boşluk iç container’da */
  }

  /* İç container: sağ/sol sınır net, ortalı */
  .mobile-stats-widget .ms-inner{
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px;

    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  /* Başlık */
  .mobile-stats-widget .ms-slogan{
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.2px;
    color: #0f172a;

    position: relative;
    padding-left: 12px;
    text-align: center;
  }

  /* Sol accent çizgisi */
  .mobile-stats-widget .ms-slogan::before{
    content:"";
    position:absolute;
    left:0;
    top:.18em;
    width: 4px;
    height: .95em;
    border-radius: 999px;
    background: #0b53c7;
  }

  /* Sayılar */
  .mobile-stats-widget .ms-numbers{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0 14px;
  }

  .mobile-stats-widget .ms-item{
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 14px;
    padding: 12px 12px;
  }

  .mobile-stats-widget .ms-num{
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
    margin: 0 0 6px;
    color: #0b53c7;
    letter-spacing: -0.4px;
  }

  .mobile-stats-widget .ms-label{
    font-size: 12.5px;
    font-weight: 800;
    color: rgba(15,23,42,0.70);
  }

  /* Açıklama metni */
  .mobile-stats-widget .ms-desc{
    margin: 0;
    max-width: 600px;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(15,23,42,0.78);
  }
}
/* ==================================================
               MOBİL WİDGET BİTİŞ 
================================================== */
/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/















/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ==================================================
   HİZMETLERİMİZ (MOBILE) — KARTLAR BAŞLANGIÇ
================================================== */
/* Tablet + Masaüstünde gizle */
@media (min-width: 769px){
  .mobile-services{ display: none !important; }
}

@media (max-width: 768px){

  /* daha yumuşak boşluk */
  .mobile-services{
    padding: 34px 14px 26px;
  }

  /* mini başlık: çizgiler ince + yazı daha soft */
  .mobile-services .ms-title{
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 800;
    color: #374151;
    margin: 0 auto 8px;
  }

  .mobile-services .ms-title::before,
  .mobile-services .ms-title::after{
    width: 18px;
    height: 1px;
    background: rgba(15,23,42,.14);
  }

  /* ana başlık: daha zarif */
  .mobile-services .ms-slogan{
    font-size: 24px;
    font-weight: 850;         /* 950 yerine */
    line-height: 1.22;
    letter-spacing: -0.15px;  /* daha yumuşak */
    margin: 0 auto 16px;
    color: #0f172a;
  }

  /* alt çizgi: daha ince + daha kısa + soft */
  .mobile-services .ms-slogan::after{
    width: 54px;
    height: 2px;
    margin: 12px auto 0;
    opacity: .75;
    background: linear-gradient(90deg, rgba(11,83,199,.85), rgba(103,216,231,.85));
  }

  /* vurgu gradient: biraz daha sakin */
  .mobile-services .ms-slogan span{
    background: linear-gradient(90deg, rgba(11,83,199,.95), rgba(103,216,231,.95));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
  }
}

  /* ======KART ALANI======= */
  .hizmetler{
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 16px;
  }

  /* =======  KART============== */
  .pro-card{
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
  }

  /* Görsel */
  .pro-card-img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  /* Alt gradient */
  .pro-card-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    background: linear-gradient(
      to top,
      rgba(0,0,40,.75),
      rgba(0,0,40,0)
    );
  }

  /* İçerik */
  .pro-card-content{
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
  }

  .pro-card-content h3{
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    max-width: 75%;
  }

  /* Ok butonu */
  .pro-card-btn{
    width: 42px;
    height: 42px;
    border-radius: 999px;

    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    flex-shrink: 0;
  }

  .pro-card-btn::before{
    content: "→";
    font-size: 20px;
    font-weight: 900;
    color: #0b53c7;
    position: relative;
    left: 1px;
  }

  /* Erişilebilirlik */
  .sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
}
/* ==================================================
   HİZMETLERİMİZ (MOBILE) — KARTLAR BİTİŞ
================================================== */
/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/











/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ==================================================
       MObile NEDEN BİZİ TERCİH ETMELİSİNİZ
================================================== */
/* Varsayılan: HER YERDE GİZLİ */
.mobile-why-us{
  display: none !important;
}

/* SADECE MOBİL */
@media (max-width: 767px){

  .mobile-why-us{
    display: block !important;
    padding: 8px 15px 20px;
    background: #f2f2f2;
  }

  .mw-title{
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #0f172a;
  }

  .mw-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 16px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(15,23,42,.08);
  }

  .mw-icon{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .mw-item h3{
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #0f172a;
  }

  .mw-item p{
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
    color: #3a3a3a;
  }
}
/* ==================================================
       MObile NEDEN BİZİ TERCİH ETMELİSİNİZ BİTİŞ
================================================== */
/**-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

