* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Kutuların boyut hesaplamasını kolaylaştırır */
    font-family: sans-serif;
}

body {
    background-color: #f4f4f4; /* Açık gri arka plan */
    color: #333;
}

/* --- Başlık (Header) Stilleri --- */
.ust-menu {
    background-color: #1a73e8; /* Mavi tonu */
    color: white;
    padding: 20px 50px;
    display: flex; /* Öğeleri yan yana hizalamak için flexbox kullanıyoruz */
    justify-content: space-between; /* Öğeler arasında boşluk bırak */
    align-items: center; /* Öğeleri dikeyde ortala */
}

.logo {
    font-size: 1.5em; /* Yazı boyutunu büyüt */
    font-weight: bold;
}

.ust-menu a {
    color: white;
    text-decoration: none; /* Alt çizgiyi kaldır */
    margin-left: 20px;
    transition: color 0.3s;
}

.ust-menu a:hover {
    color: #ffcc00; /* Mouse üzerine gelince sarı yap */
}

/* --- Tanıtım Alanı Stilleri --- */
.tanitim-alani {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1500x500?text=Emlak+Arka+Plani') center center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.tanitim-alani h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.tanitim-alani p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.arama-kutusu input {
    padding: 10px 15px;
    width: 300px;
    border: none;
    border-radius: 5px 0 0 5px; /* Sol köşeleri yuvarla */
    font-size: 1em;
}

.arama-kutusu button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #333;
    border: none;
    border-radius: 0 5px 5px 0; /* Sağ köşeleri yuvarla */
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.arama-kutusu button:hover {
    background-color: #e6b800;
}

/* --- İlanlar Bölümü Stilleri --- */
.ilanlar {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto; /* Bölümü ortala */
    text-align: center;
}

.ilanlar h2 {
    margin-bottom: 30px;
    font-size: 2em;
    color: #1a73e8;
}

.ilan-listesi {
    display: flex; /* İlanları yan yana diz */
    gap: 20px; /* Kartlar arası boşluk */
    justify-content: center;
    flex-wrap: wrap; /* Sığmazsa alt satıra geç */
}

.ilan-kart {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding-bottom: 20px;
    text-align: left;
    overflow: hidden; /* Taşmaları engelle */
}

.ilan-kart img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Resmi kutuya sığdır */
    margin-bottom: 15px;
}

.ilan-kart h3, .ilan-kart p {
    padding: 0 15px;
    margin-bottom: 8px;
}

.fiyat {
    font-size: 1.4em;
    font-weight: bold;
    color: #4CAF50; /* Yeşil fiyat rengi */
}

.detay-buton {
    display: block;
    width: calc(100% - 30px); /* Padding kadar içeride kal */
    margin: 15px auto 0 auto;
    padding: 10px;
    background-color: #1a73e8;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.detay-buton:hover {
    background-color: #155bb5;
}

/* --- Alt Bilgi (Footer) Stilleri --- */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;}
    /* İlanları tamamen gizlemek için kullanılan sınıf */
.gizli {
    display: none !important; 
}
/* 🏠 İlan Detay Sayfası Stilleri */
.detay-sayfasi {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.ilan-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.ilan-baslik h1 {
    font-size: 2em;
    color: #1a73e8;
}

.ilan-fiyat {
    font-size: 1.8em;
    font-weight: bold;
    color: #4CAF50;
}

/* --- Galeri Stilleri --- */
.detay-galeri {
    margin-bottom: 30px;
}

.ana-resim {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}
.kucuk-resimler {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Yatay kaydırma çubuğu */
}
.kucuk-resimler img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.kucuk-resimler img:hover {
    opacity: 1;
}
.detay-bilgileri {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ozellik-tablosu, .aciklama {
    flex: 1; /* Esnek büyüme */
    min-width: 300px; /* Küçük ekranlarda sığsın diye minimum genişlik */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.ozellik-tablosu ul {
    list-style: none;
    padding: 0;
}

.ozellik-tablosu ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.emlakci-bilgisi {
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-top: 20px;
}

.iletisim-buton {
    background-color: #ffcc00;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.iletisim-buton:hover {
    background-color: #e6b800;
}


@media (max-width: 768px) {
    .detay-bilgileri {
        flex-direction: column;
    }
    .ozellik-tablosu, .aciklama {
        min-width: 100%; 
    }
}
.detay-kapsayici{
width: 100%;

}

.detay-kapsayici>div{
width: 50%;
float: left;
display: block;    
}

.clear{
    width: 100%;
    height: 0px;
    display: block;
    overflow: hidden;
}

.ozellik-tablosu table{
    width: 100%;
}

.ozellik-tablosu table tr{
    border-top: 1px solid #ddd;
    display: block;
    padding: 6px 0;
}

.ozellik-tablosu table td{
width: 50%;
}
/* iletişim sayfası css */
/* --- İletişim Sayfası Özel --- */
.iletisim-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.iletisim-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

.iletisim-konteyner {
    display: flex;
    max-width: 1100px;
    margin: -40px auto 40px; /* Hero alanının üzerine binsin */
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Sol Panel */
.iletisim-bilgi-paneli {
    flex: 1;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 320px;
}

.bilgi-kart {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.ikon {
    background: #e8f0fe;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.bilgi-kart h4 { color: #1a73e8; margin-bottom: 5px; }
.bilgi-kart p { color: #666; font-size: 0.95rem; }

/* Sağ Panel (Form) */
.iletisim-form-paneli {
    flex: 1.5;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 350px;
}

.form-satir { display: flex; gap: 20px; }
.form-satir .form-grup { flex: 1; }

.form-grup { margin-bottom: 20px; }
.form-grup label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; }

.form-grup input, .form-grup select, .form-grup textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: 0.3s;
    outline: none;
}

.form-grup input:focus, .form-grup textarea:focus {
    border-color: #1a73e8;
    background: #f8fbff;
}

.gonder-btn {
    background: #1a73e8;
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gonder-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
}

.harita-bolumu {
    margin: 40px 0 0;
    line-height: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .form-satir { flex-direction: column; gap: 0; }
    .iletisim-konteyner { margin-top: 20px; }
}
/* Hakkımızda Sayfası */
/* --- Hakkımızda Yeni Nesil Tasarım --- */

/* Hero Alanı */
.hakkimizda-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-icerik h1 { font-size: 3rem; margin-bottom: 15px; }
.hero-icerik p { font-size: 1.2rem; opacity: 0.9; }

/* İstatistikler */
.istatistikler {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: -50px auto 50px; /* Hero üzerine binsin */
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.istatistik-kart { text-align: center; }
.istatistik-kart h3 { color: #1a73e8; font-size: 2.5rem; margin-bottom: 5px; }
.istatistik-kart p { color: #666; font-weight: 600; }

/* Hikayemiz Bölümü */
.hakkimizda-ana-konteynir { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.hikayemiz-bolumu {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.hikayemiz-bolumu .metin { flex: 1; }
.hikayemiz-bolumu .metin h2 { font-size: 2.5rem; margin-bottom: 20px; color: #333; }
.hikayemiz-bolumu .metin p { line-height: 1.8; color: #555; margin-bottom: 15px; }

.hikayemiz-bolumu .gorsel img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #1a73e8; /* Modern tasarım detayı */
}

/* Vizyon & Misyon Kartları */
.vizyon-misyon-kapsayici {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.v-m-kart {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.v-m-kart:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.v-m-kart .ikon { font-size: 3rem; margin-bottom: 20px; }
.v-m-kart h3 { margin-bottom: 15px; color: #1a73e8; }
.v-m-kart p { line-height: 1.6; color: #666; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hikayemiz-bolumu, .vizyon-misyon-kapsayici, .istatistikler {
        flex-direction: column;
        text-align: center;
    }
    .istatistikler { margin-top: 20px; }
    .hikayemiz-bolumu .gorsel img { box-shadow: none; }
}
/* neden biz */

.neden-biz {
    text-align: center;
    padding: 60px 20px;
    background: #fdfdfd;
}

.neden-biz h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.ozellik-kartlari {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ozellik-kart {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 300px;
    transition: 0.3s;
}

.ozellik-kart:hover {
    transform: translateY(-10px);
}

.ozellik-ikon {
    font-size: 3rem;
    margin-bottom: 20px;
}