.hero-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}/* === ANA SAYFAYA ÖZEL STİLLER === */

/* --- Karşılama Alanı (Hero) --- */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
}

/* --- Arama Kutusu --- */
.search-box {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    background-color: #fff;
    padding: 16px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-box input, .search-box select, .search-box button {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
}
/* --- Bölgelere Göre Keşfet --- */
.regions {
    padding: 64px 0;
    background-color: #fff;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.regions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.region-card {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}
.region-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e0f2f1;
    color: var(--primary-color);
}
.region-card__name {
    font-weight: 600;
}
.section-footer {
    text-align: center;
    margin-top: 48px;
}
/* --- Hakkımızda Tanıtım --- */
.about-intro {
    padding: 80px 0;
    background-color: var(--light-gray-color);
}
.about-intro__container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-intro__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-intro__text-content p {
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: 24px;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}
.info-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}
.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e3f2fd;
    color: #1e88e5;
    margin-bottom: 16px;
}
.info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.about-intro__buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}
.about-intro__image-wrapper {
    position: relative;
}
.about-intro__image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.stats-box {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}
.stat-block {
    text-align: center;
}
.stat-block strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}
.stat-block span {
    font-size: 14px;
    color: var(--text-color-light);
}
.btn--secondary {
    background-color: transparent; /* Arka planı şeffaf */
    color: var(--primary-color); /* Ana Teal Rengi */
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn--secondary:hover {
    background-color: var(--primary-color); /* Üzerine gelince dolgu rengi Teal */
    color: #fff; /* Yazı rengi beyaz */
}
.btn--primary {
    background-color: transparent; /* Arka planı şeffaf */
    color: var(--primary-color); /* Ana Teal Rengi */
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn--primary:hover {
    background-color: var(--primary-color); /* Üzerine gelince dolgu rengi Teal */
    color: #fff; /* Yazı rengi beyaz */
}


/* --- Öne Çıkan İlanlar --- */
.featured-listings {
    padding: 64px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.property-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    background-color: #fff;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.07);
}
.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.property-card__tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}
.property-card__content {
    padding: 16px;
}
.property-card__content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.property-card .location {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}
.property-card .features {
    font-size: 14px;
    color: #333;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-bottom: 12px;
}
.property-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

/* Mobil Uyumlu Hale Getirme */
@media (max-width: 992px) {
    .regions-grid { grid-template-columns: repeat(3, 1fr); }
    .about-intro__container { grid-template-columns: 1fr; }
    .featured-listings { padding-top: 80px; }
    .stats-box { position: static; margin-top: 24px; right: 0; bottom: 0; }
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .search-box { grid-template-columns: 1fr; }
    .listings-grid, .regions-grid { grid-template-columns: 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }
}
