        /* --- GENEL AYARLAR --- */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
        
        :root {
            --brand-blue: #1e427b;
            --brand-green: #90cb3e;
        }










/* --- NAVBAR BAŞLANGIÇ --- */
        .navbar {
            background: #fff;
            height: 80px;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img { height: 70px; display: block; }

        .nav-menu { display: flex; list-style: none; align-items: center; }
        .nav-menu > li { margin-left: 25px; position: relative; height: 80px; display: flex; align-items: center; }
        .nav-menu a { 
            text-decoration: none; 
            color: #555; 
            font-weight: 700; 
            font-size: 15px; 
            transition: 0.3s ease;
        }
        .nav-menu a:hover, .nav-menu a.active { color: #001a8f; }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            padding: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-top: 3px solid #001a8f;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .lang-dropdown .dropdown-menu {
            right: 0;
            left: auto;
            min-width: 120px;
            padding: 15px;
        }

        .nav-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content h4 {
            color: #001a8f;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            font-weight: 800;
        }

        .dropdown-content ul { list-style: none; }
        .dropdown-content ul li { margin: 8px 0 !important; margin-left: 0 !important; height: auto !important; }
        
        .dropdown-content ul li a {
            color: #666 !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            text-transform: none;
            display: block;
            transition: 0.2s;
        }

        .dropdown-content ul li a:hover {
            color: #001a8f !important;
            padding-left: 5px;
        }

        .current-lang { 
            color: #001a8f; 
            font-weight: 900; 
            font-size: 18px; 
            cursor: pointer;
        }

        /* --- MOBİL AYARLAR --- */
        .menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
        .bar { width: 30px; height: 3px; background: #001a8f ; transition: 0.3s; }

        @media (max-width: 1024px) {
            .menu-toggle { display: flex; }
            .nav-menu {
                display: none; position: absolute; top: 80px; left: 0; width: 100%;
                height: auto; background: #fff; flex-direction: column;
                padding-top: 20px; z-index: 999; overflow-y: auto;
            }
            .nav-menu.show-menu { display: flex !important; }
            .nav-menu > li { margin: 10px 0; width: 100%; height: auto; flex-direction: column; align-items: flex-start; padding-left: 10%; }
            
            .dropdown-menu { 
                position: static; opacity: 1; visibility: visible; 
                transform: none; box-shadow: none; padding: 10px 0 10px 15px; 
                display: none; border-top: none; min-width: 100%;
            }
            .nav-menu li.active-mobile .dropdown-menu { display: block; }
        }



/* --- NAVBAR BİTİŞ --- */
















/* --- ANA SECTION BAŞLANGIÇ --- */

/* Slider Temel Ayarları */
.main-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 800px; /* Masaüstü yüksekliği */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tıklanabilir Bilgi Kutusu */
.slide-info-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 26, 143, 0.85); /* Marka Laciverti */
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide-info-box:hover {
    background: #001a8f;
    transform: translateY(-5px);
}

.info-title {
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.info-date {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .swiper { height: 350px; }
}

@media (max-width: 768px) {
    .swiper { height: 700px; }
    .slide-info-box {
        left: 10px;
        right: 10px;
        bottom: 10px;
        text-align: center;
        padding: 12px;
    }
    .info-title { font-size: 0.95rem; }
}

/* ANA SECTION BİTİŞ */













/*  HAKKIMIZDA BAŞLANGIÇ  */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-content {
    flex: 1;
    max-width: 550px;
}

.sub-title {
    color: #001a8f; /* Görseldeki Arzen turuncusu */
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main-title {
    font-size: 42px;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 800;
}

.description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    font-size: 16px;
}


.btn-more {
    display: inline-block;
    background-color: #001a8f; 
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 0; 
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #001a5f;
    transform: translateY(-3px);
}

/* Resim Alanı */
.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: 600px; 
    object-fit: cover;
    box-shadow: 20px 20px 0px #f4f4f4; 
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-image {
        justify-content: center;
        order: 2;
    }

    .about-content {
        order: 1;
        max-width: 100%;
    }

    .main-title {
        font-size: 32px;
    }
    
    .about-image img {
        height: 450px;
    }
}

/*  HAKKIMIZDA BİTİŞ */













/* HİZMETLER BAŞLANGIÇ */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-tag {
    color: #001a8f; 
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 25px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-desc {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .service-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; 
    }
    .service-image {
        height: 400px;
    }
    .service-tag {
        text-align: center;
    }
    .service-desc {
        text-align: center;
    }
}

/* HİZMETLER BİTİŞ */










/* --- GÜNCEL FOOTER TASARIMI --- */
.main-footer {
    padding: 60px 0;
    background-color: #fff;
    border-top: 5px solid #f2f2f2;
    width: 100%;
    margin-top: 50px;
}

.footer-wrapper {
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    gap: 160px; 
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo ve Telif Alanı */
.brand-col {
    min-width: 250px;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.copyright p {
    color: #999;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* Link Kolonları */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 8px; 
}

.links-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.links-col ul li a:hover {
    color: #001a8f; 
}

/* Sosyal Medya Kolonu */
.social-col {
    margin-left: auto; 
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #333;
    font-size: 28px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f9f9f9;
}

.social-links a:hover {
    color: #001a8f;
    transform: translateY(-3px);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .social-col {
        margin-left: 0;
    }
}

/* --- FOOTER BİTİŞ --- */













/* --- HAKKIMIZDA SAYFA DÜZENİ --- */
.about-page-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-main-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px; /* Alttaki kartlarla mesafe */
}

.about-page-image { flex: 1; }
.about-page-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-page-content { flex: 1; }

/* --- YÖNLENDİRME KARTLARI (Kullanıcıyı Tutacak Bölüm) --- */
.corporate-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.nav-card {
    display: flex;
    align-items: center;
    padding: 30px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.4s ease;
}

.nav-card:hover {
    background: #fff;
    border-color: #001a8f; 
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 35px;
    color: #001a8f;
    margin-right: 20px;
}

.card-info h3 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 5px;
}

.card-info span {
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-card:hover .card-info span {
    color: #001a8f;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .about-main-wrapper { flex-direction: column; text-align: center; }
    .corporate-nav-grid { grid-template-columns: 1fr; }
}

p1 {
    color: white;
    font-weight: 700; /* Yazıyı kalınlaştırır */
    display: block; /* Alt satıra geçmesini sağlar */
    margin: 10px 0; /* Üstten ve alttan boşluk bırakır */
    font-size: 18px; /* Yazı boyutunu hafif büyütür */
}












/* --- VİZYON & MİSYON DÜZENLEME --- */
.vm-split-wrapper {
    display: flex;
    align-items: flex-start; /* Başlıkların yukarıda aynı hizada başlaması için */
    position: relative;
    gap: 80px; 
    padding: 40px 0;
}

.vm-split-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Sol Taraf (Vizyon) Düzenlemesi */
.vm-split-box.left {
    text-align: left;
    align-items: center; /* Başlığı ve içeriği sağa, yani ortaya doğru yaslar */
}

/* Sağ Taraf (Misyon) Düzenlemesi */
.vm-split-box.right {
    text-align: left;
    align-items: center; /* Başlığı ve içeriği sola, yani ortaya doğru yaslar */
}

/* Başlık Stilleri */
.vm-split-box h2 {
    font-size: 35px; /* Başlık boyutunu biraz daha vurgulu yaptık */
    font-weight: 800;
    color: #002d72; /* Kurumsal lacivert */
    margin-bottom: 25px;
    line-height: 1;
}

/* Paragraf Stilleri */
.vm-split-box p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    max-width: 500px; /* Metnin çok yayılıp okunurluğu bozmasını engeller */
}

/* Ortadaki & Simgesi Hizalaması */
.vm-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: ;
}

.vm-divider span {
    background: #fff;
    color: #001a8f; /* Turuncu & işareti */
    font-size: 42px;
    font-weight: bold;
    z-index: 10;
    padding: 15px 0;
}

/* --- MOBİL UYUMLULUK (VİZYON & MİSYON) --- */
@media (max-width: 992px) {
    .vm-split-wrapper {
        flex-direction: column; /* İçeriği alt alta dizer */
        gap: 50px; /* Bölümler arası boşluk */
        padding: 20px 0;
    }

    .vm-split-box {
        width: 100%;
        text-align: center !important; /* Tüm yazıları mobilde ortalar */
        align-items: center !important; /* Başlık ve metni kutu içinde ortalar */
    }

    .vm-split-box.left, 
    .vm-split-box.right {
        text-align: center;
        align-items: center;
    }

    .vm-split-box p {
        max-width: 100%; /* Metnin tam genişlik yayılmasını sağlar */
    }

    .vm-split-box h2 {
        font-size: 38px; /* Mobilde başlık boyutunu biraz küçülttük */
        margin-bottom: 15px;
    }

    /* Ortadaki & Simgesini Mobilde Düzenleme */
    .vm-divider {
        position: relative; /* Sabit pozisyondan çıkarır */
        left: 0;
        top: 0;
        transform: none;
        margin: 20px 0;
        order: 2; /* Vizyon(1) - & Sembolü(2) - Misyon(3) sıralaması için */
    }

    .vm-divider span {
        font-size: 32px;
        padding: 10px;
    }

    /* Arka plandaki dikey çizgiyi mobilde gizle veya yatay yap */
    .vm-divider::before {
        display: none; 
    }
}










/* --- KALİTE POLİTİKASI GÜNCEL TASARIM --- */
.quality-policy-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Üste Ortalanmış Başlık */
.quality-header-center {
    text-align: center;
    margin-top: 30px;
}

.quality-header-center h2 {
    font-size: 33px;
    color: #666; 
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    text-transform: capitalize;
}

/* Başlık Altındaki Turuncu Çizgi */
.quality-header-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #666; /* Turuncu Vurgu */
}

/* Grid Yapısı */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.quality-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); /* Yumuşak gölge */
    border: 1px solid #f2f2f2;
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
}

/* İkon Dairesi (Koyu Lacivert) */
.quality-icon {
    min-width: 65px;
    height: 65px;
    background-color: #001a8f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 20px;
}

/* Metin Alanı */
.quality-text h3 {
    font-size: 19px;
    color: #002d72;
    margin-bottom: 8px;
    font-weight: 700;
}

.quality-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* MOBİL UYUM */
@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
    .quality-header-center h2 {
        font-size: 30px;
    }
}
















/* --- KİLOMETRE TAŞI (TIMELINE) --- */
.timeline-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Ana Dikey Çizgi */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #666; /* Lacivert çizgi */
    top: 0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

/* Tek - Çift Ayarı (Sağ-Sol) */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Zaman Çizelgesi Noktası */
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #001a8f; /* Turuncu nokta */
    border: 4px solid #fff;
    border-radius: 50%;
    top: 25px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

/* İçerik Kutusu */
.timeline-date {
    font-weight: 800;
    color: #001a8f;
    font-size: 18px;
    margin-bottom: 5px;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    color: #666;
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        text-align: left !important;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-dot {
        left: 10px !important;
    }
}




















/* --- PROJELER GALERİ TASARIMI --- */
.projects-section {
    padding: 80px 0;
    background-color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 adet */
    gap: 25px;
    margin-top: 40px;
}

.proje-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    height: 350px;
    text-decoration: none;
}

.proje-img {
    width: 100%;
    height: 100%;
}

.proje-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Üzerine gelince resmin üzerine binen siyah katman */
.proje-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Kurumsal Lacivert (Şeffaf) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0; /* Normalde görünmez */
    transition: all 0.4s ease;
}

.proje-info {
    padding: 20px;
    transform: translateY(20px); /* Hafif aşağıda başlar */
    transition: all 0.4s ease;
}

.proje-info h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.proje-info span {
    color: #fff; /* Turuncu Tarih */
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.proje-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

/* Hover Efektleri */
.proje-card:hover .proje-overlay {
    opacity: 1;
}

.proje-card:hover .proje-info {
    transform: translateY(0);
}

.proje-card:hover .proje-img img {
    transform: scale(1.1); /* Resim hafifçe büyür */
}

.proje-btn:hover {
    background-color: #001a8f;
    border-color: #f37021;
}

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2'li */
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr; /* Mobilde tekli */
    }
    .proje-card {
        height: 300px;
    }
}

/* Mobilde (992px altı) Bilgilerin Otomatik Görünmesi */
@media (max-width: 992px) {
    /* Karartma katmanını mobilde görünür yapıyoruz */
    .proje-overlay {
        opacity: 1 !important; 
        background: rgba(0, 0, 0, 0.35); /* Biraz daha şeffaf yaparak resmi de gösteriyoruz */
    }

    /* Yazıları yukarı kaydırıp sabitliyoruz */
    .proje-info {
        transform: translateY(0) !important;
    }

    /* Butonu mobilde biraz daha küçük ve belirgin yapabiliriz */
    .proje-btn {
        background-color: #001a8f;
        border-color: #f37021;
        padding: 8px 15px;
        font-size: 12px;
    }
}

.contact-section {
    position: relative;
    width: 100%;
    height: 700px; /* Görseldeki gibi geniş bir alan */
    overflow: hidden;
}

#map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-overlay-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Kartı dikeyde ortalar */
    align-items: flex-start; /* KARTI SOLA ALAN KOD */
}

/* Başlık ve Çizgi Tasarımı */
.contact-title-area {
    margin-bottom: 30px;
    text-align: left;
}

.contact-title-area h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #fff; /* Turuncu Çizgi */
}

/* Kart Tasarımı */
.contact-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.52);
    width: 100%;
    max-width: 450px; /* Kart genişliği */
    animation: fadeInLeft 1s ease;
}

.contact-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.contact-header h2 span {
    color: #001a8f;
}

.address {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.phone-numbers a {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #222;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.phone-numbers a:hover {
    color: #001a8f;
}

.email-area a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
}

/* Animasyon */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- MOBİL DÜZENLEME --- */
@media (max-width: 768px) {
    .contact-section {
        height: auto; /* Sabit yüksekliği kaldırıyoruz ki içerik aşağı uzasın */
        display: flex;
        flex-direction: column; /* Harita ve Kartı alt alta dizer */
    }

    #map-bg {
        position: relative; /* Haritayı arka plandan çıkarıp normal sıraya sokar */
        height: 350px; /* Mobilde harita yüksekliği */
        width: 100%;
        z-index: 1;
    }

    .contact-overlay-container {
        position: relative;
        padding: 40px 20px;
        align-items: center; /* Mobilde başlık ve kartı ortalar */
        background-color: #fff; /* Kartın arkası boş kalmasın diye */
        z-index: 2;
    }

    .contact-title-area {
        text-align: center; /* Başlığı ortalar */
        margin-bottom: 20px;
    }

    .title-line {
        margin: 0 auto; /* Çizgiyi ortalar */
    }

    .contact-card {
        max-width: 100%; /* Kartın ekrana tam yayılmasını sağlar */
        padding: 30px 20px;
        box-shadow: none; /* Mobilde daha sade görünmesi için gölgeyi kaldırabilirsin */
        border-top: 1px solid #eee;
        margin-top: 0;
    }

    .phone-numbers a {
        font-size: 26px; /* Mobilde numara boyutunu biraz küçültüyoruz */
    }
}



















/* --- FORM SECTİON --- */
.form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-title {
    margin-bottom: 40px;
}

.form-title h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

.form-title h2 span {
    color: #001a8f; /* Turuncu vurgu */
}

/* Form Satır Düzeni */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

/* Input ve Textarea Stilleri */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #001a8f; /* Odaklanınca turuncu olur */
}

/* Placeholder Rengi */
.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: #999;
}

/* Buton Tasarımı */
.btn-send {
    background-color: #001a8f;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-send:hover {
    background-color: #001a5f; /* Hoverda biraz koyulaşır */
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column; /* Mobilde inputlar alt alta gelir */
        gap: 15px;
    }
    
    .form-title h2 {
        font-size: 22px;
        text-align: center;
    }

    .form-submit {
        text-align: center;
    }

    .btn-send {
        width: 100%; /* Mobilde buton tam genişlik olur */
    }
}








/* --- PROJE DETAY TASARIMI --- */

/* Detaylar Grid */
.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.details-text h3 {
    color: #002d72;
    font-size: 28px;
    margin-bottom: 20px;
}

.details-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.specs-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.specs-list strong {
    color: #002d72;
    width: 120px;
    display: inline-block;
}


/* Mobil */
@media (max-width: 768px) {
    .details-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
}



/* Galerinin kapsayıcı başlık alanı */
.gallery-header {
    display: flex;
    flex-direction: column; /* Yazı ve çizgiyi alt alta dizer */
    align-items: center;    /* Yatayda her şeyi tam ortalar */
    text-align: center;     /* Metni ortalar */
    margin-bottom: 40px;    /* Slider ile arasındaki dış boşluk */
}

.gallery-header h3 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 800;
    margin: 0;             /* Varsayılan boşlukları sıfırladık */
    padding-bottom: 10px;  /* YAZI İLE ÇİZGİ ARASINDAKİ 10PX BOŞLUK */
    text-transform: uppercase;
}

.title-line-small {
    width: 60px;           /* Çizginin genişliği */
    height: 4px;           /* Çizginin kalınlığı */
    background-color: #f37021; /* Yanmazlar Turuncusu */
    border-radius: 2px;
}



/* Başlık Alanı Düzenleme */
.gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Yatayda ortalar */
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h3 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 800;
    margin: 0;
    padding-bottom: 10px;  /* YAZININ ALTINDAKİ 10PX BOŞLUK */
    text-transform: uppercase;
}

.title-line-small {
    width: 60px;
    height: 4px;
    background-color: #001a8f; /* Turuncu Çizgi */
}

/* Izgara Düzeni (Grid) */
.gallery-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Yan yana 4 resim */
    gap: 20px; /* Resimler arası boşluk */
}

.gallery-item {
    display: block;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
    background: #f4f4f4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    margin-top:20px;
    object-fit: cover; /* Resimleri kutuya sığdırır */
    transition: transform 0.5s ease;
}

/* Üzerine gelince çok hafif zoom (Büyüyeceğini hissettirir) */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .gallery-grid-clean { grid-template-columns: repeat(2, 1fr); } /* Tablette 2'li */
}

@media (max-width: 500px) {
    .gallery-grid-clean { grid-template-columns: 1fr; } /* Mobilde tekli */
    .gallery-item { height: 250px; }
}
