/*
Theme Name: Atabey Yapı
Theme URI: https://example.com/
Author: Sezer Güler
Author URI: https://example.com/
Description: HTML/CSS/JS ile hazırlanmış statik sitenin WordPress teması.
Version: 1.0
*/

:root {
    --main-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Amatic SC", sans-serif;
}

body {
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
      display: flex;
  flex-direction: column;
  min-height: 100vh;
}
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

header {
    background-color: #f8f8f8;
    color: #333;
    padding: 30px 0 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* height: 50px; Sabit yükseklik kaldırıldı */
}

.logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.mobile-menu-button {
    display: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    display: block;
    font-family: "Inter", sans-serif;
    line-height: 1;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a.active {
    color: #000;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #8b0000cc;
    transition: width 0.3s ease-in-out;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
}

.book-button a {
    background-color: #8b0000cc;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--main-font);
    transition: background-color 0.3s ease-in-out;
}

.book-button a:hover {
    background-color: #6a0000;
}

.book-button a i {
    margin-right: 8px;
    font-size: 1em;
    vertical-align: middle;
}

/* Dropdown Menü Stilleri */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 180px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s 0.3s;
    border-radius: 0 0 5px 5px;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    font-family: "Inter", sans-serif;
}

.dropdown-menu li a:hover {
    background-color: #e0e0e0;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 0.8em;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .mobile-menu-button {
        display: block;
        margin-bottom: 15px;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-bottom: 15px;
        background-color: #f8f8f8;
        padding: 10px;
        border-radius: 5px;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    nav ul li a {
        color: #333;
        padding: 10px;
        display: block;
    }

    nav ul li a:hover {
        background-color: #e0e0e0;
    }

    .book-button {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .book-button a {
        display: block;
    }
}

/* Slider Container */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slider */
.slider {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out; /* Kayma animasyonu */
}

/* Slide */
.slide {
    flex: 0 0 100%;
    height: 600px; /* İsteğe bağlı: Slider yüksekliği */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* İsteğe bağlı: Arka plan karartma */
}

/* Slide Content */
.slide-content {
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1; /* İçeriğin arka planın üzerinde olması için */
}

.slide-title {
    font-size: 3em;
    margin-bottom: 15px;
}

.slide-subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 300;
}

.slide-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.slide-button {
    display: inline-block;
    background-color: #8b0000cc;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease-in-out;
}

.slide-button:hover {
    background-color: #6a0000;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.slider-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    outline: none;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.slider-dots button {
    background: none;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease-in-out;
}

.slider-dots button.active {
    background-color: #fff;
}

/* Mobil Uyumluluk (Slider) */
@media (max-width: 768px) {
    .slide {
        height: 400px;
    }

    .slide-title {
        font-size: 2em;
    }

    .slide-subtitle {
        font-size: 1.2em;
    }

    .slide-text {
        font-size: 1em;
        max-width: 90%;
    }

    .slider-controls button {
        font-size: 1.5em;
        padding: 8px;
    }
}

/* Hizmetlerimiz Alanı (Güncellenmiş) */
.hizmetlerimiz-alani {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.hizmetlerimiz-alani .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 15px; /* Mobil için sol kenar boşluğu */
    padding-right: 15px; /* Mobil için sağ kenar boşluğu */
}

/* Hizmetlerimiz Alanı Başlık Bölümü */
.hizmetlerimiz-alani .hizmetler-baslik {
	
  
    padding: 20px 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    color: #000; /* Metin rengini arka plana göre ayarlayabilirsiniz */
    text-align: center; /* Metinleri ortalayalım */
}
}

.hizmetlerimiz-alani .hizmetler-baslik h2 {
    
	font-size: 1.875rem;
    line-height: 2.25rem;
    color: #000;
    margin-bottom: 15px;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif
}

.hizmetlerimiz-alani .hizmetler-baslik .aciklama {
    color: #000;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Hizmetler Grid'i */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Hizmet Kutusu Görselleri */
.hizmet-gorsel {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
    order: 0;
}

/* Her bir hizmet için arka plan görselleri (Kendi görsellerinizi ekleyin) */
.hizmet-duvar-citasi .hizmet-gorsel {
    background-image: url('images/duvar-citasi-gorsel.jpg');
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
}

.hizmet-duvar-paneli .hizmet-gorsel {
    background-image: url('images/duvar-paneli-gorsel.jpg');
}

.hizmet-mdf-lambri .hizmet-gorsel {
    background-image: url('images/mdf-lambri-gorsel.jpg');
}

.hizmet-tv-unitesi .hizmet-gorsel {
    background-image: url('images/tv-unitesi-gorsel.jpg');
}

.hizmet-dresuar-ayna .hizmet-gorsel {
    background-image: url('images/dresuar-ayna-gorsel.jpg');
}

.hizmet-kutusu {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 480px;
    height: 530px;
}

.hizmet-kutusu:hover {
    transform: translateY(-5px);
}

.hizmet-kutusu {
    /* ... diğer stil tanımlamaları ... */
    width: 400px; /* Önceki değer: 480px - Yeni genişlik */
    /* height: 530px; Yükseklik otomatik kalabilir veya isteğe bağlı olarak azaltılabilir */
}

.hizmet-kutusu p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 25px;
    order: 2;
}

.detay-btn {
    display: inline-block;
    color: #8b0000cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    order: 3;
    padding: 10px 20px;
    border: 1px solid #8b0000cc;
    border-radius: 5px;
}

.detay-btn:hover {
    background-color: #8b0000cc;
    color: #fff;
}



.calisma-surecimiz-alani {
    padding: 10px 0;
    background-color: #f9f9f9; /* Görseldeki arka plan rengine yakın bir ton */
    text-align: center; /* Bu satır önemli! */
}

.calisma-surecimiz-alani .container {
    /* container'ın kendi içindeki hizalamasını değiştirmeyin */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.calisma-surecimiz-alani .hizmetler-baslik {
    text-align: center; /* Başlık ve açıklamayı kendi içinde ortala */
    margin-bottom: 40px;
    width: 100%;
}

.calisma-surecimiz-alani .hizmetler-baslik h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #333;
    margin-bottom: 15px;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.calisma-surecimiz-alani .hizmetler-baslik .aciklama {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.calisma-surecimiz-adimlar {
    display: flex;
    justify-content: space-around; /* Adımları eşit aralıklarla yerleştir */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start; /* İkonların ve yazıların yukarıdan hizalanması */
    margin-top: 30px; /* Başlıktan sonra biraz boşluk bırak */
}

.calisma-surecimiz-adimlar .adim {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 280px; /* Yaklaşık olarak görseldeki genişlik */
    margin-bottom: 30px; /* Mobil için alt boşluk */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    opacity: 0; /* Başlangıçta görünmez yap */
    transform: translateY(20px); /* Başlangıçta aşağıda konumlandır */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    margin-left: 15px; /* Sağa boşluk ekle */
    margin-right: 15px; /* Sola boşluk ekle */
}

/* İlk ve son adımdaki gereksiz boşlukları kaldır */
.calisma-surecimiz-adimlar > :first-child {
    margin-left: 0;
}

.calisma-surecimiz-adimlar > :last-child {
    margin-right: 0;
}

.calisma-surecimiz-adimlar .adim.goster {
    opacity: 1;
    transform: translateY(0);
}

.calisma-surecimiz-adimlar .adim .adim-ikon {
    background-color: #fce7e7; /* Görseldeki ikon arka plan rengine yakın bir ton */
    color: #8b0000cc; /* Görseldeki ikon rengine yakın bir ton */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin: 0 auto 15px;
}

.calisma-surecimiz-adimlar .adim h3 {
    font-size: 1.3em; /* Başlık boyutunu ikonla uyumlu hale getirelim */
    color: #333;
    margin-bottom: 10px;
}

.calisma-surecimiz-adimlar .adim p {
    color: #555;
    font-size: 0.95em; /* Metin boyutunu ikonla uyumlu hale getirelim */
    line-height: 1.6;
}

/* Animasyon gecikmeleri */
.calisma-surecimiz-adimlar .adim-2 {
    transition-delay: 0.2s;
}

.calisma-surecimiz-adimlar .adim-3 {
    transition-delay: 0.4s;
}

.calisma-surecimiz-adimlar .adim-4 {
    transition-delay: 0.6s;
}



.calisma-surecimiz-alani .hizmetler-baslik.calisma-surecimiz-baslik {
    background: linear-gradient(to right, #800000, #808080); /* Soldan sağa bordo ve gri */
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    color: #fff; /* Metin rengini arka plana göre ayarlayabilirsiniz */
    text-align: center; /* Metinleri ortalayalım */
}

.calisma-surecimiz-alani .hizmetler-baslik.calisma-surecimiz-baslik h2,
.calisma-surecimiz-alani .hizmetler-baslik.calisma-surecimiz-baslik .aciklama {
    color: #fff; /* Metin rengini beyaz yapalım */
}



#back-to-top-btn {
    display: none; /* Başlangıçta gizli */
    position: fixed; /* Sabit konumlandırma */
    bottom: 20px;
    right: 20px;
    z-index: 999; /* Diğer içeriklerin üzerinde olması için yüksek bir z-index */
    background-color: #8b0000; /* Bordo renk */
    color: #fff; /* Beyaz ikon/metin */
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2em;
    opacity: 0.8; /* Hafif şeffaflık */
    transition: opacity 0.3s ease, background-color 0.3s ease; /* Yumuşak geçişler */
}

#back-to-top-btn:hover {
    opacity: 1; /* Hover üzerinde tam opaklık */
    background-color: #6a0000; /* Hover üzerinde daha koyu bordo */
}

#back-to-top-btn i {
    vertical-align: middle; /* İkonu dikey olarak ortala */
}

/* Mobil cihazlar için (isteğe bağlı olarak boyutları ayarlayabilirsiniz) */
@media (max-width: 768px) {
    #back-to-top-btn {
        font-size: 1em;
        padding: 8px 12px;
        bottom: 15px;
        right: 15px;
    }
}





.hizmetlerimiz-kaydir-ipucu {
    text-align: center;
    margin-top: 20px;
    color: #555;
    font-size: 1em;
    animation: kaydirOku 1.5s infinite ease-in-out; /* Animasyonu buraya taşıdık */
    cursor: pointer; /* Üzerine gelince tıklanabilir hissi versin */
}

.hizmetlerimiz-kaydir-ipucu span {
    display: block;
    margin-bottom: 5px;
}

.hizmetlerimiz-kaydir-ipucu .ok-animasyonu {
    width: 30px;
    height: 20px;
    margin: 0 auto;
    position: relative;
}

.hizmetlerimiz-kaydir-ipucu .ok-animasyonu i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5em;
    color: #8b0000;
}

@keyframes kaydirOku {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

/* Mobil cihazlar için (isteğe bağlı olarak boyutları ayarlayabilirsiniz) */
@media (max-width: 768px) {
    .hizmetlerimiz-kaydir-ipucu {
        font-size: 0.9em;
        margin-top: 15px;
    }

    .hizmetlerimiz-kaydir-ipucu .ok-animasyonu i {
        font-size: 1.2em;
    }
}












/* Genel Stiller */
.teklif-al-alani.daha-profesyonel {
    padding: 80px 0;
    background-color: #fff;
    text-align: center; /* Genel hizalama */
}

.teklif-al-alani.daha-profesyonel .container {
    max-width: 700px; /* Form ve başlık için maksimum genişlik */
    margin: 0 auto;
    padding: 0 20px;
    display: block; /* İç öğelerin dikey sıralanması için */
}

.teklif-al-alani.daha-profesyonel .teklif-baslik-alani {
    margin-bottom: 40px;
    text-align: center; /* Başlığı ortala */
}

.teklif-al-alani.daha-profesyonel .teklif-baslik-alani h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.teklif-al-alani.daha-profesyonel .teklif-baslik-alani .aciklama {
    color: #555;
    font-size: 1.15em;
    line-height: 1.7;
}

.teklif-al-alani.daha-profesyonel .teklif-formu {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Form içindeki öğeleri genişliğe göre uzat */
    margin-top: 20px; /* Başlıktan boşluk */
}

.teklif-al-alani.daha-profesyonel .form-grup {
    margin-bottom: 20px;
    text-align: left;
    display: flex; /* Etiket ve input'u yan yana dizmek için */
    align-items: center;
    gap: 15px;
}

.teklif-al-alani.daha-profesyonel .form-grup label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
    color: #444;
    font-size: 1.1em;
    width: 200px; /* Etiketler için sabit bir genişlik */
    text-align: left;
}

.teklif-al-alani.daha-profesyonel .form-grup label i {
    margin-right: 5px;
    color: #8b0000cc;
}

.teklif-al-alani.daha-profesyonel .form-grup input[type="text"],
.teklif-al-alani.daha-profesyonel .form-grup input[type="email"] {
    flex-grow: 1; /* Input'un kalan alanı kaplaması için */
    padding: 35px; /* Padding'i artırarak kutuları büyütüyoruz */
    padding-right: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1.1em; /* İsteğe bağlı olarak font boyutunu da biraz büyütebiliriz */
    color: #333;
}

.teklif-al-alani.daha-profesyonel .form-grup input[type="text"]:focus,
.teklif-al-alani.daha-profesyonel .form-grup input[type="email"]:focus {
    outline: none;
    border-color: #8b0000cc;
    box-shadow: 0 0 3px rgba(139, 0, 0, 0.5);
}

.teklif-al-alani.daha-profesyonel .teklif-btn {
    background-color: #8b0000cc;
    color: #fff;
    padding: 25px 160px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin-top: 10px;
}

.teklif-al-alani.daha-profesyonel .teklif-btn i {
    margin-right: 8px;
}

.teklif-al-alani.daha-profesyonel .teklif-btn:hover {
    background-color: #6a0000;
}

/* Mobil Uyum */
@media (max-width: 600px) {
    /* Sayfayı Ortala */
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh; /* Gerekirse tüm ekran yüksekliğini kapla ve ortala */
        margin: 0; /* Tarayıcıların varsayılan margin'lerini kaldır */
    }

    .teklif-al-alani.daha-profesyonel {
        padding: 40px 20px; /* Mobil için daha az padding */
        width: 100%; /* Mobil genişliğin tamamını kullan */
        box-sizing: border-box; /* Padding'in genişliğe dahil olmasını sağla */
    }

    .teklif-al-alani.daha-profesyonel .container {
        max-width: 100%; /* Mobil genişliğin tamamını kullan */
        padding: 0;
    }

    .teklif-al-alani.daha-profesyonel .teklif-baslik-alani {
        margin-bottom: 20px;
    }

    .teklif-al-alani.daha-profesyonel .teklif-baslik-alani h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .teklif-al-alani.daha-profesyonel .teklif-baslik-alani .aciklama {
        font-size: 0.9em;
    }

    .teklif-al-alani.daha-profesyonel .teklif-formu {
        margin-top: 10px;
    }

    .teklif-al-alani.daha-profesyonel .form-grup {
        flex-direction: column; /* Mobil için etiketi üste al */
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
    }

    .teklif-al-alani.daha-profesyonel .form-grup label {
        width: 100%;
        text-align: left;
        font-size: 1em;
    }

    .teklif-al-alani.daha-profesyonel .form-grup input[type="text"],
    .teklif-al-alani.daha-profesyonel .form-grup input[type="email"] {
        padding: 12px;
        font-size: 1em;
        width: 100%; /* Mobil genişliğin tamamını kullan */
    }

    .teklif-al-alani.daha-profesyonel .teklif-btn {
        padding: 15px 50px;
        font-size: 1em;
        margin-top: 15px;
        width: 100%; /* Mobil genişliğin tamamını kullan */
    }
}




footer {
    background-color: #311b1b; /* Arka planı beyaz yaptık */
    color: #fff; /* Ana yazı rengi (koyu gri) */
    font-size: 0.9em;
}

.footer-ust {
    padding: 40px 0;
    border-bottom: 1px solid #eee; /* Üst ve alt bölümü ayıran çizgi */
}

.footer-alt {
    padding: 20px 0;
    text-align: center;
    background-color: #333; /* Alt bölüm için koyu arka plan (isteğe bağlı, beyaz da yapabilirsiniz) */
    color: #fff; /* Alt bölüm yazı rengi */
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Mobil uyum için */
}

.footer-sol,
.footer-orta-sol,
.footer-orta-sag,
.footer-sag {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 20px; /* Mobil uyum için boşluk */
    color: #555; /* Bu sütunlardaki yazı rengini koyulaştırdık */
}

.footer-sol:last-child,
.footer-orta-sol:last-child,
.footer-orta-sag:last-child,
.footer-sag:last-child {
    margin-right: 0;
}

footer h3 {
    color: #df1a1a; /* Başlık rengi (koyu gri) */
    margin-bottom: 15px;
    font-size: 1.1em;
}

footer p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #fff; /* Paragraf yazı rengi (daha açık gri) */
}

footer a {
    color: #fff; /* Link rengi (mavi) - daha iyi görünür beyaz zeminde */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0056b3; /* Link hover rengi (daha koyu mavi) */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 8px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .footer-sol,
    .footer-orta-sol,
    .footer-orta-sag,
    .footer-sag {
        flex: 1 0 50%; /* İki sütun halinde */
    }

    .footer-sol {
        flex-basis: 100%; /* En üste tam genişlik */
    }
}

@media (max-width: 480px) {
    .footer-sol,
    .footer-orta-sol,
    .footer-orta-sag,
    .footer-sag {
        flex-basis: 100%; /* Tek sütun halinde */
    }
}




.hakkimizda-alani {
    padding: 80px 0;
    background-color: #f8f8f8; /* Açık gri arka plan */
    text-align: center;
}

.hakkimizda-alani .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hakkimizda-ust {
    margin-bottom: 40px; /* Sayaçlardan önce biraz boşluk */
}

.hakkimizda-ust h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.hakkimizda-ust .aciklama {
    color: #777;
    font-size: 1.1em;
    line-height: 1.7;
}

.hakkimizda-sayaclar {
    display: flex;
    justify-content: center;
    gap: 60px; /* Sayaçlar arası boşluk */
    margin-bottom: 60px; /* Hikayemiz bölümünden önce boşluk */
}

.hakkimizda-sayaclar .sayac {
    text-align: center;
}

.hakkimizda-sayaclar .sayac .sayi {
    display: block;
    font-size: 2rem; /* Sayı boyutunu küçülttük */
    color: #8b0000cc; /* Örnek bir vurgu rengi */
    font-weight: bold;
    margin-bottom: 5px;
}

.hakkimizda-sayaclar .sayac .baslik {
    display: block;
    color: #555;
    font-size: 1em;
}

.hakkimizda-orta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hakkimizda-orta .hikayemiz {
    max-width: 700px;
    margin-bottom: 40px;
    text-align: center;
}

.hakkimizda-orta .hikayemiz h3 {
    font-size: 2rem;
    color: #555;
    margin-bottom: 15px;
}

.hakkimizda-orta .hikayemiz p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hakkimizda-alt {
    /* İsteğe bağlı ek içerikler için stil tanımları buraya */
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .hakkimizda-sayaclar {
        gap: 30px;
    }

    .hakkimizda-sayaclar .sayac .sayi {
        font-size: 1.8rem;
    }

    .hakkimizda-sayaclar .sayac .baslik {
        font-size: 0.9em;
    }
}

@media (max-width: 600px) {
    .hakkimizda-sayaclar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hakkimizda-ust h2 {
        font-size: 2rem;
    }

    .hakkimizda-orta .hikayemiz h3 {
        font-size: 1.8rem;
    }
}





/* Genel Stiller */
.duvar-citasi-sayfasi {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 60px 0;
    background-color: #f9f9f9; /* Açık gri arka plan */
}

.duvar-citasi-sayfasi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Üstten hizalama */
}

/* Sol Bölüm Stilleri */
.duvar-citasi-sol {
    flex: 1;
    padding-right: 40px;
}

.duvar-citasi-sol h1 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
}

.duvar-citasi-sol .ozellikler-baslik {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* ... önceki CSS kodlarınız ... */

.duvar-citasi-sol .ozellikler-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.duvar-citasi-sol .ozellikler-liste li {
    margin-bottom: 15px;
}

.duvar-citasi-sol .ozellikler-liste li .ozellik-satir {
    display: flex;
    flex-direction: column; /* Öğeleri alt alta sırala */
    align-items: flex-start; /* Sola hizala */
}

.duvar-citasi-sol .ozellikler-liste li .ozellik-satir h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 5px;
    white-space: normal; /* Başlığın gerektiğinde alt satıra geçmesine izin ver */
}

.duvar-citasi-sol .ozellikler-liste li .ozellik-satir h3 i.fas.fa-check {
    color: green;
    margin-right: 8px;
    font-size: 1.1rem;
}

.duvar-citasi-sol .ozellikler-liste li .ozellik-satir p {
    color: #777;
    font-size: 0.95rem;
    margin-top: 0;
    line-height: 1.6;
    padding-left: 28px; /* Tik işaretinin genişliği kadar sol boşluk */
}

.duvar-citasi-sol .teklif-al-btn {
    background-color: #8b0000cc;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.duvar-citasi-sol .teklif-al-btn:hover {
    background-color: #6a0000;
}

.duvar-citasi-sol .teklif-al-btn i.fas.fa-chevron-right {
    margin-left: 8px;
    font-size: 1rem;
}

/* ... diğer CSS kodlarınız ... */
/* Sağ Bölüm Stilleri */
.duvar-citasi-sag {
    flex: 1;
    padding-left: 40px;
}

.duvar-citasi-sag h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* ... önceki CSS kodlarınız ... */

/* ... önceki CSS kodlarınız ... */

.duvar-citasi-sag .ornek-calismalar {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Tekrar iki sütun */
    gap: 20px;
}

.duvar-citasi-sag .ornek-calismalar .calisma {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.duvar-citasi-sag .ornek-calismalar .calisma img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
    min-height: 200px; /* Minimum yüksekliği koruyoruz (isteğe bağlı) */
    object-fit: cover; /* Görselin kutuya sığmasını sağlıyoruz (isteğe bağlı) */
}

.duvar-citasi-sag .ornek-calismalar .calisma h3 {
    font-size: 1rem;
    color: #333;
    padding: 15px;
    margin-bottom: 0;
}

.duvar-citasi-sag .ornek-calismalar .calisma p {
    color: #777;
    font-size: 0.9rem;
    padding: 0 15px 15px;
    margin-top: 0;
}

/* Mobil Uyum (Gerekirse) */
@media (max-width: 960px) {
    .duvar-citasi-sayfasi .container {
        flex-direction: column;
        align-items: stretch;
    }

    .duvar-citasi-sol {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .duvar-citasi-sag {
        padding-left: 0;
    }

    .duvar-citasi-sag .ornek-calismalar {
        grid-template-columns: 1fr; /* Mobil için tek sütun kalabilir */
    }
}


@media (max-width: 600px) {
    .duvar-citasi-sol h1 {
        font-size: 2.2rem;
    }

    .duvar-citasi-sol .ozellikler-baslik {
        font-size: 1.4rem;
    }

    .duvar-citasi-sag h2 {
        font-size: 1.8rem;
    }
}




/* ... önceki CSS kodlarınız ... */

/* Mobil Uyum (Örnek Çalışmalar) */
@media (max-width: 768px) {
    /* ... diğer mobil stilleriniz ... */

    .duvar-citasi-sag .ornek-calismalar {
        grid-template-columns: repeat(2, 1fr); /* Mobil için iki sütun */
    }
}

/* Daha küçük mobil cihazlar için (isteğe bağlı) */
@media (max-width: 480px) {
    .duvar-citasi-sag .ornek-calismalar {
        grid-template-columns: 1fr; /* Daha küçük ekranlarda tek sütun daha iyi olabilir */
    }
}

/* ... diğer CSS kodlarınız ... */



/* ... diğer CSS kodlarınız ... */

.duvar-citasi-sol .duvar-citasi-resim {
    margin-bottom: 20px; /* Resim ve özellikler arası boşluk */
    overflow: hidden; /* Resmin taşmasını önler (isteğe bağlı) */
    border-radius: 8px; /* Köşeleri yuvarlatır (isteğe bağlı) */
}

.duvar-citasi-sol .duvar-citasi-resim img {
    display: block;
    width: 100%; /* Resmin bulunduğu div'in genişliğinin %100'ünü kaplar */
    height: 400px; /* En boy oranını korur */
    /* Mobil için maksimum yüksekliği sınırlayabilirsiniz (isteğe bağlı) */
    /* max-height: 300px; */
    object-fit: cover; /* Görselin kutuya sığmasını sağlar, gerekirse kırpılır (isteğe bağlı) */
}

/* Mobil Uyum (Gerekirse, boyutları ayarlayabilirsiniz) */
@media (max-width: 768px) {
    .duvar-citasi-sol .duvar-citasi-resim {
        margin-bottom: 15px;
    }
    .duvar-citasi-sol .duvar-citasi-resim img {
        /* Mobil için farklı maksimum yükseklik veya stiller uygulayabilirsiniz */
    }
}

/* ... diğer CSS kodlarınız ... */


/* ... diğer CSS kodlarınız ... */

.sayfa-basligi-bandi {
    background-color: #d76f6f1f; /* Açık gri bir arka plan (isteğe bağlı) */
    padding: 20px 0;
    border-bottom: 1px solid #eee; /* Menüden ayırmak için alt çizgi (isteğe bağlı) */
    text-align: left; /* Başlığı sola hizala */
}

.sayfa-basligi-bandi .container {
    max-width: 1200px; /* Sayfa içeriğinizle aynı genişlikte olabilir */
    margin: 0 auto;
    padding: 0 20px;
}

.sayfa-basligi-bandi h1 {
    font-size: 2rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 0;
}

/* Mobil Uyum (Gerekirse) */
@media (max-width: 768px) {
    .sayfa-basligi-bandi {
        padding: 15px 0;
    }
    .sayfa-basligi-bandi h1 {
        font-size: 1.6rem;
    }
}

/* ... diğer CSS kodlarınız ... */



/* Mobil Görünüm için (gerekirse) */
@media (max-width: 768px) {
    .calisma-surecimiz-adimlar {
        flex-direction: column;
        align-items: center;
    }

    .calisma-surecimiz-adimlar .adim {
        width: 90%;
        margin-left: 0; /* Mobil görünümde boşlukları kaldır */
        margin-right: 0; /* Mobil görünümde boşlukları kaldır */
        margin-bottom: 20px; /* Mobil için alt boşluğu ayarla */
    }
}



/* Mobil Görünüm (768px ve altı) - HİZMET KUTULARI İKİLİ YAN YANA */
@media (max-width: 768px) {
    .hizmetlerimiz-alani .container {
        align-items: flex-start; /* Öğeleri sola hizala */
        padding-left: 15px;
        padding-right: 15px;
    }

    .hizmetler-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* İki sütunlu grid */
        gap: 15px; /* Kutular arası yatay ve dikey boşluk */
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hizmet-kutusu {
        width: 100%; /* Her kutu kendi sütununun tam genişliğini alsın */
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .hizmet-gorsel {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* İsteğe bağlı: Görselin en-boy oranını koru */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 8px 8px 0 0;
    }

    .hizmet-kutusu h3 {
        font-size: 1.2em; /* Mobil için daha küçük başlık boyutu */
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .hizmet-kutusu p {
        font-size: 0.9em; /* Mobil için daha küçük metin boyutu */
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .detay-btn {
        padding: 8px 15px;
        font-size: 0.8em; /* Mobil için daha küçük buton boyutu */
    }

    /* Tek kalan kutunun ortalanması */
    .hizmetler-grid > .hizmet-kutusu:nth-child(odd):last-child {
        grid-column: 1 / 3; /* Tek kalan kutuyu iki sütuna yay */
    }
}



/* Genel Stiller */
.urunler-sayfasi {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.urunler-sayfasi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.urunler-sayfasi h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Ürün Listesi Stilleri */
.urunler-liste {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2'li listeleme */
    gap: 30px;
}

.urun {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Ürün Resim Alanı Stilleri */
.urun .urun-resim-alani {
    position: relative;
    overflow: hidden;
}

.urun .urun-resim-alani img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out; /* Büyütme efekti için geçiş */
}

.urun .urun-resim-alani:hover img {
    transform: scale(1.05); /* Üzerine gelince hafifçe büyüt */
}

/* Büyüteç İkonu Stilleri */
.urun .urun-resim-alani .buyutec-ikonu {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.urun .urun-resim-alani:hover .buyutec-ikonu {
    opacity: 1;
}

/* Ürün Başlığı Stilleri */
.urun h3 {
    font-size: 1.1rem;
    color: #333;
    padding: 15px;
    text-align: center;
    margin-bottom: 0;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .urunler-liste {
        grid-template-columns: repeat(2, 1fr); /* Mobilde de 2'li */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .urunler-liste {
        grid-template-columns: 1fr; /* Daha küçük ekranlarda tek sütun */
    }
}




/* WhatsApp İkon Alanı */
.whatsapp-ikonu-alani {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
}

.whatsapp-ikonu-alani a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #05e95a;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: whatsapp-dalga-yanip-sonme 2s infinite; /* Yeni animasyon */
    transition: transform 0.3s ease-in-out;
}

.whatsapp-ikonu-alani a:hover {
    transform: scale(1.1);
}

/* WhatsApp Dalga Yanıp Sönme Animasyonu */
@keyframes whatsapp-dalga-yanip-sonme {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
    }
}

/* Mobil Uyum */
@media (max-width: 600px) {
    .whatsapp-ikonu-alani {
        right: 15px;
        bottom: 75px;
    }
    .whatsapp-ikonu-alani a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 22px;
    }
}

/* Genel Stiller */
.iletisim-sayfasi {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.iletisim-sayfasi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.iletisim-sayfasi h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.iletisim-sayfasi .iletisim-aciklama {
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

.iletisim-sayfasi .iletisim-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* İletişim Formu Stilleri */
.iletisim-formu h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.iletisim-formu .form-grup {
    margin-bottom: 20px;
}

.iletisim-formu label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.iletisim-formu input[type="text"],
.iletisim-formu input[type="email"],
.iletisim-formu input[type="tel"],
.iletisim-formu textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.iletisim-formu textarea {
    resize: vertical;
}

.iletisim-formu .iletisim-gonder-btn {
    background-color: #8b0000cc;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.iletisim-formu .iletisim-gonder-btn:hover {
    background-color: #6a0000;
}

/* İletişim Bilgileri Stilleri */
.iletisim-bilgileri h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.iletisim-bilgileri ul {
    list-style: none;
    padding: 0;
}

.iletisim-bilgileri ul li {
    margin-bottom: 10px;
    color: #777;
}

.iletisim-bilgileri ul li i {
    margin-right: 10px;
    color: #555;
}

/* Sosyal Medya Stilleri */
.iletisim-bilgileri .sosyal-medya {
    margin-top: 30px;
}

.iletisim-bilgileri .sosyal-medya h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.iletisim-bilgileri .sosyal-medya a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.iletisim-bilgileri .sosyal-medya a:hover {
    background-color: #555;
    color: #fff;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .iletisim-sayfasi .iletisim-icerik {
        grid-template-columns: 1fr;
    }
    .iletisim-bilgileri {
        margin-top: 30px;
    }
}

/* WordPress submenu (alt menü) desteği */
.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
  display: none;
  z-index: 1000;
}

.menu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.menu .sub-menu li a {
  color: #333;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.menu .sub-menu li a:hover {
  background-color: #e0e0e0;
}

.menu li {
  position: relative;
}

.menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  width: 200px;
  z-index: 9999;
}

.menu li:hover > .sub-menu {
  display: block;
}

.menu .sub-menu li {
  display: block;
  width: 100%;
}

.menu .sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #222;
  background-color: #fff;
  text-decoration: none;
}

.menu .sub-menu li a:hover {
  background-color: #eee;
}

.menu li.menu-item-has-children > a::after {
  content: " \f107"; /* Font Awesome: angle-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
}

/* Teklif formu özel stilleri */
.teklif-al-alani input[type="text"],
.teklif-al-alani input[type="email"],
.teklif-al-alani textarea {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
}

.teklif-al-alani input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.teklif-al-alani input[type="submit"]:hover {
    background-color: #0056b3;
}


