.breadcrumb-area {
    background-color: var(--black);
    background-repeat: no-repeat;
    background-position: center center;
    
    /* RESMİN TAM SIĞMASINI SAĞLAYAN KRİTİK KOMUT */
    background-size: cover; 
    
    /* Yükseklik ve Hizalama */
    min-height: 500px; /* Toplam yükseklik isteğine göre ayarla */
    display: flex;
    align-items: center; /* İçeriği dikeyde tam ortalar */
    
    /* Üstteki menü için boşluk (Menü yüksekliğine göre ayarla) */
    padding-top: 240px; 
    padding-bottom: 60px;
    
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Eğer Bootstrap kullanıyorsan row'u dikeyde eşitlemek için */
.breadcrumb-area .row {
    align-items: center;
    width: 100%;
}

.breadcrumb-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Saydamlık ayarı: 0.95 çok koyudur, resmi görmek istersen 0.7 yapabilirsin */
    background-color: rgba(23, 23, 23, 0.6); 
    content: "";
    z-index: -1;
}

    /* Üst-Alt Boşluk Ayarları */
    .faq-area-spacing {
        padding-top: 120px;
        padding-bottom: *;
    }

    /* Sol İletişim Kutusu Tasarımı */
    .contact-box-link {
        background: #1a1a1a;
        border-left: 5px solid #e31e24;
        transition: all 0.3s ease;
        max-width: 350px;
    }
    .contact-box-link:hover {
        transform: scale(1.05);
        background: #000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Akordiyon Özel Stilleri */
    .custom-faq-red .accordion-item {
        border: 1px solid #f1f1f1 !important;
        overflow: hidden;
    }
    .custom-faq-red .accordion-button {
        padding: 1.4rem;
        font-weight: 700;
        color: #1a1a1a;
        background-color: #fff;
    }
    .custom-faq-red .accordion-button i {
        color: #e31e24;
        font-size: 1.1rem;
    }
    .custom-faq-red .accordion-button:not(.collapsed) {
        color: #e31e24;
        background-color: #fff;
        box-shadow: none;
        border-bottom: 2px solid #e31e24;
    }
    .custom-faq-red .accordion-button::after {
        background-size: 1rem;
        filter: brightness(0); /* Ok rengini siyah yapar */
    }

    /* Mobil Uyumluluk */
    @media (max-width: 991px) {
        .faq-area-spacing {
            padding-top: 80px;
            padding-bottom: 0;
        }
        .contact-box-link {
            max-width: 100%;
        }
    }

.counter-two-item .icon i {
    font-size: 48px; /* Boyutu ayarlar */
    color: var(--primary);
}

.services-item-two .icon i {
    font-size: 28px; /* Boyutu ayarlar */
    color: var(--white);
}


@media (max-width: 991px) {
    /* İkinci resmi ve kapsayıcısını mobilde serbest bırak */
    .about-area-two .about-image-two {
        position: relative !important;
        margin-top: 20px !important; /* İlk resimle arasına boşluk ver */
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        display: block !important;
        width: 100% !important;
    }

    /* Eğer tecrübe kutusu (20+ Yıl) hala kayıyorsa */
    .about-area-two .experiance-outside {
        position: absolute !important;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        transform: none !important;
    }

    /* Resimlerin içindeki img etiketlerini tam genişlik yap */
    .about-area-two .about-image-one img, 
    .about-area-two .about-image-two img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
}


    /* Masaüstünde gizle */
    .mobile-icon-bar {
        display: none;
    }

    @media (max-width: 991px) {
        .mobile-icon-bar {
            display: flex !important;
            position: fixed;
            bottom: 20px; 
            left: 50%;
            transform: translateX(-50%); 
            background: rgba(255, 255, 255, 0.98);
            padding: 12px 25px;
            border-radius: 50px; 
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            z-index: 999999;
            gap: 25px; /* Simgeler arası ideal boşluk */
            align-items: center;
            border: 1px solid #eee;
        }

        .mobile-icon-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            color: #fff !important;
            font-size: 22px; /* Simgeler biraz daha belirgin */
            text-decoration: none !important;
            transition: all 0.2s ease;
        }

        /* Tıklama efekti */
        .mobile-icon-item:active {
            transform: scale(0.9);
        }

        /* Renk Paleti */
        .mi-call { background: #ff5e14; }      /* Turuncu */
        .mi-whatsapp { background: #25d366; }  /* WhatsApp Yeşili */
        .mi-quote { background: #007bff; }     /* Teklif Mavisi */

        body { padding-bottom: 90px !important; }
    }

/* Harita Üstü Buton Stilleri */
.map-floating-actions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    width: 90%;
    justify-content: center;
    z-index: 10;
}

.map-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.map-btn.whatsapp {
    background: rgba(37, 211, 102, 0.95);
    color: white;
}

.map-btn.directions {
    background: rgba(13, 110, 253, 0.95);
    color: white;
}

.map-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    color: white;
}

/* Genel Efektler */
.map-frame-wrapper {
    transition: all 0.4s ease;
}

.map-frame-wrapper:hover {
    box-shadow: 0 1.5rem 4rem rgba(0,0,0,.15)!important;
}

.transition-link:hover {
    color: #0d6efd !important;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .map-inner {
        height: 450px !important;
        min-height: 450px !important;
    }
    .map-floating-actions {
        flex-direction: column;
        bottom: 20px;
    }
    .map-btn {
        justify-content: center;
    }
}

/* --- YENİ MODERN SİDEBAR STİLLERİ --- */
.project-details-area h2 {
    font-size: 38px;
}

.modern-sidebar {
    background: #ffffff !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    padding: 25px !important;
    border: 1px solid #eee;
}

.info-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #fff4f0; /* Turuncu tonlu hafif arka plan */
    color: #ff5e14;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.info-text h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.social-modern ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f8f8;
    color: #555;
    transition: 0.3s;
    font-size: 14px;
}

.social-modern ul li a:hover {
    background: #ff5e14;
    color: #fff;
    transform: translateY(-3px);
}

/* --- GENEL İÇERİK STİLLERİ --- */
.project-details-information .project-details-title {
    font-size: 26px !important;
    font-weight: 700;
    color: #1d1d1d;
    border-left: 4px solid #ff5e14;
    padding-left: 15px;
    margin: 30px 0 20px 0;
}

.text-orange { color: #ff5e14 !important; }

/* Tablo */
.price-table-wrapper th { background-color: #f8f9fa; color: #333; font-weight: 600; }
.price-table-wrapper td { font-size: 15px; color: #555; vertical-align: middle; }

/* SSS */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fffaf8;
    color: #ff5e14;
    box-shadow: none;
}
.custom-accordion .accordion-button { padding: 15px 20px; font-size: 16px; }
.custom-accordion .accordion-item { overflow: hidden; }

/* Metin */
.bolge-aciklama p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.bolge-aciklama h3 { font-size: 22px; font-weight: 600; margin-top: 35px; color: #333; }

/* Avantajlar */
.project-list-info {
    background: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* Hizmet Detay Genel Alanı */
.service-details-area {
    background-color: #fcfcfc;
}

.project-details-thumb-image {
    position: relative;
    border-radius: 15px;
    overflow: visible; /* Sidebar'ın taşması için */
    margin-bottom: 40px;
}

.project-details-thumb-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sidebar Bilgi Kutusu (Modern Sidebar) */
.modern-sidebar {
    position: absolute;
    top: 50px;
    right: 30px;
    width: 320px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 2;
    border-top: 5px solid #e31e24; /* Kurumsal Kırmızı */
}

@media (max-width: 991px) {
    .modern-sidebar {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: -50px;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.info-row:hover .info-icon {
    background: #e31e24;
    color: #fff;
}

.info-text span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

/* Süreç Adımları (Process Steps) */
.process-wrapper .border {
    transition: 0.3s;
    border-color: #eee !important;
}

.process-wrapper .border:hover {
    border-color: #e31e24 !important;
    background: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-wrapper i {
    margin-bottom: 15px;
    display: inline-block;
}

/* Akordiyon (FAQ) Özelleştirme */
.custom-accordion .accordion-item {
    border: 1px solid #eee !important;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: #333;
    padding: 15px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #e31e24;
    color: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button:after {
    background-size: 12px;
}

/* Sosyal Medya İkonları */
.social-modern ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #555;
    border-radius: 50%;
    transition: 0.3s;
}

.social-modern ul li a:hover {
    background: #e31e24;
    color: #fff;
    transform: rotate(360deg);
}

/* Typography & General */
.project-details-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.bolge-aciklama {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.project-list-info {
    border-left-width: 5px !important;
}

.project-list-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-list-info ul li {
    font-weight: 600;
    color: #333;
}

/* Başlık Grubu */
.sub-title-soft {
    font-size: 12px;
    letter-spacing: 2px;
    color: #e31e24; /* Kurumsal Kırmızı */
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.divider-soft {
    width: 30px;
    height: 2px;
    background: #e31e24;
}

/* Kibar Borderlı Kart Yapısı */
.testimonial-bordered-card {
    padding: 30px;
    border: 1px solid #f0f0f0; /* Çok hafif, kibar border */
    border-radius: 12px; /* Yumuşak köşeler */
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover: Fareyle üzerine gelince border canlanır */
.testimonial-bordered-card:hover {
    border-color: #e31e24;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02); /* Çok hafif derinlik */
}

/* Tipografi: İtalik ve Zarif */
.text-serif {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 0;
}

/* Yıldızlar ve Ayırıcı Çizgi */
.stars-minimal {
    font-size: 10px;
    color: #ffc107;
    letter-spacing: 2px;
}

.line-spacer {
    height: 1px;
    flex-grow: 1;
    background: #f5f5f5;
}

/* Avatar ve Alt Bilgi */
.avatar-minimal {
    width: 42px;
    height: 42px;
    background: #fdf2f2; /* Çok açık kırmızı tonu */
    color: #e31e24;
    border-radius: 10px; /* Modern squircle formu */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #feeaea;
    transition: 0.3s;
}

.testimonial-bordered-card:hover .avatar-minimal {
    background: #e31e24;
    color: #fff;
}

.client-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.service-tag {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Belge Kartı Ana Çerçeve */
.document-bordered-card {
    padding: 20px;
    border: 1px solid #f0f0f0; /* Kibar Border */
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.document-bordered-card:hover {
    border-color: #e31e24; /* Hover'da kurumsal kırmızı */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

/* Resim Alanı */
.doc-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fdfdfd;
    border: 1px solid #f8f8f8;
    padding: 10px;
}

/* Zoom Overlay (Kibar Kırmızı) */
.doc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 30, 36, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.doc-overlay i {
    color: #fff;
    font-size: 20px;
}

.document-bordered-card:hover .doc-overlay {
    opacity: 1;
}

        /* Dikey Hizalama ve Modern Stil */
        .footer-widget .footer-title { font-size: 20px; font-weight: 700; margin-bottom: 25px; color: #fff; }
        
        .footer-contact-list { display: flex; flex-direction: column; gap: 18px; }
        .footer-contact-item { 
            display: flex; 
            align-items: center; /* İkonu ve metni dikeyde ortalar (Vertical Middle) */
        }
        
        .footer-contact-item i { 
            width: 40px; 
            height: 40px; 
            background: red; 
            color: #fff; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            margin-right: 15px; 
            flex-shrink: 0; 
            font-size: 16px; 
        }
        
        .footer-contact-text { 
            font-size: 16px; 
            color: #fff; 
            line-height: 1.2; /* Satır yüksekliğini daraltarak tam ortalanmayı netleştirir */
        }
        
        .footer-contact-text a { color: #fff; text-decoration: none; transition: 0.3s; }
        .footer-contact-text a:hover { color: #ff5e14; }
        
        .footer-link ul li a { display: flex; align-items: center; margin-bottom: 12px; font-size: 15px; }
        .footer-link ul li a i { font-size: 12px; margin-right: 10px; color: #ff5e14; }
        
/* Masaüstü (992px ve üzeri) Kesin Hizalama */
@media (min-width: 992px) {
    
    /* Hizmetlerimiz yazısının olduğu ana kutu */
    .nav-item.mega-menu-wrapper {
        position: relative !important; /* Alt menünün buna göre hizalanması için şart */
    }

    .mega-menu-container {
        display: none; 
        position: absolute !important;
        top: 100% !important;
        
        /* SOLU TAMAMEN DEVRE DIŞI BIRAK */
        left: 0 !important; 
        right: 0 !important; 
        
        /* Eğer hala sola kaçıyorsa transform ile sağ kenarı 0'la */
        transform: none !important; 

        /* Menü kutusu ayarları */
        width: 600px !important; 
        min-width: 600px !important;
        background: #ffffff !important;
        padding: 25px !important;
        border-top: 0px solid #007bff !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
        z-index: 999999 !important;
    }

    /* Hover olunca kutuyu göster */
    .mega-menu-wrapper:hover .mega-menu-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* İki kolonu yan yana getiren iç yapı */
    .mega-menu-inner {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 30px !important;
    }

    .mega-column {
        flex: 1 !important;
        min-width: 0 !important;
    }

    /* Başlıklar */
    .mobile-section-header {
        font-weight: 800 !important;
        color: #1a1a1a !important;
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
        font-size: 15px !important;
        display: block !important;
    }
}

/* Mobil görünüm (991px ve altı) */
@media (max-width: 991px) {
    .mega-menu-container {
        position: static !important;
        width: 100% !important;
        display: block !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    .mega-menu-inner {
        display: block !important;
    }
}

/* Mobildeki ayırıcı başlıkların stili */
.mobile-cat-header {
    background-color: #f8f9fa; /* Hafif gri arka plan */
    color: #333 !important;    /* Başlık rengi */
    font-size: 13px !important;
    font-weight: bold !important;
    padding: 10px 15px !important;
    text-transform: uppercase; /* Tümünü büyük harf yapar */
    border-left: 4px solid #007bff; /* Sol tarafa renkli şerit */
    pointer-events: none;      /* Tıklanabilir olmasın */
    margin-top: 5px;
}

/* Alt linklerin biraz içeriden başlaması için (opsiyonel) */
.sub-mobile-menu ul li a {
    padding-left: 25px !important;
    font-size: 14px;
}