* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.ana-menu ul {
    display: flex;
    list-style: none;
    gap: 14px;
}

.ana-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 13px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ana-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobil-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

main {
    flex: 1 0 auto;
    margin-top: 80px;
}

.bolum {
    padding: 116px 311px;
}

main > section:first-child {
    padding-top: 0;
}

/* SLIDER STİLLERİ */
.slider-container {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    background-color: #222;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
    width: 90%;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.cta-buton {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bolum-basligi {
    text-align: center;
    margin-bottom: 60px;
}

.bolum-basligi h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.bolum-basligi p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* FOOTER STİLLERİ */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
    flex-shrink: 0;
}

.footer-icerik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-bolum h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: white;
}

.sosyal-medya a {
    color: #bdc3c7;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.sosyal-medya a:hover {
    color: white;
}

.footer-alt {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* =================================================================== */
/* == YENİ NESİL, FİLTRELENEBİLİR VE ŞAHANE ÜRÜNLER BÖLÜMÜ STİLLERİ == */
/* =================================================================== */

.one-cikan-urunler-bolumu {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.kategori-filtre {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-filtre {
    background: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filtre:hover {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

.btn-filtre.aktif {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}

.urun-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; 
}

.urun-karti-wrapper {
    transition: all 0.3s ease;
}

.urun-karti {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.urun-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.urun-etiketi {
    position: absolute;
    top: 15px;
    right: -1px;
    background: #e44d26;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 15px 0 0 15px;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.urun-resim-wrapper {
    overflow: hidden;
    height: 220px;
}
.urun-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.urun-karti:hover .urun-resim {
    transform: scale(1.08);
}

.urun-bilgi {
    padding: 20px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.urun-kategori-adi {
    font-size: 12px;
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.urun-bilgi h3 { margin: 0 0 15px 0; }
.urun-bilgi h3 a {
    font-size: 20px; 
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}
.urun-bilgi h3 a:hover { color: #667eea; }

.urun-ozellik-listesi {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
    font-size: 14px;
    color: #555;
}
.urun-ozellik-listesi li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.urun-ozellik-listesi .ikon {
    color: #27ae60;
    margin-right: 8px;
    font-weight: bold;
}

.urun-kart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.urun-fiyat {
    font-size: 22px;
    font-weight: 800;
    color: #333;
}
.btn-detay {
    background: #f1f3f5;
    color: #495057;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-detay:hover {
    background: #667eea;
    color: white;
}

.urun-karti-wrapper.hidden {
    display: none;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.content-karti {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.content-karti:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.content-resim-wrapper {
    height: 200px;
    overflow: hidden;
}

.content-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-karti:hover .content-resim {
    transform: scale(1.05);
}

.content-bilgi {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.content-meta {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 10px;
}

.content-bilgi h3 {
    margin: 0 0 15px 0;
}

.content-bilgi h3 a {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.4;
}

.content-bilgi h3 a:hover {
    color: #667eea;
}

.content-bilgi p {
    color: #495057;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-devamini-oku {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-devamini-oku:hover {
    transform: translateX(4px);
    color: #2c3e50;
}

@media (max-width: 1200px) {
    .urun-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .urun-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
}

/* Sayfa Banner Sistemi Stilleri */
.sayfa-banner{padding:80px 0;position:relative;background-size:cover;background-position:center center;color:#fff;text-align:center;margin-top:80px}.banner-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);z-index:1}.banner-icerik{position:relative;z-index:2}.banner-icerik h1{font-size:48px;font-weight:800;margin-bottom:10px;text-shadow:2px 2px 8px rgba(0,0,0,.5)}.banner-icerik p{font-size:20px;opacity:.9;text-shadow:1px 1px 4px rgba(0,0,0,.5)}body.banner-aktif main > .bolum:first-of-type{padding-top:0}

/* ================================================================= */
/* == AÇILIR MENÜ (DROPDOWN) STİLLERİ (v4.0 - KESİN VE BASİT ÇÖZÜM) == */
/* ================================================================= */

.ana-menu ul li {
    position: relative;
}

/* Alt menüyü varsayılan olarak gizle */
.alt-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #34495e;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px; /* Üst menü ile arasına hafif boşluk */
    min-width: 200px;
    border-radius: 8px; /* Her köşeyi yuvarlak yap */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 100;
    opacity: 0; /* Animasyon için başlangıçta görünmez yap */
    transform: translateY(10px); /* Animasyon için aşağıdan gelsin */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Sadece "open" sınıfı olan menülerin alt menüsünü göster (Animasyonla) */
.ana-menu ul li.has-dropdown.open > .alt-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.alt-menu li a {
    padding: 12px 20px;
    display: block;
    border-radius: 0;
}

.alt-menu li a:hover {
    background-color: #667eea;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: 5px;
}

/* Mobil için stiller... */
@media (max-width: 768px) {
    .alt-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(0,0,0,0.2);
        padding-left: 20px;
    }
}

/* ======================== */
/* == İLETİŞİM SAYFASI == */
/* ======================== */
.iletisim-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.iletisim-sol, .iletisim-sag {
    flex: 1;
    min-width: 300px;
}
.iletisim-sol h3, .iletisim-sag h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.form-grubu {
    margin-bottom: 20px;
}
.form-grubu label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-grubu input, .form-grubu textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.btn.btn-birincil {
    background: #667eea;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.btn.btn-birincil:hover {
    background: #5a6ed8;
}

.iletisim-bilgi-listesi {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.iletisim-bilgi-listesi li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.iletisim-bilgi-listesi .ikon {
    margin-right: 10px;
    font-size: 1.2em;
    color: #667eea;
}

.harita-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}
.harita-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#form-sonuc {
    margin-top: 20px;
    font-weight: bold;
}
#form-sonuc.basari { color: green; }
#form-sonuc.hata { color: red; }


@media (max-width: 768px) {
    .iletisim-wrapper {
        flex-direction: column;
    }
}

/* ================================================= */
/* ==   NİHAİ GENİŞ SAYFA TASARIMI                == */
/* ================================================= */

/* Sayfa arka planını gri yapıyoruz */
body {
    background-color: #f0f2f5;
}

main.sayfa-main-bg {
    padding: 40px 0;
}

/* Ana yerleşim (sol içerik + sağ sidebar) */
.sayfa-layout-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1600px; /* İçeriğin maksimum genişliği */
    margin: 0 auto;    /* Ortalamak için */
    padding: 0 40px;   /* Ekran kenarlarına boşluk bırakmak için */
}

/* Sol taraf (ana içerik alanı) */
.sayfa-sol-icerik {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sayfa-ust-gorsel {
    width: 100%;
    height: 350px; /* Görsel alanının sabit yüksekliği (bu değeri artırıp azaltabilirsiniz) */
    overflow: hidden; /* Taşan kısımları gizle */
    background-color: #f0f2f5; /* Resim yüklenmezse diye arka plan */
}

.sayfa-ust-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bu sihirli kod, resmi kutuya sığdırır */
    object-position: center; /* Resmin merkezini odak noktası olarak alır */
    display: block;
}

.sayfa-metin-alani {
    padding: 30px 35px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* Sağ Taraf (Sidebar) */
.sayfa-sag-sidebar {
    flex-basis: 350px;
    width: 350px;
}

.sidebar-widget {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #1c2e46;
    font-weight: 600;
}

.sidebar-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-liste li {
    border-bottom: 1px solid #f0f2f5;
}
.sidebar-liste li:last-child {
    border-bottom: none;
}

.sidebar-liste a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5px;
    transition: all 0.2s ease;
}

.sidebar-liste a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.sidebar-liste a::after {
    content: '›';
    font-size: 20px;
    color: #ccc;
}

/* Yardım Widget'ı Özel Stilleri */
.widget-yardim {
    text-align: center;
}
.yardim-ikon {
    font-size: 32px;
    display: inline-block;
    margin-bottom: 10px;
}
.widget-yardim p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.yardim-telefon {
    font-size: 22px;
    font-weight: 700;
    color: #1c2e46;
    margin-bottom: 20px;
}

/* Mobil ve Tablet İçin Uyumluluk */
@media (max-width: 992px) {
    .sayfa-layout-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
    .sayfa-sag-sidebar {
        flex-basis: auto;
        width: 100%;
        margin-top: 30px;
    }
}


/* ================================================= */
/* ==   GÖSTERİŞLİ ÜRÜNLER SAYFASI TASARIMI       == */
/* ================================================= */

.urunler-sayfasi {
    background-color: #f8f9fa;
}
.urunler-sayfasi .bolum-basligi p {
    max-width: 700px;
}
.kategori-filtre {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.btn-filtre {
    background: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-filtre:hover {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}
.btn-filtre.aktif {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}

.urun-grid-gosterisli {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.urun-karti-gosterisli {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urun-karti-gosterisli:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.urun-resim-alanı {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.urun-resim-alanı img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.urun-karti-gosterisli:hover .urun-resim-alanı img {
    transform: scale(1.08);
}

.urun-resim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.urun-karti-gosterisli:hover .urun-resim-overlay {
    opacity: 1;
}

.btn-overlay {
    background: #fff;
    color: #333;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.urun-karti-gosterisli:hover .btn-overlay {
    transform: translateY(0);
}

.urun-kategori-etiket {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.urun-bilgi-alanı {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.urun-bilgi-alanı h3 a {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.3;
}

.urun-bilgi-alanı p {
    margin: 15px 0;
    color: #555;
    flex-grow: 1; /* Paragrafın esnemesini sağlar */
}

.urun-kart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f2f5;
    padding-top: 20px;
}

.urun-fiyat-gosterisli {
    font-size: 24px;
    font-weight: 700;
    color: #764ba2;
}

.btn-incele {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-incele:hover {
    color: #2c3e50;
    transform: translateX(4px);
}

/* ============================= */
/* ==   ÜRÜN DETAY GALERİSİ   == */
/* ============================= */

.urun-detay-wrapper {
    display: flex;
    gap: 40px;
}
.urun-detay-sol {
    flex: 1;
}
.urun-detay-sag {
    flex: 1;
}
.ana-resim {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
.ana-resim img {
    width: 100%;
    display: block;
}
.kucuk-resimler {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.kucuk-resim-item {
    border: 2px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s;
}
.kucuk-resim-item:hover, .kucuk-resim-item.aktif {
    border-color: #667eea;
}
.kucuk-resim-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.urun-detay-fiyat {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}
.urun-detay-aciklama {
    line-height: 1.8;
}
@media (max-width: 768px) {
    .urun-detay-wrapper {
        flex-direction: column;
    }
}

/* ============================= */
/* ==   ÜRÜN DETAY BUTONU     == */
/* ============================= */

.btn-teklif-al {
    display: inline-block; /* Kenar boşlukları ve dolguların doğru çalışması için */
    margin-top: 35px; /* Butonu açıklamadan aşağı alır */
    padding: 14px 28px; /* Butonun iç boşluğunu artırarak daha dolgun gösterir */
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase; /* Metni büyük harfe çevirir */
    letter-spacing: 0.5px; /* Harfler arası boşluk */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4); /* Butona gölge efekti */
    transition: all 0.3s ease; /* Animasyonlar için yumuşak geçiş */
}

.btn-teklif-al:hover {
    transform: translateY(-3px); /* Butonun yukarı doğru hafifçe hareket etmesi */
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5); /* Gölgeyi belirginleştirir */
}

/* Butonun sonuna ok ikonu ekliyoruz */
.btn-teklif-al::after {
    content: '→';
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

/* Butonun üzerine gelince okun hafifçe sağa kayması */
.btn-teklif-al:hover::after {
    margin-left: 15px;
}

/* ================================== */
/* ==   SOSYAL MEDYA PAYLAŞIM      == */
/* ================================== */

.sosyal-paylasim {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sosyal-paylasim strong {
    font-weight: 600;
    color: #333;
}

.paylasim-ikonlari {
    display: flex;
    gap: 10px;
}

.sosyal-ikon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sosyal-ikon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.sosyal-ikon.facebook { background-color: #1877F2; }
.sosyal-ikon.twitter { background-color: #1DA1F2; }
.sosyal-ikon.whatsapp { background-color: #25D366; }
.sosyal-ikon.linkedin { background-color: #0A66C2; }


/* ================================================= */
/* ==   HİZMETLER BÖLÜMÜ TÜM STİLLERİ (TEK PARÇA)  == */
/* ================================================= */

/* Hizmetler Listeleme Sayfası Arka Planı */
.hizmetler-sayfasi {
    background-color: #f8f9fa;
}

/* Hizmet Kartları Grid Yapısı */
.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Hizmet Kartı Ana Stili */
.hizmet-karti {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Hizmet Kartı Resim Alanı */
.hizmet-resim-alanı {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hizmet-resim-alanı img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hizmet-karti:hover .hizmet-resim-alanı img {
    transform: scale(1.08);
}

/* Resim Üzerindeki Overlay ve Buton */
.hizmet-resim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hizmet-karti:hover .hizmet-resim-overlay {
    opacity: 1;
}

/* Hizmet Kartı Bilgi Alanı */
.hizmet-bilgi-alanı {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hizmet-bilgi-alanı h3 a {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.3;
}

.hizmet-bilgi-alanı p {
    margin: 15px 0;
    color: #555;
    flex-grow: 1;
}

/* Hizmet Kartı Alt Kısım (Footer) */
.hizmet-kart-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid #f0f2f5;
    padding-top: 20px;
}

/* ================================================= */
/* ==   DİĞER HİZMETLER KART KÜÇÜLTME (NİHAİ)     == */
/* ================================================= */

.diger-hizmetler-bolumu .hizmet-grid {
    /* Kartların aşırı genişlemesini önlemek için sütunları sabitliyoruz */
    grid-template-columns: repeat(3, 1fr);
}


/* Mobil ve Tablet için Sütun Düzenlemeleri */
@media (max-width: 992px) {
    .diger-hizmetler-bolumu .hizmet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diger-hizmetler-bolumu .hizmet-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================= */
/* ==   DİĞER HİZMETLER BAŞLIK ORTALAMA           == */
/* ================================================= */

.diger-hizmetler-bolumu .bolum-basligi-h2 {
    text-align: center;
}

/* ================================================= */
/* ==      PROJELER BÖLÜMÜ TÜM STİLLERİ           == */
/* ================================================= */

.projeler-sayfasi {
    background-color: #f8f9fa;
}

.proje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.proje-karti {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proje-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.proje-resim-alanı {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.proje-resim-alanı img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proje-karti:hover .proje-resim-alanı img {
    transform: scale(1.08);
}

.proje-resim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proje-karti:hover .proje-resim-overlay {
    opacity: 1;
}

.proje-bilgi-alanı {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.proje-bilgi-alanı h3 a {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.3;
}

.proje-bilgi-alanı p {
    margin: 15px 0;
    color: #555;
    flex-grow: 1;
}

.proje-kart-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid #f0f2f5;
    padding-top: 20px;
}

/* Detay sayfasının altındaki "Diğer Projeler" bölümü */
.diger-projeler-bolumu .proje-karti {
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.diger-projeler-bolumu .proje-resim-alanı {
    height: 200px;
}
.diger-projeler-bolumu .proje-bilgi-alanı {
    padding: 20px;
}
.diger-projeler-bolumu .proje-bilgi-alanı h3 a {
    font-size: 18px;
}
.diger-projeler-bolumu .proje-bilgi-alanı p {
    font-size: 14px;
    margin: 10px 0;
}
.diger-projeler-bolumu .bolum-basligi-h2 {
    text-align: center;
}
.diger-projeler-bolumu .proje-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .diger-projeler-bolumu .proje-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .diger-projeler-bolumu .proje-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================= */
/* ==   MÜKEMMEL GALERİ TASARIMI (MASONRY)        == */
/* ================================================= */

.galeri-grid-masonry {
    margin: 0 auto;
}

/* Sütun genişliğini belirleyen görünmez eleman */
.grid-sizer {
    width: 32%;
}

.galeri-item-masonry {
    width: 32%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeri-item-masonry:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.galeri-item-masonry img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.galeri-item-masonry:hover img {
    transform: scale(1.08);
}

.galeri-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: left;
}

.galeri-item-masonry:hover .galeri-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.galeri-item-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Tablet ve Mobil için Ayarlamalar */
@media (max-width: 992px) {
    .grid-sizer,
    .galeri-item-masonry {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .grid-sizer,
    .galeri-item-masonry {
        width: 100%;
    }
}

/* ================================================= */
/* ==   GELİŞMİŞ GALERİ FİLTRE BUTONLARI          == */
/* ================================================= */

.galeri-filtre {
    display: flex;
    justify-content: center; /* Butonları ortalar */
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.galeri-filtre .btn-filtre {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 12px 30px; /* Buton boyutunu büyütür */
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px; /* Yazı boyutunu büyütür */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.galeri-filtre .btn-filtre:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-3px);
}

.galeri-filtre .btn-filtre.aktif {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(118, 75, 162, 0.3);
    transform: translateY(-3px);
}

/* ================================================= */
/* ==   MÜŞTERİ HİZMETLERİ WIDGET STİLLERİ        == */
/* ================================================= */
.musteri-hizmetleri-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.mh-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: #667eea;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='32px' height='32px'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: center;
}

.musteri-hizmetleri-widget.aktif .mh-toggle-btn {
    transform: rotate(45deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='28px' height='28px'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
}

.mh-secenekler {
    position: absolute;
    bottom: 75px; /* Ana butondan yukarıda */
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.musteri-hizmetleri-widget.aktif .mh-secenekler {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mh-buton {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.mh-buton:hover {
    transform: scale(1.1);
}

.mh-buton.whatsapp {
    background-color: #25D366;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='24px' height='24px'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.487 5.235 3.487 8.413 0 6.557-5.338 11.892-11.894 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.451-4.437-9.887-9.888-9.888-5.451 0-9.887 4.436-9.888 9.888.001 2.228.651 4.385 1.889 6.251l.115.192-1.125 4.092 4.183-1.096.182.112z'/%3E%3C/svg%3E");
}

.mh-buton.telefon {
    background-color: #34B7F1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='24px' height='24px'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m10.92 0h1.51c-.09 1.32-.35 2.59-.76 3.79l-1.2-1.2c.24-.83.39-1.7.45-2.59M6.6 9.45c.24.83.39 1.7.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m10.8.01c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51M20.01 15.38c-1.23 0-2.42-.21-3.53-.61l-1.24 1.24c1.32.55 2.76.84 4.27.84V15.38zM5.43 15.99c1.32.55 2.76.84 4.27.84V15.38c-1.23 0-2.42-.21-3.53-.61l-1.24 1.24zM3.52 9.47c-.09 1.32-.35 2.59-.76 3.79l-1.2-1.2c.24-.83.39-1.7.45-2.59h1.51zM19.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51zM3 4.5C3 3.67 3.67 3 4.5 3c.83 0 1.5.67 1.5 1.5c0 .35-.12.68-.33.94l-1.2 1.2C3.12 6.18 3 5.35 3 4.5zm13.5 1.5c.83 0 1.5-.67 1.5-1.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .35.12.68.33.94l1.17-1.17z'/%3E%3C/svg%3E");
}

.mh-buton.email {
    background-color: #7289da;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='24px' height='24px'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z'/%3E%3C/svg%3E");
}


/* ================================================= */
/* ==   EKİBİMİZ BÖLÜMÜ STİLLERİ                  == */
/* ================================================= */

.ekip-karti {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ekip-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.ekip-resim {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 5px solid #f8f9fa;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.ekip-karti h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}
.ekip-karti .unvan {
    font-size: 16px;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 15px;
    flex-grow: 1;
}
.ekip-sosyal-medya a {
    color: #999;
    font-size: 20px;
    margin: 0 8px;
    transition: color 0.3s ease;
}
.ekip-sosyal-medya a:hover {
    color: #667eea;
}
/* ================================================= */
/* ==   ANASAYFA HAKKIMIZDA BÖLÜMÜ STİLLERİ       == */
/* ================================================= */

.anasayfa-hakkimizda {
    background-color: #fff;
}

.anasayfa-hakkimizda-icerik {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hakkimizda-resim {
    flex-basis: 45%;
    flex-shrink: 0;
}

.hakkimizda-resim img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hakkimizda-metin {
    flex-basis: 55%;
}

.hakkimizda-metin h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hakkimizda-metin p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hakkimizda-metin .cta-buton {
    background: #2c3e50;
    color: #fff;
}

/* Mobil Cihazlar İçin */
@media (max-width: 992px) {
    .anasayfa-hakkimizda-icerik {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================================= */
/* ==   MÜŞTERİ HİZMETLERİ WIDGET (DİKEY VERSİYON)  == */
/* ================================================= */

/* Ana butonu gizliyoruz */
.musteri-hizmetleri-widget .mh-toggle-btn {
    display: none;
}

/* İkonların olduğu bölümü her zaman görünür ve dikey yapıyoruz */
.musteri-hizmetleri-widget .mh-secenekler {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    flex-direction: column; /* DİKEY DİZMEK İÇİN DEĞİŞTİRİLDİ */
    gap: 12px; /* İkonlar arasına dikey boşluk */
}

/* Widget'ın ana kapsayıcısını düzenliyoruz */
.musteri-hizmetleri-widget {
    position: fixed; /* Ekranda sabit kalması için */
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

/* İkonların stilleri (FontAwesome için) */
.mh-buton {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    width: 50px; /* Sabit genişlik */
    height: 50px; /* Sabit yükseklik */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mh-buton:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.mh-buton.whatsapp { background-color: #25D366; }
.mh-buton.telefon { background-color: #34B7F1; }
.mh-buton.email { background-color: #7289da; }