/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:#ffffff;
    color:#111;
}

/* WRAPPER */
.wrap{max-width:1200px;margin:0 auto;padding:0 20px}


/* ------------------ TOPBAR ------------------ */
.topbar{
    position:sticky;
    top:0;
    z-index:100;
    background:#fff;
    border-bottom:2px solid #000;
    padding:10px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO daha büyük */
.logo{
    height:150px !important;
    object-fit:contain;
}

/* Site başlığı (orta) */
.site-title{
    font-size:38px;
    font-weight:900;
    letter-spacing:2px;
    color:#0a2b36;
    text-align:center;
   transform: translateX(-600px); /* sola kaydırır */
}
.site-sub{
    font-size:15px;
    letter-spacing:3px;
    color:#ff6600;
    transform: translateX(-200px); /* sola kaydırır */
}

/* MENÜ */
.right{
    display:flex;
    gap:12px;
    align-items:center;
}

.nav-btn{
    padding:10px 16px;
    border:2px solid #000;
    background:#fff;
    color:#000;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
}
.nav-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-2px);
}

/* ------------------ HERO / SLIDER ------------------ */
.hero{
    height:60vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
.slides{
    position:absolute;
    inset:0;
}
.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
}
.slide.active{
    opacity:1;
}

/* Banner üzerindeki kutu */
.hero-overlay{
    position:relative;
    z-index:5;
    background:rgba(255,255,255,0.50); /* daha saydam yapıldı */
    padding:30px 50px;
    border-radius:14px;
    border:2px solid #000;
    text-align:center;
}

/* Banner yazısı küçültüldü + daha şık */
.hero-overlay h1{
    font-size:26px;
    font-weight:800;
    color:#0a2b36;
}


/* ------------------ BUTTONS ------------------ */
.btn{
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
}
.primary{
    background:#ff7b00;
    color:#fff;
}
.outline{
    border:2px solid #000;
    color:#000;
    background:#fff;
}

/* ------------------ GENEL KUTU TASARIMI ------------------ */
.card,
.work-card,
.stat,
input,
textarea,
.nav-btn,
.hero-overlay{
    border:2px solid #000 !important;
}

/* ------------------ HİZMETLER ------------------ */
.services .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}
.card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.card h3{margin-bottom:10px}


/* ------------------ TEKLİF FORM ------------------ */
input, textarea{
    width:100%;
    padding:12px;
    margin:8px 0;
    border-radius:8px;
    background:#fff;
    font-size:15px;
    border:2px solid #000 !important;
}

.form-actions{
    display:flex;
    gap:12px;
}

/* ------------------ SECTION TITLE (YENİ EKLENDİ) ------------------ */
.section-title{
    text-align:center;
    font-size:32px;
    font-weight:900;
    padding:18px 0;
    color:#fff;
    margin:40px 0 20px 0;
}

/* Her bölümün kendi rengi */
.section-title.teklif{ background:#ff7b00; }
.section-title.hizmetler{ background:#0a2b36; }
.section-title.hakkimizda{ background:#333; }
.section-title.iletisim{ background:#555; }


/* ------------------ İSTATİSTİKLER ------------------ */
.stats-row{
    display:flex;
    justify-content:center;
    gap:200px;
    margin-top:100px;
}
.stat-icon img{
    width:150px;
    height:150px;
    object-fit:contain;
}
.stat-number{
    font-size:28px;
    font-weight:900;
    margin-top:8px;
}
.stat-label{
    margin-top:6px;
    color:#333;
}

/* ------------------ FLOATING BUTTONS ------------------ */
.floating-contacts{
    position:fixed;
    left:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:200;
}
.fc{
    width:60px;
    height:60px;
    background:#fff;
    border:2px solid #000;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.2s;
}
.fc:hover{
    transform:scale(1.12);
}
.fc img{
    width:32px;
    height:32px;
}

/* ------------------ FOOTER ------------------ */
.footer{
    background:#0a2b36;
    color:#fff;
    padding:24px;
    text-align:center;
}


/* ------------------ RESPONSIVE ------------------ */
@media (max-width:900px){
    .topbar{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }
    .logo{
        height:160px !important;
    }
    .site-title{
        font-size:28px;
    }
    .right{
        flex-wrap:wrap;
        justify-content:center;
    }
    .hero{
        height:48vh;
    }
    .hero-overlay h1{
        font-size:20px;
    }
    .stats-row{
        flex-direction:column;
    }
}
/* LOGO SOLA ALINSIN */
header .logo img {
    display: block;
    margin: 0;
    padding: 0;
    float: left;
}

/* TOBBAR SABİT OLMASIN */
.topbar {
    position: relative !important;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* Header içindeki diğer öğeler bozulmasın diye */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Hizmet başlıklarını şerit yeşil yap - masaüstü */
.card h3 {
    display: inline-block;        /* Şerit etkisi için */
    background-color: #4CAF50;    /* Yeşil renk */
    color: #fff;                  /* Yazı rengi beyaz */
    padding: 6px 12px;            /* Şeridin iç boşluğu */
    border-radius: 4px;           /* Hafif yuvarlak köşe */
    margin-bottom: 10px;          /* Alt boşluk */
    font-size: 18px;              /* Başlık boyutu */
    font-weight: 700;             /* Kalın yazı */
}

/* Mobil uyumlu */
@media (max-width: 900px) {
    .card h3 {
        font-size: 16px;          /* Daha küçük ekranlarda font küçülür */
        padding: 4px 8px;         /* İç boşluk mobil uyumlu */
    }
}
/* GENEL İSTATİSTİKLER - çerçeve ve gölge kaldır */
.stats-row .stat {
    border: none !important;      /* Siyah çerçeveyi kaldırır */
    box-shadow: none !important;  /* Var ise gölgeyi kaldırır */
    background: transparent;      /* Arka planı temizler */
    padding: 0;                   /* İç boşluğu sıfırla */
    text-align: center;           /* Ortala */
}
/* İLETİŞİM BAŞLIĞI ŞERİT ŞEKLİNDE */
#iletisim .section-title {
    background-color: #0a2b36; /* hizmetler başlığındaki ton ile aynı */
    color: #fff;
    display: inline-block; /* başlığı sadece metin kadar genişlikte yapar */
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* İLETİŞİM İÇERİĞİ ARKA PLAN */
#iletisim .wrap {
    background-color: #0a2b36; /* başlıkla uyumlu ton */
    padding: 20px;
    border-radius: 10px;
    color: #fff; /* yazılar beyaz olsun */
}

#iletisim .wrap a {
    color: #ff7b00; /* linkleri kontrast renk yapabiliriz */
    text-decoration: none;
}
#iletisim .wrap a:hover {
    text-decoration: underline;
}
/* --- FLOATING WHATSAPP & TELEFON BUTONLARI DÜZELTME --- */

.floating-contacts {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999999 !important; /* Her şeyin üstüne çıkar */
}

.floating-contacts .fc {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.2s;
}

.floating-contacts .fc img {
    width: 32px;
    height: 32px;
}

.floating-contacts .fc:hover {
    transform: scale(1.1);
}
/* ------------------ HİZMET KARTLARI (PREMIUM TASARIM) ------------------ */

.services .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

/* Kartların ana tasarımı */
.card{
    background: linear-gradient(135deg, #fff4d2, #ffe49c); /* soft sarı–turuncu geçiş */
    padding:22px;
    border-radius:16px;
    border:2px solid #d1a65b; /* soft altın tonlu çerçeve */
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

/* Hover animasyonu */
.card:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow:0 12px 28px rgba(0,0,0,0.22);
}

/* Parlayan hafif animasyon efekti (premium dokunuş) */
.card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:200%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform:skewX(-20deg);
    transition:0.7s;
}

.card:hover::before{
    left:120%;
}

/* Kart başlıkları */
.card h3{
    display:inline-block;
    background:#0a2b36;  /* koyu lacivert */
    color:#fff;
    padding:8px 20px;
    border-radius:8px;
    margin-bottom:16px;
    font-size:20px;
    font-weight:900;
    letter-spacing:1px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    transition:.3s;
}

/* Hover başlık efekti */
.card:hover h3{
    transform:scale(1.05);
}

/* Hizmetler başlığı – kartlara tam uyumlu */
.section-title.hizmetler{
    background: linear-gradient(135deg, #0a2b36, #174c60);
    color:#fff;
    border-radius:10px;
}
