/* =========================================
   1. GENEL AYARLAR VE FONT
   ========================================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f9; 
    color: #333; 
}

/* =========================================
   2. HEADER (ÜST MENÜ) & LOGO
   ========================================= */
header {
    background-color: #003366; 
    /* Modern Şeritli Arka Plan */
    background-image: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(255, 255, 255, 0.03) 75%, 
        transparent 75%, 
        transparent
    );
    background-size: 20px 20px; 
    
    padding: 20px 40px; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    border-bottom: 3px solid #004d99; 
}

/* Logo (Beyaz Kutu) */
.logo {
    background-color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; 
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s;
    display: block; 
}

.logo:hover img {
    transform: scale(1.05); 
}

/* Hamburger Menü İkonu (Masaüstünde Gizli) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s;
}

/* Menü Linkleri */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center; 
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #ff9900; 
}

/* =========================================
   [YENİ] DİL SEÇİCİ (BAYRAKLI MENÜ) STİLLERİ
   ========================================= */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

/* Görünen Buton (TR ▾) */
.lang-btn {
    color: white !important;
    padding: 8px 15px !important;
    font-size: 0.95em !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 5px;
    display: flex !important;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.1);
    text-transform: none !important; /* Küçük harf kalsın */
    letter-spacing: 0 !important;
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Açılır Menü Kutusu */
.lang-content {
    display: none;
    position: absolute;
    right: 0; /* Sağa yasla */
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 5px;
    overflow: hidden;
    top: 100%; 
    margin-top: 5px;
}

/* Menü Linkleri */
.lang-content a {
    color: #333 !important;
    padding: 10px 15px !important;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 0.9em !important;
    font-weight: normal !important;
    text-transform: none !important; 
    letter-spacing: 0 !important;
    border-bottom: 1px solid #eee;
}

.lang-content a img {
    width: 20px;
    height: auto;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.lang-content a:hover {
    background-color: #f1f1f1 !important;
    color: #003366 !important;
    border-radius: 0 !important;
}

/* Hover Olunca Menüyü Göster */
.lang-dropdown:hover .lang-content {
    display: block;
}

/* Google Translate Çubuğunu Gizle */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
} 
body {
    top: 0px !important; 
}

/* =========================================
   3. ANA YAPI ELEMENTLERİ
   ========================================= */
main { padding-bottom: 20px; }

section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

/* =========================================
   4. HERO SLIDER (DİKEY KAYDIRMA)
   ========================================= */
.hero-slider {
    position: relative;
    height: 700px; 
    overflow: hidden; 
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #003366;
}

.slider-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    display: flex; 
    flex-direction: column; 
    transition: transform 1s ease-in-out; 
}

.slider-image-container .slide {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    object-position: center center; 
    flex-shrink: 0; 
}

.slider-content {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;  
    height: 100%; 
    z-index: 3; 
    text-align: center;
    padding: 20px;
    color: white; 
    background: rgba(0, 0, 0, 0.4); 
    box-sizing: border-box; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-content h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: white; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 700;
}

.slider-content p {
    font-size: 1.3em;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    max-width: 800px;
}

.slider-controls-vertical {
    position: absolute;
    left: 30px; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 4; 
    display: flex;
    flex-direction: column; 
    gap: 15px; 
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0;
    cursor: pointer;
    font-size: 1.5em; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    color: #004d99;
}

/* =========================================
   5. HİZMETLER BÖLÜMÜ
   ========================================= */
#hizmetler h3 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.hizmet-listesi {
    display: flex;
    justify-content: center; 
    gap: 30px;
    flex-wrap: wrap; 
    max-width: 1200px;
    margin: 0 auto;
}

.hizmet-listesi a.hizmet-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
}

.hizmet-karti {
    flex-basis: 220px; 
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hizmet-karti:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ikon-cerceve {
    width: 110px;
    height: 110px;
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid;
    margin-bottom: 20px;
    background-color: #ffffff;
    transition: background 0.3s;
}

.hizmet-karti:hover .ikon-cerceve { background-color: #f9f9f9; }

.cerceve-yesil { border-color: #28a745; color: #28a745; }
.cerceve-mavi { border-color: #007bff; color: #007bff; }
.cerceve-turuncu { border-color: #ffc107; color: #ffc107; }
.cerceve-kirmizi { border-color: #dc3545; color: #dc3545; }

.ikon { font-size: 3.5em; line-height: 1; }
.aciklama { font-size: 0.95em; color: #666; text-align: center; }

/* =========================================
   6. HIZLI TEKLİF (GOOGLE FORM)
   ========================================= */
#hizli-teklif {
    background-color: #eef2f7;
    padding: 60px 20px;
    text-align: center;
}

#hizli-teklif h3 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

#hizli-teklif h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff9900;
    margin: 10px auto 0;
}

.google-form-cerceve {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

/* =========================================
   7. HAKKIMIZDA BÖLÜMÜ
   ========================================= */
#hakkimizda {
    background-color: #ffffff;
    padding: 80px 20px;
}

.hakkimizda-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

#hakkimizda h3 {
    font-size: 2.5em;
    color: #004d99;
    margin-bottom: 30px;
}

.kurumsal-giris {
    font-size: 1.4em;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 300;
}

.kurumsal-giris strong { color: #ff9900; font-weight: 600; }

.hakkimizda-detay-metin {
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

.istatistikler {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.istatistik-karti {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
    border-top: 4px solid #004d99;
    transition: transform 0.3s;
}

.istatistik-karti:hover { transform: translateY(-5px); }

.istatistik-karti h4 {
    font-size: 2.5em;
    color: #004d99;
    margin: 0;
}

.istatistik-karti p {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    margin-top: 5px;
}

.degerler-kapsayici {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.deger-kutu {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff9900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.deger-kutu h5 {
    font-size: 1.3em;
    color: #004d99;
    margin-top: 0;
    margin-bottom: 10px;
}

/* =========================================
   8. İLETİŞİM BÖLÜMÜ
   ========================================= */
#iletisim-alani {
    background-color: #f4f4f9;
}

#iletisim-alani h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.iletisim-detay {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.harita-adres {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.harita-adres h4 {
    color: #004d99;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.harita-adres a {
    color: #004d99;
    text-decoration: none;
    font-weight: bold;
}

.harita-cerceve {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* =========================================
   9. HİZMET DETAY SAYFALARI (ZİKZAK YAPI)
   ========================================= */
.hizmet-detay {
    max-width: 1200px; 
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hizmet-detay h1 {
    color: #004d99;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.hizmet-detay p, .hizmet-detay ul {
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
    text-align: justify; 
}

.two-column-hero {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    margin: 30px auto 60px auto; 
    align-items: center; 
}

.two-column-hero.ters-duzen { flex-direction: row-reverse; }

.visual-block {
    flex: 1; 
    min-width: 300px; 
    overflow: hidden;
}

.text-block {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

.text-block h2 {
    font-size: 2.4em;
    color: #333;
    border-bottom: 4px solid #004d99; 
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block; 
}

.detay-hero-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    max-height: 450px; 
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%); 
}

.hizmet-gorsel {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    max-height: 450px;
    margin: 30px 0;
}

.hizmet-detay ul {
    list-style: disc;
    margin-left: 40px;
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer a {
    color: #ff9900;
    text-decoration: none;
}

/* =========================================
   11. RESPONSIVE (MOBİL UYUM)
   ========================================= */
@media (max-width: 768px) {

    /* Header ve Menü */
    header {
        flex-direction: row; 
        justify-content: space-between; 
        padding: 15px 20px;
        height: auto;
        position: relative;
    }

    .logo { padding: 5px 10px; }
    .logo img { height: 45px; }

    .hamburger { display: flex; }

    /* Açılır Menü */
    nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: #003366;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: none; 
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 999;
    }

    nav.active { display: flex; }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    nav ul li { width: 100%; text-align: center; }

    nav ul li a {
        background-color: rgba(255, 255, 255, 0.05); 
        margin: 0 20px;
        border-radius: 5px;
        display: block;
    }

    /* Dil Seçici Mobilde Ortalama */
    .lang-dropdown { margin-left: 0; }
    .lang-content { 
        left: 50%; 
        transform: translateX(-50%); 
        right: auto; 
    }
    
    /* Mobil İçin Link Rengi */
    .lang-content a { color: #333 !important; background: white !important; }

    /* Slider */
    .hero-slider {
        height: 300px; 
        min-height: 300px;
    }

    .slider-content { background: rgba(0, 0, 0, 0.6); }
    .slider-content h2 { font-size: 1.6em; line-height: 1.2; margin-bottom: 10px; }
    .slider-content p { display: none; }

    .slider-controls-vertical { left: 10px; gap: 10px; }
    .slider-btn { width: 35px; height: 35px; font-size: 1.2em; }
    
    /* Genel Hizalama */
    .two-column-hero, 
    .two-column-hero.ters-duzen, 
    .hizmet-listesi, 
    .degerler-kapsayici,
    .iletisim-detay {
        flex-direction: column;
    }

    .text-block, .hizmet-detay p, .hizmet-detay ul { padding: 0 10px; }
    .text-block h2 { font-size: 1.8em; }
    
    .harita-adres { padding: 20px; }
    section { padding: 40px 0; }
}
/* =========================================
   HIZLI İLETİŞİM BUTONLARI (WP & TEL)
   ========================================= */
.quick-contact {
    position: fixed; /* Sayfa kaydırılsa da sabit kal */
    bottom: 30px;
    right: 30px;
    z-index: 2000; /* En üstte görünsün */
    display: flex;
    flex-direction: column; /* Alt alta sırala */
    gap: 15px; /* Butonlar arası boşluk */
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: fadeIn 2s ease; /* Sayfa açılınca efektle gelsin */
}

/* Hover (Üzerine gelince) Efekti */
.contact-btn:hover {
    transform: scale(1.1); /* Biraz büyüt */
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* WhatsApp Rengi */
.whatsapp-btn {
    background-color: #25D366;
}

/* Telefon Rengi */
.phone-btn {
    background-color: #004d99; /* Kurumsal Mavi */
}

/* Mobilde biraz daha kenara yaklaştıralım */
@media (max-width: 768px) {
    .quick-contact {
        bottom: 35px;
        right: 45px;
        gap: 25px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .contact-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Giriş Animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}