/* --- SIFIRLAMA VE HEADER (SENİN KODUN) --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f8f9fa; }

.main-header {
    background: #008080; width: 100%; position: sticky; top: 0; z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1300px; margin: 0 auto; height: 80px; padding: 0 25px;
}

.logo a { display: flex; align-items: center; text-decoration: none; gap: 12px; color: white; }
.logo-text { font-size: 20px; font-weight: 600; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links > li { position: relative; padding: 0 15px; }
.nav-links > li > a { color: #ffffff; text-decoration: none; font-size: 15px; font-weight: 500; transition: 0.3s; padding: 28px 0; }
.nav-links > li > a:hover { color: #d1d1d1; }

.sub-menu {
    position: absolute; top: 80px; left: 0; background: #ffffff; min-width: 200px;
    list-style: none; display: none; box-shadow: 0 8px 20px rgba(0,0,0,0.15); border-radius: 0 0 8px 8px; padding: 10px 0;
}
.dropdown:hover .sub-menu { display: block; }
.sub-menu li a { color: #333; padding: 12px 20px; display: block; text-decoration: none; font-size: 14px; }

/* MOBİL HEADER */
#nav-check { display: none; }
.hamburger { display: none; color: white; font-size: 26px; cursor: pointer; }

@media (max-width: 992px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
        background: #008080; flex-direction: column; align-items: flex-start; padding: 20px 0; transition: 0.4s ease;
    }
    #nav-check:checked ~ .nav-links { left: 0; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { display: block; width: 100%; padding: 15px 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .sub-menu { position: static; display: none; width: 100%; background: rgba(0,0,0,0.1); }
    .dropdown:hover .sub-menu { display: block; }
}

/* --- YENİ: ARAMA BARI VE İKONLAR --- */
.hero-area { padding: 60px 20px; display: flex; justify-content: center; }

.search-wrapper {
    background: #fff; padding: 8px 8px 8px 25px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; max-width: 1000px;
}

.search-form { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.input-item { flex: 1; border-right: 1px solid #eee; padding: 5px 15px; display: flex; flex-direction: column; }
.input-item:last-of-type { border-right: none; }

.input-item label { font-size: 10px; font-weight: 700; color: #008080; margin-bottom: 4px; }
.input-item select, .input-item input { border: none; outline: none; font-size: 14px; width: 100%; background: transparent; }

.search-submit-btn {
    background: #008080; color: #fff; border: none; width: 55px; height: 55px;
    border-radius: 50%; cursor: pointer; font-size: 18px; transition: 0.3s;
}
.search-submit-btn:hover { background: #006666; transform: scale(1.05); }

/* Kategori İkonları */
.category-container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; padding-bottom: 40px; }
.cat-box { 
    display: flex; flex-direction: column; align-items: center; padding: 15px;
    cursor: pointer; transition: 0.3s; color: #666;
}
.cat-box i { font-size: 28px; margin-bottom: 8px; }
.cat-box span { font-size: 12px; font-weight: 500; }
.cat-box:hover i, .cat-box.active i { color: #008080; }
.cat-box.active { border-bottom: 2px solid #008080; color: #008080; }

/* Arama Barı Mobil Fix */
@media (max-width: 992px) {
    .search-wrapper { border-radius: 20px; padding: 20px; }
    .search-form { flex-direction: column; }
    .input-item { border-right: none; border-bottom: 1px solid #eee; width: 100%; padding: 10px 0; }
    .search-submit-btn { width: 100%; border-radius: 10px; margin-top: 10px; }
}

.hero-area {
    display: block !important; /* Gizlenmişse zorla göster */
    min-height: 200px;
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.search-wrapper {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hero Section (Slayt Alanı) */
.hero-section {
    position: relative;
    height: 500px; /* Slayt yüksekliği */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Görseli hafif karartarak yazıları öne çıkarır */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Arama Barı Düzenlemeleri */
.search-wrapper {
    background: #ffffff;
    padding: 10px 10px 10px 30px;
    border-radius: 60px; /* Tam Oval */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Kategori Alanı Düzenleme */
.category-area {
    background: #f8f9fa;
    padding: 40px 0;
}

/* MOBİL FIX */
@media (max-width: 992px) {
    .hero-section { height: auto; padding: 60px 0; }
    .hero-title { font-size: 24px; }
    .search-wrapper { border-radius: 20px; padding: 20px; }
}

/* Durum Rozetleri */
.status-badge {
    position: absolute; top: 15px; right: 15px;
    padding: 6px 12px; border-radius: 8px;
    font-size: 11px; font-weight: 700; color: #fff;
    z-index: 10;
}
.status-badge.booked { background: #e74c3c; box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4); }
.status-badge.available { background: #2ecc71; box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4); }

/* Dolu Kart Stili */
.booked-style { opacity: 0.8; }
.booked-style .villa-img img { filter: grayscale(50%); }

.view-btn.disabled {
    background: #ccc !important;
    cursor: not-allowed;
}

/* GÜVEN BARI STİLLERİ */
.trust-bar { background: #fff; padding: 20px 0; border-bottom: 1px solid #eee; }
.trust-grid { display: flex; justify-content: space-around; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 10px; }
.trust-item i { color: #008080; font-size: 20px; }
.trust-item span { font-size: 14px; font-weight: 600; color: #555; }

/* KATEGORİ TAB STİLLERİ */
.category-tabs { padding: 30px 0; text-align: center; }
.tabs-container { display: flex; justify-content: center; gap: 15px; }
.tab-item { 
    text-decoration: none; padding: 12px 25px; border-radius: 30px; 
    background: #fff; color: #555; font-size: 14px; font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: 0.3s;
    border: 1px solid transparent;
}
.tab-item i { margin-right: 8px; }
.tab-item:hover, .tab-item.active { background: #008080; color: #fff; }

/* VİTRİN VE KARTLAR */
.villa-vitrin { padding-bottom: 60px; }
.villa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.villa-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 8px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.villa-card:hover { transform: translateY(-5px); }
.villa-card.booked { opacity: 0.7; }

.villa-img { height: 200px; position: relative; }
.villa-img img { width: 100%; height: 100%; object-fit: cover; }

.badge { position: absolute; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: bold; }
.price-badge { bottom: 12px; left: 12px; background: #008080; color: #fff; }
.booked-badge { top: 12px; right: 12px; background: #e74c3c; color: #fff; }

.villa-details { padding: 20px; }
.villa-details h3 { font-size: 17px; margin-bottom: 5px; color: #333; }
.villa-details p { color: #777; font-size: 12px; margin-bottom: 15px; }

.btn { 
    display: block; text-align: center; padding: 12px; border-radius: 10px; 
    text-decoration: none; font-size: 13px; font-weight: bold; transition: 0.3s;
    background: #008080; color: #fff; border: none; width: 100%;
}
.btn.disabled { background: #ccc; cursor: not-allowed; }

/* MOBİL FIX */
@media (max-width: 768px) {
    .trust-grid { flex-direction: column; align-items: center; }
    .tabs-container { flex-wrap: wrap; }
}

/* FOOTER TASARIMI */
.main-footer {
    background: #ffffff;
    padding: 60px 0 0 0;
    border-top: 1px solid #f0f0f0;
    color: #555;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img { height: 45px; }
.footer-logo .logo-text { font-size: 18px; font-weight: 700; color: #333; }

.footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.tursab-no { font-size: 13px; font-weight: 600; margin-bottom: 15px; }

.footer-social { display: flex; gap: 15px; }
.footer-social a {
    width: 35px; height: 35px; border-radius: 50%; background: #f4f4f4;
    display: flex; align-items: center; justify-content: center;
    color: #008080; text-decoration: none; transition: 0.3s;
}
.footer-social a:hover { background: #008080; color: #fff; }

.footer-title {
    font-size: 16px; color: #333; margin-bottom: 25px;
    position: relative; font-weight: 700;
}

.footer-contact, .footer-links { list-style: none; }
.footer-contact li { display: flex; gap: 10px; font-size: 13px; margin-bottom: 15px; line-height: 1.4; }
.footer-contact i { color: #008080; margin-top: 3px; }

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #555; text-decoration: none; font-size: 13px; transition: 0.3s; }
.footer-links a:hover { color: #008080; padding-left: 5px; }

.tursab-verify {
    background: #fdfdfd; border: 1px solid #eee; padding: 15px; border-radius: 10px; text-align: center;
}
.tursab-verify img { max-width: 100%; margin-bottom: 10px; }
.tursab-verify p { font-size: 11px; color: #999; line-height: 1.4; }

.footer-bottom { border-top: 1px solid #f0f0f0; padding: 20px 0; background: #fff; }
.bottom-container {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between;
    padding: 0 20px; font-size: 12px; color: #999;
}
.dev-tag { font-weight: 700; color: #333; }

/* Sabit İletişim Butonları */
.fixed-contact {
    position: fixed; bottom: 30px; right: 20px;
    display: flex; flex-direction: column; gap: 10px; z-index: 999;
}
.fixed-contact a {
    width: 50px; height: 50px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff;
    font-size: 24px; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.fixed-whatsapp { background: #25d366; }
.fixed-phone { background: #e74c3c; }

/* Mobil Ayarlar */
@media (max-width: 768px) {
    .bottom-container { flex-direction: column; text-align: center; gap: 10px; }
}

/* --- 1. SIFIRLAMA VE KRİTİK TEMİZLİK --- */
* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    list-style: none !important; /* Dönen noktaları siler */
    text-decoration: none; font-family: 'Poppins', sans-serif; 
}
body { background-color: #f8f9fa; color: #333; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HERO & SEARCH (PREMIUM) --- */
.hero-section { height: 500px; background: linear-gradient(135deg, #008080 0%, #004d4d 100%); display: flex; justify-content: center; align-items: center; text-align: center; }
.hero-title { font-size: 42px; color: #fff; font-weight: 700; margin-bottom: 40px; }
.search-container { background: #fff; padding: 12px 12px 12px 30px; border-radius: 70px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.search-form { display: flex; align-items: center; width: 100%; }
.search-item { flex: 1; border-right: 1px solid #eee; padding: 0 20px; text-align: left; }
.search-item label { display: block; font-size: 10px; font-weight: 800; color: #008080; margin-bottom: 4px; }
.search-item select, .search-item input { border: none; outline: none; background: transparent; width: 100%; font-size: 14px; }
.search-btn { background: #008080; color: white; border: none; width: 60px; height: 60px; border-radius: 50%; cursor: pointer; font-size: 20px; }

/* --- 3. TRUST & VİTRİN (PREMIUM) --- */
.trust-section { background: #fff; padding: 50px 0; border-bottom: 1px solid #eee; }
.trust-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.trust-box { display: flex; align-items: center; gap: 15px; }
.t-icon { background: #e6f2f2; width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 15px; color: #008080; font-size: 22px; }

/* --- 4. BLOG ALANI (RESİMDEKİ GİBİ) --- */
.blog-section { padding: 60px 0; background: #fff; }
.section-title { font-size: 28px; font-weight: 700; color: #008080; margin-bottom: 30px; border-bottom: 2px solid #e6f2f2; padding-bottom: 10px; display: inline-block; }

.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }

.blog-featured { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.blog-featured img { width: 100%; height: 350px; object-fit: cover; }
.blog-info { padding: 25px; }
.blog-info h3 { font-size: 22px; margin-bottom: 15px; color: #333; }
.blog-info p { font-size: 14px; color: #777; line-height: 1.6; margin-bottom: 15px; }
.blog-date { font-size: 12px; color: #aaa; font-weight: 600; }

.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-mini-item { display: flex; gap: 20px; background: #fff; padding: 15px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s; }
.blog-mini-item:hover { transform: translateX(10px); background: #fdfdfd; }
.blog-mini-item img { width: 120px; height: 80px; object-fit: cover; border-radius: 8px; }
.mini-info h4 { font-size: 15px; margin-bottom: 5px; line-height: 1.4; color: #333; }
.mini-info span { font-size: 12px; color: #aaa; }

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr; }
}