/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
body {
    overflow-x: hidden;
    width: 100%;
}
.container {
    max-width: 1260px;
    margin: 0 auto ;
    width: 100%;
    padding: 0 20px;
}
a {
    text-decoration: none;
    transition: 0.3s;
}
ul {
    list-style: none;
}
.logo {
    font-size: 22px;
    letter-spacing: 1px;
    color: #FF0000;
}
    .logo strong {
        color: #FF0000;
        font-weight: 800;
    }
    .logo a:hover img {
        transform: scale(1.05);
    }
    .logo a:hover {
        opacity: 0.9;
    }
.site-logo {
    height: 45px;
    width: auto;
    transition: 0.3s ease;
}
.product-group {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
/* 1. Üst Bilgi Çubuğu (Top Bar) */
.top-bar {
    background: #2c3e50; /* Koyu gri/lacivert yapıldı (Footer ile uyumlu) */
    color: #ffffff; /* Genel yazı rengi beyaz yapıldı */
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #3e4f5f; /* Alt çizgi biraz daha koyu yapıldı */
}
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
.contact-info a, .contact-info span {
    margin-right: 15px;
    color: #ffffff; /* Linkler ve metinler beyaz yapıldı */
}
    .contact-info a:hover {
        color: #FF0000; /* Üzerine gelince ikonlar gibi kırmızı olsun */
    }
.whatsapp-link {
    color: #ffffff; /* WhatsApp linki de koyu gri yerine beyaz yapıldı */
    font-weight: bold;
}
/* 2. Yapışkan Header (Sticky Header) */
.main-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    list-style: none;
    margin-left: auto; 
    gap: 30px;
}
    .nav-menu {
    list-style: none;
    margin-left: auto;
    gap: 15px;
}
    .nav-menu li a {
        padding: 5px 10px;
        color: #333;
        font-weight: 500;
    }
        .nav-menu li a:hover {
            color: #2c3e50; /* Hover turuncu yerine koyu gri yapıldı */
        }
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mobile-toggle {
    display: none; /* Varsayılan olarak hiçbir yerde görünmesin */
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-navy);
}
/* 3. Hero Bölümü Tasarımı */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../../img/kombi-bakim.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}
/* --- Marka Logoları --- */
.brands, .brands-urunlerimiz {
    background: #ffffff;
    padding: 5px 0;
    margin-top: 85px;
    position: relative;
    z-index: 10;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.brand-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 15px;
}
    .brand-logos img {
        height: 20px;
        width: auto;
        transition: 0.4s ease;
        display: block;
        object-fit: contain;
    }
        .brand-logos img:hover {
            transform: translateY(-5px);
            opacity: 1;
        }
.btn {
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
}
.btn-call {
    background: #FF0000;
    color: white;
}
.btn-wa {
    background: #2c3e50; /* Turuncu/Yeşil yerine koyu gri */
    color: white;
}
.btn-cal .btn-wa:hover {
    background-color: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.5);
    background-color: #34495e;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}
    .service-card:hover {
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }
    .service-card i {
        font-size: 40px;
        color: #FF0000;
        margin-bottom: 15px;
    }
/* Arıza Kodları */
.error-codes {
    background: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}
.brand-selection {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.brand-btn {
    background: #fff;
    border: 2px solid #FF0000;
    color: #FF0000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
}
    .brand-btn:hover {
        background: #FF0000;
        color: #fff;
    }
.back-navigation {
    padding: 20px 0; 
    background: #fdfdfd; 
}

.btn-outline-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid #2c3e50; 
    color: #2c3e50;
    border-radius: 5px; 
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.btn-outline-back:hover {
    background: #2c3e50; 
    color: #fff !important;
    transform: translateX(-5px); 
}
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #c0392b 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 700;
    }
    .cta-section p {
        font-size: 18px;
        margin-bottom: 25px;
        opacity: 0.9;
    }
.cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #c0392b;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        background-color: #f8f9fa;
        color: #e74c3c;
    }
/* Servis Süreci */
.process {
    padding: 80px 0;
}
.process-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}
.step-number {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.process-step h3 {
    margin-bottom: 10px;
    color: #333;
}
.google-reviews {
    background: #fff;
    padding: 80px 0;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.review-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}
    .review-header img:not(.g-icon) {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    .review-header h4 {
        font-size: 16px;
        margin-bottom: 2px;
    }
.stars {
    color: #fbbc05;
    font-size: 14px;
}
.g-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
.review-card p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}
.review-date {
    font-size: 12px;
    color: #999;
}
.all-reviews-link {
    text-align: center;
    margin-top: 40px;
}
    .all-reviews-link a {
        color: #4285f4;
        font-weight: 600;
        text-decoration: underline;
    }
.service-areas {
    background: #fdfdfd;
    padding: 70px 0;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.area-item {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}
    .area-item i {
        color: #FF0000;
        font-size: 18px;
    }
    .area-item span {
        font-weight: 600;
        color: #333;
        font-size: 16px;
    }
    .area-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #2c3e50; /* Koyu gri dolgu */
        transition: left 0.5s ease;
        z-index: -1;
    }
    .area-item:hover {
        border-color: #FF0000;
        background: #fff; /* Arka plan beyaz kalır, before dolgusu gelir */
        transform: scale(1.03);
    }
        .area-item:hover::before {
            left: 0;
        }
        .area-item:hover i, .area-item:hover span {
            color: #fff; /* Dolgu gelince yazı beyaz olsun */
        }
.area-notice {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
}
.area-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
    .area-btns .btn-call {
        display: inline-flex;
        align-items: center;
        background-color: #FF0000;
        color: white !important;
        padding: 15px 35px;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
        .area-btns .btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            background-color: #2c3e50;
        }
/* --- Hakkımızda Sayfası Genel Yapı --- */
.about-zigzag-section {
    padding: 80px 0;
    background-color: #fff;
}
/* --- Başlık Alanı (Header Stamp) --- */
.header-stamp .since {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.header-stamp h1 {
    font-size: 38px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px;
}
.header-stamp .subtitle {
    font-size: 18px;
    color: #666;
}
/* --- Zigzag Düzeni (Görsel ve Metin Dengesi) --- */
.zigzag-item {
    display: flex;
    align-items: center;
    gap: 50px; 
    margin-bottom: 80px;
}
    .zigzag-item.alt {
        flex-direction: row-reverse;
    }
.zigzag-content {
    flex: 1.4; /* Metne daha fazla alan ayırır */
}
.year-label {
    display: block;
    color: #FF0000;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.zigzag-content h3 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
}
.zigzag-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}
/* --- Özellik İkonları --- */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.f-item {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}
    .f-item i {
        color: #daa520;
    }
.zigzag-image-wrapper {
    flex: 0.5; /* Resim alanını daraltır */
    position: relative;
    max-width: 350px; /* Resmin çok büyümesini engeller */
    width: 100%;
    margin: 0 auto;
}
.zigzag-image-box {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
    .zigzag-image-box img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    .zigzag-image-box:hover img {
        transform: scale(1.05);
    }
/* Dekoratif Bloklar */
.image-deco-block {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    top: 15px;
    left: 15px;
    z-index: 1;
    border-radius: 15px;
}
    .image-deco-block.red {
        background: #FF0000;
        opacity: 0.1;
    }
/* --- İstatistik Barı --- */
.stats-bar {
    background: #2c3e50;
    padding: 60px 0;
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-card {
    border-right: 1px solid rgba(255,255,255,0.1);
}
    .stat-card:last-child {
        border-right: none;
    }
.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #FF0000;
    margin-bottom: 5px;
}
.stat-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
/* --- Marka Strip --- */
.brand-strip {
    padding: 45px 0;
    background: #fff;
    text-align: center;
}
.brand-title {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/*Hizmetler Sayfası*/
/* Sayfa Başlığı (Hero) */
.inner-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../../img/hero-bg.jpg');
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
/* Hizmet Satırları */
.detailed-services {
    padding: 60px 0;
    background: #fdfdfd;
}
.service-detail {
    padding: 80px 0;
    background: #fff;
}
.service-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.service-image {
    flex: 0 0 350px; /* Resim kutusunun genişliğini 350px ile sabitler (Büyümez, küçülmez) */
    width: 350px; /* Resim kutusunun genişliği */
    height: 350px; /* Resim kutusunun yüksekliği (Kare bir alan) */
    overflow: hidden; /* Taşmaları gizler */
    border-radius: 15px; /* Köşeleri yuvarlar */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Resim sığdırılırken kesilme yapmaz, kutuyu doldurur */
        object-position: center; /* Resmi ortalar */
        transition: transform 0.3s ease;
    }
.service-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}
    .service-text h2 {
        font-size: 28px;
        color: #2c3e50;
        margin-bottom: 20px;
    }
.service-features {
    list-style: none;
    padding: 20px 0;
}
    .service-features li {
        margin-bottom: 12px;
        font-size: 1.1rem;
        color: #444;
    }
    .service-features i {
        color: #c0392b; /* Senin kırmızı tonun */
        margin-right: 10px;
        font-size: 18px;
    }
.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}
    .service-item.reverse {
        flex-direction: row-reverse;
    }
.service-img {
    flex: 1;
    background: #fff;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
    .service-img i {
        font-size: 100px;
        color: #c0392b;
    }
.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}
.service-desc {
    flex: 1.5;
}
    .service-desc h3 {
        font-size: 28px;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 10px;
    }
        .service-desc h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: #c0392b;
        }
    .service-desc p {
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }
    .service-desc ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
        .service-desc ul li {
            margin-bottom: 10px;
            font-weight: 500;
            color: #333;
        }
            .service-desc ul li i {
                color: #27ae60;
                margin-right: 10px;
            }
.service-img i.fa-dumpster-fire {
    color: var(--primary-red);
}
/* Butonlar */
.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c0392b;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
    .service-btn:hover {
        background: #2c3e50;
    }
.wa-btn {
    background: #25d366;
}
    .wa-btn:hover {
        background: #128c7e;
    }
.services-faq {
    padding: 60px 0;
    background: #fff;
}
.services-faq .section-title {
        text-align: center;
        font-size: 28px;
        color: #2c3e50;
        margin-bottom: 20px;
        margin-top: 5px;
}
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
    .faq-item h4 {
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 18px;
    }
    .faq-item p {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }
.savings-banner {
    background: #27ae60;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
}
.savings-content i {
    font-size: 50px;
    margin-bottom: 15px;
}
.savings-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.savings-btn {
    background: #fff;
    color: #27ae60;
    border: none;
}
/*URUNLER SAYFASI*/
/* urunler.css - Menemen Teknik Ürünler Sayfası Özel Stilleri */

:root {
    --primary-red: #c0392b; /* Ana vurgu rengin */
    --dark-navy: #2c3e50; /* Başlıklar ve metinler için */
    --light-gray: #f9f9f9; /* Arka planlar için */
    --white: #ffffff;
    --transition: all 0.3s ease;
}
/* Ana Konteyner Ayarı */
.page-urunler {
    padding-top: 40px;
    background-color: var(--light-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Bölüm Başlıkları ve Alt Metinler */
.product-group {
    padding: 60px 0;
    border-bottom: 1px dotted #ddd;
}
    .product-group:last-child {
        border-bottom: none;
    }
.section-title {
    color: var(--dark-navy);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
/* Ürün Grid Yapısı (Yan yana dizilim) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}
/* Ürün Kartı Tasarımı */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
/* Ürün Görseli */
.product-image {
    width: 100%;
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}
    .product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: var(--transition);
    }
.product-card:hover .product-image img {
    transform: scale(1.05);
}
/* Ürün Bilgileri */
.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
    .product-info h3 {
        color: var(--dark-navy);
        font-size: 1.3rem;
        margin-bottom: 15px;
        border-left: 4px solid var(--primary-red);
        padding-left: 10px;
    }
.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .product-specs li {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 8px;
        line-height: 1.4;
    }
/* Teknik Detay Butonu */
.tech-link-item {
    margin-top: auto;
    padding-top: 15px;
}
    .tech-link-item hr {
        border: 0;
        border-top: 1px solid #eee;
        margin-bottom: 15px;
    }
.tech-btn {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
    .tech-btn:hover {
        color: var(--dark-navy);
        padding-left: 5px;
    }
/* --- LOKASYON SAYFASI ÖZEL STİLLERİ --- */
.location-page {
    background-color: #fdfdfd;
}
/* 1. Hero Bölümü - Genel Ayarlar */
.aliaga-hero, .menemen-hero, .foca-hero {
    background-size: cover !important;      /* Resmin alanı kaplamasını sağlar */
    background-position: center !important;  /* Resmi ortalar */
    background-repeat: no-repeat !important; /* RESİM TEKRARINI ENGELLER */
    min-height: 55vh;  /* Devasa görüntüyü 55'e çektik, daha dengeli */
    display: flex; 
    align-items: center; 
    justify-content: center;    
    color: white;
    text-align: center;
    padding: 80px 0;
}
/* Yazıların Sıkışmasını Engelleyen Genişlik Ayarı */
.location-hero .hero-content {
    max-width: 850px; 
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}
.location-hero h1 {
    font-size: 3.5rem; 
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Okunabilirliği artırır */
}
.location-hero p {
    font-size: 1.35rem; 
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 900px; /* Paragrafın çok aşırı yayılmaması için */
    margin-left: auto;
    margin-right: auto;
}
.call-btn {
    display: inline-block;
    background-color: #FF0000;
    color: white !important;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}
.call-btn:hover {
    transform: translateY(-5px);
    background-color: #2c3e50;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
/* 2. Özellik Kartları (Features) */
.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 10% 40px;
    margin-top: -50px; /* Hero'nun üzerine hafif binmesi için */
}
.feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #FF0000;
    transition: 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.feature-card p {
    color: #666;
    line-height: 1.5;
}
/* 3. Metin İçeriği ve Mahalleler */
.location-text-content {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}
.location-text-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}
.location-text-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.neighborhoods {
    background: #f4f4f4;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
}
.neighborhoods h4 {
    font-size: 1.5rem;
    color: #FF0000;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}
.neighborhoods ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}
.neighborhoods ul li {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
/* --- LOKASYON SAYFASI ARIZA KODLARI TASARIMI --- */
.error-codes-location {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}
.error-codes-location .section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.error-codes-location .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.back-navigation {
        padding: 15px 0;
    }
    .btn-outline-back {
        font-size: 13px;
        padding: 8px 15px;
    }
/* Bilgilendirme Notu (Quick Help Note) */
.quick-help-note {
    margin-top: 25px;
    padding: 15px;
    background: #fff5f5; /* Çok hafif bir kırmızı tonu */
    border-left: 4px solid #FF0000;
    display: inline-block;
    border-radius: 4px;
}
.quick-help-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}
.quick-help-note i {
    color: #FF0000;
    margin-right: 8px;
}
/* --- Footer Stilleri --- */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0 0;
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFF;
}
    .footer-logo strong {
        color: #FFF;
    }
.footer-col p {
    line-height: 1.6;
    font-size: 14px;
    color: #bdc3c7;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: #FF0000; 
    }
.footer-col ul li {
    margin-bottom: 10px;
}
    .footer-col ul li a {
        color: #bdc3c7;
        transition: 0.3s;
    }
        .footer-col ul li a:hover {
            color: #FF0000; 
            padding-left: 5px;
        }
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 5px 0;
}
    .contact-item i {
        color: #FF0000;
        font-size: 16px;
    }
    /* İkonlar kırmızı */
    .contact-item span a {
        text-decoration: none;
        color: inherit;
        transition: 0.3s;
        display: inline-block;
        padding: 8px 0;
    }
        .contact-item span a:hover {
            color: #FF0000;
        }
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
    .footer-social a {
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        margin: 5px;
        font-size: 24px;
        transition: transform 0.3s ease;
    }
        .footer-social a .fa-facebook,
        .footer-social a .fa-facebook-f {
            color: #1877F2 !important;
        }
        .footer-social a .fa-instagram {
            color: #E4405F !important; 
        }
        .footer-social a .fa-whatsapp {
            color: #25D366 !important; 
        }
        .footer-social a:hover {
            transform: translateY(-3px) scale(1.1);
        }
.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #3e4f5f;
}
.footer-legal-zone {
    margin: 20px 0;
}

.legal-title {
    color: #ffffff;
    font-size: 15px !important;
    margin-bottom: 12px !important;
    font-weight: 600;
}

.legal-pdf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-pdf-list li {
    margin-bottom: 10px;
}

.legal-pdf-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.legal-pdf-list li a i {
    color: #e74c3c; /* PDF ikon rengi */
    font-size: 15px;
}

.legal-pdf-list li a:hover {
    color: #ffffff;
    transform: translateX(5px); /* Hafif sağa kayma efekti */
}
.price-btn {
    display: block;
    background-color: #25d366;
    color: white !important;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
}

    .price-btn:hover {
        background-color: #128c7e;
    }
/* ============================================================
   MOBİL UYUMLULUK VE YAPI (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* 1. Hamburger İkonu */
    .mobile-toggle {
        display: block !important;
        z-index: 1101;
        cursor: pointer;
        padding: 15px;
        font-size: 28px;
        color: #2c3e50 !important;
    }
    .mobile-toggle.active {
        color: #FF0000; /* Tıklandığında kırmızı olsun */
    }
    .logo img {
        height: 40px !important;
    }
    /* 2. Navigasyon Menüsü Dönüşümü */
    /* Header alanını sabitle ve taşmaları engelle */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000; /* Header genel olarak üstte kalsın */
        background: #fff;
    }
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 15px;
    }
    .nav-menu {
        display: none; /* JS ile active olana kadar gizli */
        flex-direction: column;
        position: absolute;
        top: 65px; 
        right:15px;
        left: auto;
        width: 180px;
        background: #ffffff;
        z-index: 999; /* Logonun z-index değerinden (1000) düşük olmalı */
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 12px;
        padding: 10px 0;
    }
        /* JavaScript tıklandığında menüyü içeri sürükler */
        .nav-menu.active {
            display: flex !important;
        }
        .nav-menu li {
            width: 100%;
            text-align: center;
            margin: 0;
        }
            .nav-menu li a {
                display: block;
                padding: 8px 15px;
                font-size: 15px;
                text-align: left;   
                border-bottom: none;
            }
            .nav-menu li:last-child a {
        border-bottom: none;
    }  
    /* 3. Hero Alanı Düzenleme */
    .hero {
        height: auto !important;
        min-height: 45vh;
        padding: 80px 20px 40px 20px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }
    /* 4. Grid ve Flex Yapıları (Hizmetler ve Zigzag) */
    .service-grid, .product-grid, .reviews-grid, .areas-grid, .stats-grid {
        grid-template-columns: 1fr !important; /* Her şey alt alta */
        gap: 25px;
    }
    .zigzag-item, .zigzag-item.alt, .service-item, .service-item.reverse, .service-flex {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
    }
    /* 5. Görsel Boyutlandırmalar */
    .zigzag-image-wrapper, .service-image, .service-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        flex: none !important;
    }
    .service-image {
        height: 300px !important; /* Detay sayfasındaki kare görseller için */
    }
    .service-img {
        height: 150px !important; /* İkonlu kutular için */
    }
    /* 6. Listeler ve Yazı Ayarları */
    .service-desc h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .service-features, .service-desc ul {
        display: inline-block;
        text-align: left;
    }
    /* 7. İstatistik Barı Özel (2'li görünüm mobilde daha şık durur) */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 20px 0;
    }
.location-hero h1 {
        font-size: 1.8rem;
    }    
    .location-hero p {
        font-size: 1rem;
    }    
    .call-btn {
        padding: 11px 20px;
        font-size: 1rem;
        text-align: center;
        white-space: nowrap;
    }
    .page-location-menemen .call-btn {
        font-size: 0.9rem !important;    
        letter-spacing: -0.5px;        
    }
    .location-features {
        padding: 40px 20px;
        margin-top: 0;
    }
    .neighborhoods ul {
        grid-template-columns: 1fr;
    }
    .brand-btn, .btn-call, .btn-wa {
        min-height: 48px; /* Standart parmak yüksekliği */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 10px 5px; /* Butonlar arasına nefes payı */
    }
/* LOKASYON SAYFALARI MOBIL */
.page-location-foca .call-btn {
        font-size: 1rem !important;
        letter-spacing: -0.5px;
    }
.error-codes-location .section-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }    
    .error-codes-location .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    .quick-help-note {
        margin: 20px 15px 0 15px;
        display: block; /* Mobilde tam genişlik kaplasın */
        text-align: left;
    }
    .aliaga-hero, .menemen-hero, .foca-hero {
        min-height: 45vh; /* Mobilde biraz daha küçük kalsın */
        padding: 50px 20px;
    }
    .location-hero h1 {
        font-size: 2rem !important;
    }
    .location-hero p {
        font-size: 1.1rem !important;
    }
    .aliaga-hero {
        background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.6)), url('../../img/aliaga-mobil.jpg');
    }
    .menemen-hero {
        background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.6)), url('../../img/menemen-mobil.jpg');
    }
    .foca-hero {
        background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.6)), url('../../img/foca-mobil.webp');
    }
}
/* Masaüstünde butonu gizle */
@media (min-width: 769px) {
    .nav-menu {
        position: static !important;
        display: flex !important;
        right: auto !important;
        height: auto !important;
        width: auto !important;
        box-shadow: none !important;
        padding: 0 !important;
        background: transparent !important;
    }
    .mobile-toggle {
        display: none !important; /* Masaüstünde hamburgeri gizle */
    }    
    .aliaga-hero {
        background: linear-gradient(rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.5)), url('../../img/warnemunde-8079731.jpg') no-repeat center/cover !important;     
    }
    .menemen-hero {
        background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.5)), url('../../img/su-ucuran-selalesi.jpg') no-repeat center/cover !important;    
    }
    .foca-hero {
        background: linear-gradient(rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.4)), url('../../img/foca-bg.webp') no-repeat center/cover !important;    
    }
}
