/* MASAÜSTÜ GÖRÜNÜM */
body {
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    font-family: Arial, sans-serif;
}

header {
    width: 100%;
    height: 200px;
    background: #f2f2f2;
}

/* Banner Bölümü */
.banner {
    width: 1200px;
    height: 310px;
    margin: 0 auto;
    position: relative;
}

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

.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;
}

@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 130%; }
}

/* Hizmetler Bölümü */
.services-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    background: #f2f2f2;
}

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

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

.section-text h4 {
    color: #0066ff;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.blue-line {
    width: 80px;
    height: 3px;
    background: #0066ff;
    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 !important;
}

/* İletişim Bölümü */
.contact-section {
    width: 100%;
    background: #000;
    color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-text {
    max-width: 850px;
}

.contact-text h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #dcdcdc;
}

.contact-btn {
    border: 1px solid white;
    padding: 12px 25px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    white-space: nowrap;
}

.contact-btn:hover {
    background: white;
    color: black;
}

/* Markalar Bölümü */
.brands-section {
    width: 100%;
    padding: 70px 0;
    display: flex;
    justify-content: center;
}

.brands-container {
    width: 1200px;
    text-align: center;
}

.brands-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.brands-subtitle {
    color: #3a3a3a !important;  
    font-size: 16px;
    margin-bottom: 45px;
}

.brands-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    justify-items: center;
    align-items: center;
    gap: 35px 20px;
    position: relative;
}

.brands-grid img {
    width: 120px;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.2s;
    padding-bottom: 25px;
    border-bottom: 1px solid #dcdfe6;
}

.brands-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Kart Onarım Bölümü */
.kart {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    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: 0px;
    width: 100%;
    box-sizing: border-box;
}

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

.kart-text p {
    font-size: 1.2rem;
}

/* Neden Biz Bölümü */
.why-section {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background: #f2f2f2;
}

.why-container {
    width: 1200px;
    margin: 0 auto;
}

.why-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
}

.why-column.left {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: left;
}

.why-column.right {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: right;
}

.why-item {
    display: flex;
    gap: 18px;
}

.why-item i {
    font-size: 34px;
    color: #e50914;
    min-width: 34px;
}

.why-column.left .why-item {
    flex-direction: row;
}

.why-column.right .why-item {
    flex-direction: row-reverse;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Mobil görsel stili */
@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;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 10;
    }

    /* 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%;
    }

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

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

    /* BUTON - Reklamcı animasyonlu */
    .mobile-call-btn {
        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;

        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);
        }
    }

    /* Desktop gizle */
    .desktop { 
        display: none;
    }
}

/* Checkbox gizli */
.menu-checkbox {
    display: none;
}

/* --- MENÜ BUTONU --- */
.mobile-menu-btn {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    background: #000;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 9999;
    cursor: pointer;
}

/* --- YARIM EKRAN MENÜ PANELİ (KAPALI) --- */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);
    z-index: 9998;
    padding: 150px 25px 40px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
}

/* --- MENÜ PANELİ (AÇIK) --- */
.menu-checkbox:checked ~ .mobile-menu-panel {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

/* Menü liste ayarları */
.mobile-menu-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-panel ul li {
    margin-bottom: 22px; /* Yazı aralıkları */
}

.mobile-menu-panel ul li a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-align: left;       /* Sola hizalama */
    display: block;
}


/* ------------------------------------------------------ */
/* --- ALT SABİT ARA + WHATSAPP BUTONLARI (YATAY – FULL) */
/* ------------------------------------------------------ */

.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.mobile-bottom-bar a {
    flex: 1;
    padding: 16px 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    text-align: center;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.25);
    font-size: 18px;
}

/* WhatsApp */
.w-btn {
    background: #0A7C2F !important;
    color: #ffffff !important;
}

/* Ara */
.c-btn {
    background: #0b53c7 !important;
    color: #ffffff !important;
}

/* SADECE MOBİLDE GÖRÜNSÜN */
@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none !important;
    }
}

/* ========== MOBILE STATS WIDGET (Sadece mobil) ========== */
@media (max-width: 768px) {

  .mobile-stats-widget {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 16px 80px; /* alt boşluk, sabit alt barı düşünerek */
    background: transparent; /* şeffaf, site arka planını bozmaz */
  }

  .mobile-stats-widget .ms-inner {
    max-width: 720px;
    margin: 0 auto;
    color: #0f172a;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }

  .mobile-stats-widget .ms-slogan {
    margin: 6px 0 14px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #0b2540; /* koyu deniz mavisi */
    text-align: left;
  }

  .mobile-stats-widget .ms-numbers {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .mobile-stats-widget .ms-item {
    flex: 0 0 50%;
    min-width: 0;
  }

  .mobile-stats-widget .ms-num {
    font-size: 34px;
    font-weight: 800;
    color: #8c6b00 !important;
    line-height: 1;
    margin-bottom: 6px;
    transform-origin: center;
    /* hafif pop-in animasyonu */
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    animation: ms-pop 600ms cubic-bezier(.2,.9,.3,1) forwards;
  }

  /* stagger */
  .mobile-stats-widget .ms-item:nth-child(1) .ms-num { animation-delay: 140ms; }
  .mobile-stats-widget .ms-item:nth-child(2) .ms-num { animation-delay: 320ms; }

  .mobile-stats-widget .ms-label {
    font-size: 13px;
    font-weight: 600;
    color: #3a3a3a !important;
    text-transform: none;
  }

  .mobile-stats-widget .ms-desc {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: #3a3a3a !important;
    text-align: left;
  }

  /* pop keyframes */
  @keyframes ms-pop {
    0% { opacity: 0; transform: translateY(8px) scale(0.98); }
    60% { opacity: 1; transform: translateY(-4px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* Desktop + Tablet gizle (opsiyonel: widget sadece mobilde kalsın) */
@media (min-width: 769px) {
  .mobile-stats-widget { display: none; }
}

@media (max-width: 769px) {

    .mobile-services {
        padding: 15px;
        margin-bottom: 1px;
    }

    .ms-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        text-align: center;
    }

    .ms-slogan {
        font-size: 15px;
        color: #475569;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .service-card {
        background: #fff;
        border-radius: 12px;
        padding: 18px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sc-title {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .sc-btn {
        background: #ff3b30;
        color: #fff;
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }
}

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

    .mobile-services {
        padding: 15% 10px;
        background: #f2f2f2;
        display: block;
    }

    /* ÜST MİNİ BAŞLIK */
    .ms-title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        font-size: 18px;
        letter-spacing: 3px;
        color: #4a4d63;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    /* Ana büyük başlık */
    .ms-slogan {
        text-align: center;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.28;
        margin-bottom: 50px;
        color: #000;
        padding: 0 5px;
    }

    /* Gradient yazı */
    .ms-slogan span {
        background: linear-gradient(90deg, #4B52D3, #67D8E7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    /* Kart alanı */
    .hizmetler {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .pro-card {
        position: relative;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    }

/* Kart görsellerini eşit yükseklikte yap */
.pro-card-img {
    width: 100%;
    height: 180px; /* kart boyu eşitlendi */
    object-fit: cover; /* fotoğraf bozulmadan kırpılır */
    display: block;
}


    .pro-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 45%;
        background: linear-gradient(to top, rgba(0,0,80,0.7), rgba(0,0,80,0));
    }

    .pro-card-content {
        position: absolute;
        bottom: 18px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
    }

    .pro-card-content h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        color: #fff;
    }

    .pro-card-btn {
        width: 42px;
        height: 42px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

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

.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;
	}

}

/* --- TABLET + DESKTOP GİZLE --- */
@media (min-width: 769px) {
    .mobile-services {
        display: none !important;
    }
}



/* Sadece mobilde görünsün */
.mobile-why-us {
    display: block;
}

@media (min-width: 768px) {
    .mobile-why-us {
        display: none;
    }
}

/* Mobil tasarım */
.mobile-why-us {
    padding: 5px 15px;
    background: #f2f2f2;
}

.mw-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.mw-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f8f8;
    padding: 15px 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.mw-icon {
    font-size: 30px;
    width: 40px;
}

.mw-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.mw-item p {
    font-size: 14px;
    margin: 0;
    color: #3a3a3a !important;
}




/* MASAÜSTÜ */
.desktop { display: block; }
.tablet { display: none; }
.mobile { display: none; }

/* Tablet görünümü */
@media (min-width: 769px) and (max-width: 1024px) {
    .desktop { display: none; }
    .tablet { display: block; }
    .mobile { display: none; }
}

/* Telefon görünümü */
@media (max-width: 768px) {
    .desktop { display: none; }
    .tablet { display: none; }
    .mobile { display: block; }
}

/* ===== MOBİL FOOTER ===== */
.pro-footer {
    background: #0d0d0d;
    color: #fff;
    padding: 0px 20px 25px;
    font-family: 'Segoe UI', sans-serif;
}

/* GENEL */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ÜST BLOK: HİZMETLER + SERVİS BÖLGELERİ YAN YANA */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* BAŞLIKLAR */
.footer-col h3 {
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    border-left: 4px solid #5ec8e9;
    padding-left: 10px;
}

/* LİSTELER */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 7px 0;
    font-size: 13px;
    opacity: .85;
}

/* İLETİŞİM BLOĞU ALTA GELECEK */
.contact-col {
    margin-top: 40px;
}

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

    /* HİZMETLER + BÖLGELER YAN YANA KALACAK */
    .footer-top {
        flex-direction: row;
        gap: 20px;
    }

    .footer-col {
        width: 50%;
    }

    .contact-col {
        width: 100%;
        margin-top: 40px;
    }
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    opacity: .55;
}

/* Logo önce tamamen gizli (masaüstü görünmesin) */
.mobile-logo {
    display: none;
}

/* MOBILE için aktif */
@media (max-width: 768px) {

    .mobile-header {
        width: 100%;
        height: auto;         /* LOGO’ya göre otomatik ayarlansın */
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 999;
        border-bottom: 1px solid #ddd;
        padding: 12px 0;      /* Yukarı-aşağı boşluk */
        text-align: center;   /* LOGO’yu ortalar */
    }

    .mobile-logo {
        display: block;
        width: 270px;         /* İstersen büyüt/küçült kanka */
        height: auto;
    }
}
