/*
Theme Name: Emlak Teması
Theme URI: https://velonga.com/emlak-yazilimi
Description: Modern ve kullanıcı dostu emlak yazılımı arayüz teması.
Author: Velonda Dijital Medya Ajansı
Author URI: https://velonga.com
Version: 1.0.0
License: Özel Lisans
*/





:root {
	--brand-red: #D32F2F;
	--brand-dark: #222222;
	--brand-gray-bg: #F8F9FA;
	--border-color: #E2E2E2;
	--footer-bg: #111111;
	--text-body: #555;
}

/* =========================
   GLOBAL
========================= */
body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--brand-dark);
	font-size: 15px;
	background-color: #fff;
	overflow-x: hidden;
}

/* =========================
   ORTAK
========================= */
.section-padding {
	padding: 30px 0;
}

.bg-gray {
	background-color: var(--brand-gray-bg);
}

.bg-white {
	background-color: #fff;
}

.section-header {
	margin-bottom: 45px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.section-title {
	font-weight: 800;
	font-size: 2rem;
	color: var(--brand-dark);
	letter-spacing: -0.5px;
	margin: 0;
}

.link-arrow {
	text-decoration: none;
	color: var(--brand-red);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.link-arrow:hover {
	gap: 12px;
	color: #b30000;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
	background-color: var(--brand-dark);
	color: #fff;
	padding: 10px 0;
	font-size: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: 0.2s;
}

.top-bar a:hover {
	color: #fff;
}

.social-icons a {
	margin-left: 15px;
}

/* =========================
   NAVBAR & HEADER
========================= */
.header-wrapper {
	background-color: #fff;
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1050;
}

.navbar {
	padding: 1rem;
}

.navbar-brand {
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--brand-dark);
	letter-spacing: -0.5px;
}

.navbar-toggler {
	border: none;
	padding: 0;
}

.navbar-toggler:focus {
	box-shadow: none;
	outline: none;
}

/* MASAÜSTÜ MENÜ STİLİ (Varsayılan) */
.nav-link {
	font-weight: 600;
	color: var(--brand-dark);
	margin: 0 12px;
	font-size: 0.95rem;
	transition: 0.2s;
}

.nav-link:hover {
	color: var(--brand-red);
}



.desktop-extras {
	display: flex;
	align-items: center;
}

.lang-item {
	border-left: 1px solid #eee;
	padding-left: 20px;
	margin-left: 0px;
	display: flex;
	gap: 15px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
}



.btn-offer {
	background-color: var(--brand-red);
	color: #fff;
	border: none;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	margin-left: 20px;
}

.btn-offer:hover {
	background-color: #b30000;
	color: #fff;
	transform: translateY(-1px);
}

/* =========================
   MOBİL MENÜ ÖZELLEŞTİRMESİ (Sadece 991px altı için çalışır)
========================= */
@media (max-width: 991px) {
	/* Yan Panel Genişliği */
	.offcanvas {
		width: 85% !important;
		border: none;
	}

	.offcanvas-header {
		padding: 20px;
		border-bottom: 1px solid #e0e0e0;
	}

	.offcanvas-body {
		padding: 0 20px;
	}

	/* Linkleri Alt Alta, Sola Yaslı ve Çizgili Yap */
	.navbar-nav {
		width: 100%;
		margin-top: 10px;
	}

	.nav-item {
		width: 100%;
		border-bottom: 1px solid #e0e0e0; /* GRİ ÇİZGİ */
	}

	.nav-link {
		display: block;
		width: 100%;
		text-align: left; /* Sola Yasla */
		padding: 16px 0 !important; /* Yükseklik */
		margin: 0 !important;
		font-size: 1.05rem;
		color: #333;
	}

	/* Ekstralar Mobilde Nasıl Görünecek? */
	.desktop-extras {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		margin-top: 20px;
	}

	.lang-item {
		border-left: none; /* Yan çizgiyi kaldır */
		border-bottom: 1px solid #e0e0e0; /* Alt çizgi ekle */
		padding: 0 0 16px 0;
		margin: 0;
		width: 100%;
		justify-content: flex-start;
		gap: 20px;
		color: #333;
	}

	.btn-offer {
		margin: 20px 0 0 0;
		width: 100%;
		text-align: center;
		display: block;
		padding: 14px;
	}
}

/* =========================
   HERO
========================= */
.hero-section {
	background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80')
	center/cover;
	height: 650px;
	display: flex;
	align-items: center;
	position: relative;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	color: white;
}

.hero-title {
	font-weight: 800;
	font-size: 3.8rem;
	line-height: 1.1;
	margin: 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Search Box */
.search-box-container {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
	max-width: 480px;
	margin-left: auto;
	position: relative;
	z-index: 10;
}

.search-tabs {
	display: flex;
	background: #f8f8f8;
	border-bottom: 1px solid #eee;
}

.search-tab {
	flex: 1;
	padding: 18px;
	font-weight: 700;
	font-size: 1rem;
	color: #888;
	background: #f8f8f8;
	border: none;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: 0.2s;
}

.search-tab.active {
	background: #fff;
	color: var(--brand-dark);
	border-bottom: 3px solid var(--brand-red);
}

.search-body {
	padding: 35px;
}

/* Custom Select */
.custom-select-container {
	position: relative;
	margin-bottom: 15px;
}

.select-trigger {
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	background: #fff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #333;
}

.select-trigger::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.8rem;
	color: #888;
}

.select-options {
	position: absolute;
	top: 105%;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	display: none;
	z-index: 999;
	padding: 8px;
	border: 1px solid #eee;
}

.select-options.open {
	display: block;
}

.select-option {
	padding: 10px;
	cursor: pointer;
	border-radius: 6px;
	font-weight: 500;
	color: #555;
}

.select-option:hover {
	background: #f3f4f6;
	color: var(--brand-red);
}

/* Hero Form */
.form-control-custom {
	width: 100%;
	padding: 16px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #333;
}

.form-control-custom::placeholder {
	color: #555;
	opacity: 1;
}

.form-control-custom:focus {
	outline: none;
	border-color: var(--brand-red);
}

.btn-search-hero {
	width: 100%;
	background: var(--brand-red);
	color: #fff;
	padding: 18px;
	border-radius: 8px;
	border: none;
	font-weight: 800;
	margin-top: 10px;
	font-size: 1.1rem;
}

.btn-search-hero:hover {
	background-color: #b90322;
}

/* =========================
   İLAN KARTI
========================= */
.listing-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
}

.listing-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.listing-card:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	transform: translateY(-5px);
	border-color: #ddd;
}

.card-img-wrap {
	height: 250px;
	position: relative;
	overflow: hidden;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.listing-card:hover img {
	transform: scale(1.05);
}

.fav-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #444;
	border: none;
	z-index: 2;
	transition: 0.2s;
	cursor: pointer;
}

.fav-btn:hover {
	color: var(--brand-red);
	transform: scale(1.1);
}

.card-content {
	padding: 22px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.l-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 8px;
	line-height: 1.3;
}

.l-desc {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-bottom-row {
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #f1f1f1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.status-badge {
	background-color: #212529;
	color: #fff;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.price-current {
	font-size: 1.3rem;
	font-weight: 800;
	color: #000;
	letter-spacing: -0.5px;
}

/* =========================
   HİZMETLER
========================= */
.service-box {
	background: #fff;
	padding: 45px 30px;
	border-radius: 12px;
	text-align: center;
	height: 100%;
	transition: 0.3s;
	border: 1px solid transparent;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: #eee;
}

.service-icon-box {
	width: 80px;
	height: 80px;
	background: #fff5f5;
	color: var(--brand-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 25px;
	transition: 0.3s;
}

.service-box:hover .service-icon-box {
	background: var(--brand-red);
	color: #fff;
}

.service-title {
	font-weight: 800;
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.service-desc {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* =========================
   SSS / ACCORDION
========================= */
.accordion-item {
	border: 1px solid #eee !important;
	border-radius: 8px !important;
	margin-bottom: 15px;
	overflow: hidden;
	background-color: #fff;
}

.accordion-button {
	font-weight: 700;
	color: var(--brand-dark);
	background: #fff;
	padding: 24px;
	box-shadow: none !important;
	font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
	background-color: #fcfcfc;
	color: var(--brand-red);
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D90429'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
	background: #fcfcfc;
	color: #555;
	padding: 0 24px 24px 24px;
	line-height: 1.6;
	border-top: none;
}

/* =========================
   BLOG
========================= */
.blog-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
	cursor: pointer;
	height: 100%;
	transition: 0.3s;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-img-wrap {
	position: relative;
	overflow: hidden;
	height: 220px;
}

.blog-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.blog-card:hover img {
	transform: scale(1.05);
}

.blog-date-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #fff;
	color: var(--brand-dark);
	padding: 6px 14px;
	border-radius: 50px;
	font-weight: 800;
	font-size: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	z-index: 9999999;
}

.blog-content {
	padding: 25px;
}

.blog-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--brand-dark);
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card:hover .blog-title {
	color: var(--brand-red);
}

/* =========================
   FOOTER TASARIMI
========================= */
.footer-wrapper {
	background-color: var(--footer-bg);
	margin-top: 100px;
	position: relative;
}

.footer-cta-red {
	background-color: var(--brand-red);
	padding: 50px 0;
	color: #fff;
}

.cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta-text h3 {
	font-weight: 800;
	margin: 0 0 5px 0;
	font-size: 1.8rem;
}

.cta-text p {
	margin: 0;
	opacity: 0.9;
	font-size: 1.05rem;
}

.cta-btns {
	display: flex;
	gap: 15px;
}

.btn-white-solid {
	background-color: #fff;
	color: var(--brand-red);
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 800;
	text-decoration: none;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 2px solid #fff;
}

.btn-white-solid:hover {
	background-color: transparent;
	color: #fff;
}

.main-footer {
	background-color: var(--footer-bg);
	color: #aaa;
	padding: 80px 0 40px;
	font-size: 0.95rem;
}

.footer-brand h4 {
	color: #fff;
	font-weight: 800;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.footer-brand p {
	line-height: 1.6;
	margin-bottom: 25px;
	color: #888;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.social-circle {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.social-circle:hover {
	background: var(--brand-red);
	transform: translateY(-3px);
}

.footer-heading {
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 25px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
	transition: 0.2s;
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: #fff;
	padding-left: 5px;
}

.newsletter-form {
	position: relative;
	margin-top: 10px;
}

.newsletter-input {
	width: 100%;
	padding: 14px 50px 14px 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
}

.newsletter-input:focus {
	outline: none;
	border-color: var(--brand-red);
}

.newsletter-btn {
	position: absolute;
	right: 5px;
	top: 5px;
	bottom: 5px;
	background: var(--brand-red);
	color: #fff;
	border: none;
	width: 40px;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-bottom {
	background-color: #000;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.85rem;
	color: #666;
}

.bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bottom-links a {
	color: #666;
	text-decoration: none;
	margin-left: 20px;
	transition: 0.2s;
}

.bottom-links a:hover {
	color: #fff;
}

/* =========================
   RESPONSIVE CSS
========================= */
@media (max-width: 991px) {
	.section-padding {
		padding: 50px 0;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.hero-section {
		height: auto;
		padding: 120px 0 60px 0;
	}

	.hero-title {
		font-size: 2.5rem;
		text-align: center;
		margin-bottom: 30px;
	}

	.search-box-container {
		margin: 0 auto;
		width: 100%;
	}

	.footer-cta-red {
		padding: 40px 0;
	}

	.cta-inner {
		flex-direction: column;
		text-align: center;
		gap: 25px;
	}

	.cta-btns {
		width: 100%;
		flex-direction: column;
		gap: 10px;
	}

	.btn-white-solid {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 2rem;
	}

	.top-bar {
		display: none;
	}

	.search-tabs .search-tab {
		padding: 12px;
		font-size: 0.9rem;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.link-arrow {
		font-size: 0.9rem;
		margin-top: 5px;
	}

	.footer-bottom .bottom-inner {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.bottom-links a {
		margin: 0 10px;
		display: inline-block;
	}
}

/* --- 1. PAGE TITLE (MİNİMAL KIRMIZI BANNER) --- */
.page-banner-minimal {
	background-color: var(--brand-red);
	padding: 40px 0;
	color: #fff;
	margin-bottom: 0;
}

.banner-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.banner-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.5px;
	color: #fff;
}

.banner-breadcrumb {
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

.banner-breadcrumb a {
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
	transition: 0.2s;
}

.banner-breadcrumb a:hover {
	opacity: 1;
}

.banner-sep {
	margin: 0 10px;
	opacity: 0.5;
	font-size: 0.8rem;
}

.banner-current {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

/* --- 2. İÇERİK ALANI (BEYAZ KUTU) --- */
.content-section {
	padding: 60px 0; /* Üst ve Alt Boşluk */
}

.white-paper-box {
	background-color: #fff;
	padding: 60px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid #eaebed;
}

/* Metin Stilleri */
.doc-text {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1rem;
	line-height: 1.8;
	color: #444;
}

.doc-text h4 {
	color: var(--brand-dark);
	font-weight: 800;
	font-size: 1.3rem;
	margin: 35px 0 15px 0;
	border-left: 4px solid var(--brand-red);
	padding-left: 15px; /* Sol tarafta kırmızı çizgi efekti */
}

.doc-text p {
	margin-bottom: 20px;
}

.doc-text ul {
	padding-left: 20px;
	margin-bottom: 20px;
	list-style-type: disc;
}

.doc-text li {
	margin-bottom: 8px;
}

.last-update-bar {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	font-size: 0.9rem;
	color: #888;
	font-style: italic;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 991px) {
	.page-banner-minimal {
		padding: 30px 0;
		text-align: center;
	}

	.banner-flex {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.white-paper-box {
		padding: 30px;
	}
}

/* =========================
   İLETİŞİM
========================= */
.contact-section .section-header {
	margin-bottom: 35px;
}

.contact-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 28px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-card-title {
	font-weight: 800;
	font-size: 1.35rem;
	margin: 0 0 10px 0;
	color: var(--brand-dark);
	letter-spacing: -0.2px;
}

.contact-card-desc {
	margin: 0 0 22px 0;
	color: #666;
	line-height: 1.6;
	font-size: 0.98rem;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 22px;
}

.contact-info-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 14px;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	background: #fcfcfc;
}

.contact-info-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff5f5;
	color: var(--brand-red);
	font-size: 1.05rem;
	flex: 0 0 42px;
}

.contact-info-label {
	font-weight: 800;
	font-size: 0.85rem;
	color: #777;
	margin-bottom: 3px;
	text-transform: none;
	letter-spacing: 0.4px;
}

.contact-info-value {
	color: #333;
	font-weight: 600;
	line-height: 1.4;
}

.contact-info-link {
	color: #333;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s;
}

.contact-info-link:hover {
	color: var(--brand-red);
}

/* Butonlar */
.contact-quick-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-contact-primary {
	background: var(--brand-red);
	color: #fff;
	border: 2px solid var(--brand-red);
	padding: 12px 18px;
	border-radius: 10px;
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.25s;
}

.btn-contact-primary:hover {
	background: #b30000;
	border-color: #b30000;
	color: #fff;
	transform: translateY(-1px);
}

.btn-contact-outline {
	background: transparent;
	color: var(--brand-dark);
	border: 2px solid #e6e6e6;
	padding: 12px 18px;
	border-radius: 10px;
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.25s;
}

.btn-contact-outline:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

/* Form */
.contact-label {
	font-weight: 800;
	font-size: 0.9rem;
	color: #333;
	margin-bottom: 8px;
	display: block;
}

.contact-input,
.contact-textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 14px 14px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #333;
	background: #fff;
}

.contact-textarea {
	resize: vertical;
	min-height: 140px;
}

.contact-input:focus,
.contact-textarea:focus {
	outline: none;
	border-color: var(--brand-red);
}

.contact-consent {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #666;
	font-weight: 600;
	font-size: 0.92rem;
}

.contact-consent input {
	width: 18px;
	height: 18px;
	accent-color: var(--brand-red);
}

.btn-contact-submit {
	background: var(--brand-red);
	color: #fff;
	border: none;
	padding: 14px 18px;
	border-radius: 10px;
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.25s;
}

.btn-contact-submit:hover {
	background: #b30000;
	transform: translateY(-1px);
}

/* =========================
   GENİŞ HARİTA (FULL-WIDTH)
========================= */
.map-section {
	width: 100%;
}

.map-section.full-bleed {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.map-wrap {
	width: 100%;
	border-radius: 0;
	overflow: hidden;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.map-wrap iframe,
.map-wrap .map-embed {
	width: 100%;
	height: 540px;
	border: 0;
	display: block;
}

/* Responsive */
@media (max-width: 991px) {
	.contact-card {
		padding: 22px;
	}

	.map-wrap iframe,
	.map-wrap .map-embed {
		height: 420px;
	}
}

@media (max-width: 767px) {
	.contact-quick-actions {
		flex-direction: column;
	}

	.btn-contact-primary,
	.btn-contact-outline,
	.btn-contact-submit {
		width: 100%;
		justify-content: center;
	}

	.map-wrap iframe,
	.map-wrap .map-embed {
		height: 360px;
	}
}

/* =====================================================
   BLOG LIST + SIDEBAR (EK CSS) - TAM
   (Mevcut blog-card stillerini bozmaz; üzerine ekler)
===================================================== */

/* =========================
   BLOG LİSTESİ - GENEL
========================= */
.blog-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
}

/* =========================
   BLOG TOOLBAR (Filtre + Arama)
========================= */
.blog-toolbar {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.blog-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.blog-filter {
	text-decoration: none;
	font-weight: 800;
	font-size: 0.9rem;
	color: #444;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 999px;
	padding: 10px 14px;
	transition: 0.2s;
}

.blog-filter:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

.blog-filter.active {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff;
}

/* Toolbar araması (üstteki) */
.blog-search {
	position: relative;
	min-width: 260px;
	flex: 1;
}

.blog-search i {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	font-size: 0.95rem;
}

.blog-search input {
	width: 100%;
	padding: 12px 14px 12px 40px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.95rem;
	color: #333;
	background: #fff;
}

.blog-search input:focus {
	outline: none;
	border-color: var(--brand-red);
}

/* =========================
   BLOG KART META / EXCERPT / READMORE
   (Mevcut .blog-card / .blog-title ile uyumlu)
========================= */
.blog-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.blog-chip {
	background: #fff5f5;
	color: var(--brand-red);
	border-radius: 999px;
	padding: 6px 10px;
	font-weight: 900;
	font-size: 0.78rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.blog-meta-item {
	color: #777;
	font-weight: 800;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.blog-excerpt {
	margin: 12px 0 0 0;
	color: #666;
	line-height: 1.6;
	font-weight: 600;
	font-size: 0.95rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-readmore {
	margin-top: 16px;
	color: var(--brand-red);
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.2s;
}

.blog-card:hover .blog-readmore {
	gap: 14px;
}

/* =========================
   SAYFALAMA
========================= */
.blog-pagination {
	margin-top: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.page-btn {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	background: #fff;
	color: #333;
	font-weight: 900;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
}

.page-btn:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

.page-btn.active {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff;
}

.page-btn.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.page-dots {
	color: #999;
	font-weight: 900;
}

/* =====================================================
   BLOG SIDEBAR
===================================================== */
.blog-sidebar {
	position: sticky;
	top: 110px; /* header sticky olduğu için */
}

.sidebar-box {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 22px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	margin-bottom: 18px;
}

.sidebar-title {
	font-weight: 900;
	font-size: 1.05rem;
	margin: 0 0 14px 0;
	color: var(--brand-dark);
	letter-spacing: -0.2px;
}

/* =========================
   SIDEBAR SEARCH
========================= */
.sidebar-search {
	position: relative;
	display: flex;
	align-items: center;
}

.sidebar-search i {
	position: absolute;
	left: 14px;
	color: #fff;
	font-size: 0.95rem;
}

.sidebar-search input {
	width: 100%;
	padding: 12px 46px 12px 30px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.95rem;
	color: #333;
	background: #fff;
}

.sidebar-search input:focus {
	outline: none;
	border-color: var(--brand-red);
}

.sidebar-search-btn {
	position: absolute;
	right: 6px;
	top: 6px;
	bottom: 6px;
	width: 38px;
	border: none;
	border-radius: 10px;
	background: var(--brand-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
	cursor: pointer;
}

.sidebar-search-btn:hover {
	background: #b30000;
}

/* =========================
   SIDEBAR CATEGORIES
========================= */
.sidebar-cats {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-cats li + li {
	margin-top: 10px;
}

.sidebar-cats a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #333;
	font-weight: 800;
	padding: 12px 12px;
	border-radius: 10px;
	background: #fcfcfc;
	border: 1px solid #f0f0f0;
	transition: 0.2s;
}

.sidebar-cats a:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

.cat-count {
	background: #fff5f5;
	color: var(--brand-red);
	border-radius: 999px;
	padding: 5px 10px;
	font-weight: 900;
	font-size: 0.78rem;
}

/* =========================
   POPÜLER MAKALELER
========================= */
.popular-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.popular-item {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid #f0f0f0;
	background: #fcfcfc;
	transition: 0.2s;
}

.popular-item:hover {
	border-color: #e6e6e6;
	transform: translateY(-1px);
}

.popular-item img {
	width: 78px;
	height: 62px;
	object-fit: cover;
	border-radius: 10px;
	flex: 0 0 78px;
}

.popular-meta {
	font-weight: 900;
	font-size: 0.78rem;
	color: #777;
	margin-bottom: 4px;
}

.popular-title {
	font-weight: 900;
	font-size: 0.95rem;
	line-height: 1.25;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.popular-item:hover .popular-title {
	color: var(--brand-red);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
	.blog-sidebar {
		position: static;
		top: auto;
	}
}

@media (max-width: 767px) {
	.blog-search {
		min-width: 100%;
	}
}

/* =====================================================
   BLOG DETAY - EK CSS
===================================================== */
.blog-detail-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Cover */
.blog-detail-cover {
	position: relative;
	overflow: hidden;
	height: 340px;
}

.blog-detail-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s;
}

.blog-detail-card:hover .blog-detail-cover img {
	transform: scale(1.03);
}

.blog-detail-cover-badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
}

/* Header */
.blog-detail-header {
	padding: 26px;
}

.blog-detail-title {
	margin: 0 0 12px 0;
	font-weight: 900;
	color: var(--brand-dark);
	letter-spacing: -0.4px;
	line-height: 1.2;
	font-size: 2rem;
}

.blog-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: #777;
	font-weight: 800;
	font-size: 0.92rem;
}

.blog-detail-meta .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.blog-detail-meta .meta-dot {
	opacity: 0.6;
}

/* Share */
.blog-detail-share {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.share-label {
	font-weight: 900;
	color: #666;
	margin-right: 6px;
}

.share-btn {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid #eee;
	background: #fff;
	color: #333;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: 0.2s;
}

.share-btn:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
	transform: translateY(-1px);
}

/* Content */
.blog-detail-content {
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	padding: 22px 26px 26px 26px;
	color: #555;
	line-height: 1.8;
	font-weight: 600;
	font-size: 1rem;
}

.blog-detail-content .lead {
	font-size: 1.05rem;
	color: #444;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 18px;
}

.blog-detail-content h3 {
	margin-top: 22px;
	margin-bottom: 10px;
	font-weight: 900;
	color: #222;
	letter-spacing: -0.2px;
	font-size: 1.25rem;
}

.blog-detail-content p {
	margin-bottom: 14px;
}

.blog-detail-content ul,
.blog-detail-content ol {
	padding-left: 20px;
	margin-bottom: 14px;
}

.blog-detail-content li {
	margin-bottom: 8px;
}

.blog-detail-content blockquote {
	margin: 18px 0;
	padding: 16px 18px;
	border-left: 4px solid var(--brand-red);
	background: #fff5f5;
	border-radius: 10px;
	color: #444;
	font-weight: 700;
}

/* Inline image */
.blog-detail-image {
	margin: 18px 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #eee;
	background: #fff;
}

.blog-detail-image img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

.img-caption {
	padding: 10px 12px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #666;
	background: #fcfcfc;
	border-top: 1px solid #eee;
}

/* CTA */
.blog-detail-cta {
	margin-top: 18px;
	padding: 18px;
	border-radius: 12px;
	border: 1px solid #eee;
	background: #fcfcfc;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.blog-detail-cta h4 {
	margin: 0 0 4px 0;
	font-weight: 900;
	color: #222;
	font-size: 1.05rem;
}

.blog-detail-cta p {
	margin: 0;
	color: #666;
	font-weight: 700;
	font-size: 0.95rem;
}

/* Tags */
.blog-detail-tags {
	margin-top: 18px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-label {
	font-weight: 900;
	color: #666;
}

.tag-pill {
	text-decoration: none;
	font-weight: 900;
	font-size: 0.85rem;
	color: #333;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 999px;
	padding: 8px 12px;
	transition: 0.2s;
}

.tag-pill:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

/* =====================================================
   YORUMLAR
===================================================== */
.blog-comments {
	margin-top: 18px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 22px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.comments-title {
	margin: 0 0 16px 0;
	font-weight: 900;
	color: #222;
	font-size: 1.2rem;
}

.comment-item {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-top: 1px solid #f2f2f2;
}

.comment-item:first-of-type {
	border-top: none;
	padding-top: 0;
}

.comment-avatar {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff5f5;
	color: var(--brand-red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	flex: 0 0 44px;
}

.comment-head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}

.comment-date {
	color: #888;
	font-weight: 800;
	font-size: 0.9rem;
}

.comment-body p {
	margin: 0 0 8px 0;
	color: #666;
	font-weight: 650;
	line-height: 1.6;
}

.comment-reply {
	text-decoration: none;
	color: var(--brand-red);
	font-weight: 900;
	font-size: 0.9rem;
}

.comment-reply:hover {
	color: #b30000;
}

/* Comment form */
.comment-form-wrap {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #f2f2f2;
}

.comment-form-title {
	margin: 0 0 12px 0;
	font-weight: 900;
	color: #222;
	font-size: 1.1rem;
}

.comment-input,
.comment-textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 14px;
	font-weight: 700;
	font-size: 0.95rem;
	color: #333;
	background: #fff;
}

.comment-input:focus,
.comment-textarea:focus {
	outline: none;
	border-color: var(--brand-red);
}

.btn-comment {
	background: var(--brand-red);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 18px;
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.25s;
}

.btn-comment:hover {
	background: #b30000;
	transform: translateY(-1px);
}

/* =====================================================
   ÖNCEKİ / SONRAKİ NAV
===================================================== */
.blog-detail-nav {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.nav-post {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 16px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: 0.2s;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nav-post:hover {
	border-color: #e6e6e6;
	transform: translateY(-1px);
}

.nav-label {
	color: #777;
	font-weight: 900;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.nav-title {
	font-weight: 900;
	color: #222;
	line-height: 1.35;
	font-size: 0.98rem;
}

.nav-post:hover .nav-title {
	color: var(--brand-red);
}

/* Responsive */
@media (max-width: 991px) {
	.blog-detail-cover {
		height: 280px;
	}

	.blog-detail-title {
		font-size: 1.6rem;
	}

	.blog-detail-nav {
		grid-template-columns: 1fr;
	}

	.blog-detail-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.blog-detail-header {
		padding: 20px 20px 0 20px;
	}

	.blog-detail-content {
		padding: 18px 20px 20px 20px;
	}

	.blog-detail-image img {
		height: 260px;
	}
}

/* =====================================================
   PRIMEESTATE - İLAN DETAY (TAM CSS / PC + MOBİL)
   - Sadece #listing-detail içindeki .pd-* yapılarını etkiler.
   - Aktif özellik: .is-on  (kırmızı tik + açık kırmızı zemin)
   - Pasif özellik: class yok (gri daire + gri yazı)
===================================================== */

/* ------------------------------
   Card / Genel
------------------------------ */
#listing-detail .pd-card,
#listing-detail .pd-side-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#listing-detail .pd-topinfo {
	padding: 16px 18px;
}

#listing-detail .pd-h1 {
	margin: 0;
	font-weight: 900;
	letter-spacing: -0.4px;
	color: var(--brand-dark);
	font-size: 1.65rem;
	line-height: 1.25;
}

#listing-detail .pd-card-head {
	padding: 14px 16px;
	font-weight: 900;
	color: #222;
	border-bottom: 1px solid #f2f2f2;
	background: #fff;
}

#listing-detail .pd-text {
	color: #666;
	line-height: 1.8;
	font-weight: 650;
}

/* ------------------------------
   GALERİ
------------------------------ */
#listing-detail .pd-gallery {
	padding: 16px;
}

#listing-detail .pd-main-img {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #eee;
	height: 500px;
	background: #f7f7f7;
}

#listing-detail .pd-main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
}

#listing-detail .pd-badges {
	position: absolute;
	left: 14px;
	top: 14px;
	display: flex;
	gap: 10px;
	z-index: 2;
}

#listing-detail .pd-badge {
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 900;
	font-size: 0.78rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(6px);
}

#listing-detail .pd-fav-btn {
	position: absolute;
	right: 14px;
	top: 14px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.2s;
	z-index: 2;
}

#listing-detail .pd-fav-btn:hover {
	transform: translateY(-1px);
}

#listing-detail .pd-fav-btn i {
	color: #222;
}

#listing-detail .pd-fav-btn.is-active i {
	color: var(--brand-red);
}

#listing-detail .pd-zoom-btn {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.2s;
	z-index: 2;
}

#listing-detail .pd-zoom-btn:hover {
	background: rgba(0, 0, 0, 0.72);
	transform: translateY(-1px);
}

/* ------------------------------
   THUMBS (oklu kaydırma)
------------------------------ */
#listing-detail .pd-thumbs-wrap {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#listing-detail .pd-thumbs-nav {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid #eee;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
	flex: 0 0 38px;
}

#listing-detail .pd-thumbs-nav:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

#listing-detail .pd-thumbs-nav:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

#listing-detail .pd-thumbs-slider {
	overflow-x: auto;
	overflow-y: hidden;
	flex: 1;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

#listing-detail .pd-thumbs-slider::-webkit-scrollbar {
	display: none;
}

#listing-detail .pd-thumbs {
	display: flex;
	gap: 10px;
	padding: 2px;
	width: max-content;
}

#listing-detail .pd-thumb {
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
	background: transparent;
	cursor: pointer;
	flex: 0 0 auto;
}

#listing-detail .pd-thumb img {
	width: 92px;
	height: 70px;
	object-fit: cover;
	display: block;
}

#listing-detail .pd-thumb.active {
	border-color: var(--brand-red);
}

/* ------------------------------
   TAB (başlıklar tek card içinde)
------------------------------ */
#listing-detail .pd-tabs-head {
	display: flex;
	gap: 10px;
	padding: 14px;
	border-bottom: 1px solid #f2f2f2;
	align-items: center;
	flex-wrap: wrap;
}

#listing-detail .pd-tab-btn {
	border: 1px solid #eee;
	background: #fff;
	color: #333;
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 900;
	cursor: pointer;
	transition: 0.2s;
	font-size: 0.95rem;
	line-height: 1;
}

#listing-detail .pd-tab-btn:hover {
	border-color: var(--brand-red);
	color: var(--brand-red);
}

#listing-detail .pd-tab-btn.is-active {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff;
}

#listing-detail .pd-tab-panel {
	padding: 0;
}

#listing-detail .pd-tab-panel[hidden] {
	display: none !important;
}

#listing-detail .pd-tabs-note {
	margin: 14px 16px 16px 16px;
	padding: 14px;
	border-radius: 12px;
	background: #fcfcfc;
	border: 1px solid #f0f0f0;
	color: #666;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* ------------------------------
   MAP / STREET / VIDEO
------------------------------ */
#listing-detail .pd-map {
	padding: 14px 16px 16px 16px;
}

#listing-detail .pd-map iframe {
	width: 100%;
	height: 500px;
	border: 0;
	border-radius: 12px;
	border: 1px solid #eee;
	display: block;
}

#listing-detail .pd-street {
	padding: 0 16px 16px 16px;
}

#listing-detail .pd-street-placeholder {
	border: 1px dashed #ddd;
	border-radius: 12px;
	padding: 18px;
	display: flex;
	gap: 12px;
	align-items: center;
	background: #fff;
}

#listing-detail .pd-street-ic {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #fff5f5;
	color: var(--brand-red);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
}

#listing-detail .pd-street-tx {
	color: #666;
	font-weight: 800;
}

#listing-detail .pd-video {
	margin: 14px 16px 16px 16px;
	position: relative;
	padding-top: 56.25%;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #eee;
	background: #000;
}

#listing-detail .pd-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ------------------------------
   İLAN BİLGİLERİ (Oda 4 aynı satır)
------------------------------ */
#listing-detail .pd-table {
	padding: 10px 16px 16px 16px;
}

#listing-detail .pd-tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f2f2f2;
}

#listing-detail .pd-tr:last-child {
	border-bottom: none;
}

#listing-detail .pd-tr .k {
	color: #777;
	font-weight: 900;
	font-size: 0.92rem;
}

#listing-detail .pd-tr .v {
	color: #222;
	font-weight: 900;
	text-align: right;
	font-size: 0.95rem;
}

/* ------------------------------
   ÖZELLİKLER (Aktif / Pasif NET)
   - Pasif: gri daire + gri yazı
   - Aktif (.is-on): kırmızı tik + açık kırmızı zemin
------------------------------ */
#listing-detail .pd-features-wrap {
	padding: 14px 16px 16px 16px;
	display: grid;
	gap: 14px;
}

#listing-detail .pd-feature-group {
	border: 1px solid #eee;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

#listing-detail .pd-feature-headline {
	padding: 12px 14px;
	font-weight: 900;
	color: #222;
	border-bottom: 1px solid #f0f0f0;
	background: #fcfcfc;
	font-size: 0.95rem;
}

#listing-detail .pd-feature-panel {
	padding: 14px;
}

#listing-detail .pd-feature-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px 12px;
}

/* PASİF (varsayılan) */
#listing-detail .pd-feature-grid li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid #eee;
	background: #fff;
	font-weight: 800;
	font-size: 0.9rem;
	line-height: 1.2;
	color: #9aa0a68f;
}

/* pasif ikon: gri daire (tik yok) */
#listing-detail .pd-feature-grid li i {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c9c9c9;
}

/* her li'de <i> olsa da olmasa da sorun çıkmasın */
#listing-detail .pd-feature-grid li i::before {
	content: "\f111"; /* fa-circle */
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	font-size: 0.65rem;
}

/* AKTİF */
#listing-detail .pd-feature-grid li.is-on {
	color: #222;
}

#listing-detail .pd-feature-grid li.is-on i {
	color: var(--brand-red);
}

#listing-detail .pd-feature-grid li.is-on i::before {
	content: "\f00c"; /* fa-check */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.85rem;
}

#listing-detail .pd-feature-grid li:hover {
	border-color: #ddd;
}

/* ------------------------------
   SIDEBAR
------------------------------ */
#listing-detail .pd-sidebar {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 14px;
}

#listing-detail .pd-side-card {
	padding: 16px 18px;
}

#listing-detail .pd-side-summary {
	padding: 16px 18px;
}

#listing-detail .pd-side-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f2f2f2;
}

#listing-detail .pd-side-summary-row:last-child {
	border-bottom: none;
}

#listing-detail .pd-side-summary-row .k {
	color: #777;
	font-weight: 900;
	font-size: 0.9rem;
}

#listing-detail .pd-side-summary-row .v {
	color: #222;
	font-weight: 900;
	font-size: 0.95rem;
}

#listing-detail .pd-side-summary-row .v.price {
	color: #000;
	font-size: 1.05rem;
}

/* ------------------------------
   DANIŞMAN
------------------------------ */
#listing-detail .pd-agent-card {
	padding: 16px 18px;
}

#listing-detail .pd-agent-vertical {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

#listing-detail .pd-agent-photo-portrait {
	width: 88px;
	height: 118px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #eee;
	flex: 0 0 88px;
	background: #f7f7f7;
}

#listing-detail .pd-agent-photo-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#listing-detail .pd-agent-vinfo {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

#listing-detail .pd-agent-name-lg {
	font-weight: 900;
	color: #222;
	line-height: 1.25;
	margin-bottom: 4px;
	word-break: break-word;
}

#listing-detail .pd-agent-role-lg {
	font-weight: 800;
	color: #777;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

#listing-detail .pd-agent-vactions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: auto;
}

/* Buttons */
#listing-detail .pd-btn {
	text-decoration: none;
	border-radius: 12px;
	padding: 10px 12px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 2px solid transparent;
	transition: 0.2s;
	white-space: nowrap;
}

#listing-detail .pd-btn-sm {
	padding: 9px 10px;
	font-size: 0.92rem;
}

#listing-detail .pd-btn-primary {
	background: var(--brand-red);
	color: #fff;
	border-color: var(--brand-red);
}

#listing-detail .pd-btn-primary:hover {
	background: #b30000;
	border-color: #b30000;
	transform: translateY(-1px);
}

#listing-detail .pd-btn-whatsapp {
	background: #25D366;
	color: #fff;
	border-color: #25D366;
}

#listing-detail .pd-btn-whatsapp:hover {
	filter: brightness(0.95);
	transform: translateY(-1px);
}

/* ------------------------------
   FORM
------------------------------ */
#listing-detail .pd-side-title {
	margin: 0 0 12px 0;
	font-weight: 900;
	color: #222;
	padding-bottom: 10px;
	border-bottom: 1px solid #f2f2f2;
}

#listing-detail .pd-form {
	display: grid;
	gap: 10px;
}

#listing-detail .pd-input,
#listing-detail .pd-textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 12px 14px;
	font-weight: 750;
	color: #333;
	background: #fff;
}

#listing-detail .pd-input:focus,
#listing-detail .pd-textarea:focus {
	outline: none;
	border-color: var(--brand-red);
}

#listing-detail .pd-input::placeholder,
#listing-detail .pd-textarea::placeholder {
	font-size: 0.88rem;
	color: #777;
}

#listing-detail .pd-check {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #666;
	font-weight: 750;
	font-size: 0.92rem;
}

#listing-detail .pd-check input {
	width: 18px;
	height: 18px;
	accent-color: var(--brand-red);
}

#listing-detail .pd-submit {
	background: var(--brand-red);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 12px 14px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: 0.2s;
}

#listing-detail .pd-submit:hover {
	background: #b30000;
	transform: translateY(-1px);
}

/* ------------------------------
   LIGHTBOX
------------------------------ */
.pd-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}

.pd-lightbox.open {
	display: flex;
}

.pd-lightbox-img {
	max-width: 92vw;
	max-height: 86vh;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.pd-lightbox-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.pd-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.pd-lightbox-nav.prev {
	left: 18px;
}

.pd-lightbox-nav.next {
	right: 18px;
}

/* =====================================================
   FORM BAŞLIĞI – DİĞER KART BAŞLIKLARIYLA AYNI
===================================================== */
#listing-detail .pd-side-card .pd-side-title {
	margin: 0;
	padding: 14px 16px;
	font-weight: 900;
	font-size: 15px;
	color: #222;
	border-bottom: 1px solid #f0f0f0;
}

/* Form iç boşluk (başlıkla karışmasın) */
#listing-detail .pd-side-card .pd-form {
	padding: 14px 16px 16px 16px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 991px) {
	#listing-detail .pd-sidebar {
		position: static;
		top: auto;
	}

	#listing-detail .pd-main-img {
		height: 300px;
	}

	#listing-detail .pd-feature-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	#listing-detail .pd-map iframe {
		height: 280px;
	}
}

@media (max-width: 767px) {
	/* tab butonları scroll değil, alt alta */
	#listing-detail .pd-tabs-head {
		flex-wrap: wrap;
		overflow: visible;
		gap: 10px;
	}

	#listing-detail .pd-tab-btn {
		width: 100%;
		justify-content: center;
		text-align: center;
		padding: 12px 12px;
	}

	/* danışman butonları alt alta */
	#listing-detail .pd-agent-vactions {
		grid-template-columns: 1fr;
	}

	#listing-detail .pd-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	#listing-detail .pd-h1 {
		font-size: 1.35rem;
	}

	#listing-detail .pd-thumb img {
		width: 78px;
		height: 60px;
	}

	#listing-detail .pd-agent-photo-portrait {
		height: 108px;
	}

	#listing-detail .pd-feature-grid {
		grid-template-columns: 1fr;
	}
}

/* --- GLOBAL AYARLAR --- */
#listing-category {
	font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
	text-decoration: none;
}

/* ============================================================
   1. FİLTRE SIDEBAR STİLLERİ (Prefix: filter-)
============================================================ */
.filter-sidebar {
	background: #fff;
	padding: 15px;
	border: 1px solid #bebebe; /* Senin ayarın */
	border-radius: 3px;
}

.filter-widget {
	margin-bottom: 20px;
	/* border-bottom: 1px solid #f0f0f0;  İstenirse açılabilir */
}

.filter-widget:last-child {
	margin-bottom: 0;
}

.filter-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
	display: block;
	letter-spacing: -0.2px;
}

/* Fiyat Inputları */
.filter-price-row {
	display: flex;
	gap: 8px;
}

.filter-price-input {
	position: relative;
	flex: 1;
}

.filter-price-input input {
	width: 100%;
	height: 34px;
	border: 1px solid #bebebe;
	border-radius: 3px;
	padding: 0 30px 0 10px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #333;
	background: #fff;
	transition: 0.2s;
	outline: none;
	box-shadow: none !important;
}

.filter-price-input input:focus {
	border-color: #bebebe;
}

.filter-price-input .currency {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.75rem;
	color: #999;
	font-weight: 800;
}

/* Checkbox & Radio Listeleri */
.filter-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.filter-row {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 0.85rem;
	color: #333;
	font-weight: 600;
	user-select: none;
	margin: 0;
	padding: 0;
	line-height: 1.4;
}

.filter-row input {
	display: none;
}

/* Custom Checkbox */
.filter-checkmark {
	width: 16px;
	height: 16px;
	border: 1px solid #bebebe;
	border-radius: 3px;
	margin-right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	flex-shrink: 0;
	transition: 0.1s;
}

.filter-row:hover .filter-checkmark {
	border-color: #888;
}

.filter-row input:checked ~ .filter-checkmark {
	background-color: #cc2127;
	border-color: #cc2127;
}

.filter-checkmark::after {
	content: '';
	display: none;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-0.5px, -1px);
}

.filter-row input:checked ~ .filter-checkmark::after {
	display: block;
}

/* Custom Radio */
.filter-radiomark {
	width: 16px;
	height: 16px;
	border: 1px solid #bebebe;
	border-radius: 50%;
	margin-right: 8px;
	position: relative;
	background: #fff;
	flex-shrink: 0;
}

.filter-row:hover .filter-radiomark {
	border-color: #888;
}

.filter-row input:checked ~ .filter-radiomark {
	border-color: #cc2127;
}

.filter-radiomark::after {
	content: '';
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: #cc2127;
	border-radius: 50%;
}

.filter-row input:checked ~ .filter-radiomark::after {
	display: block;
}

/* -----------------------------------------------------------
   ACCORDION ÇAKIŞMA ÇÖZÜMÜ
   Sadece .filter-sidebar içindeki accordion-item'ları sıfırlıyoruz.
----------------------------------------------------------- */
.filter-sidebar .accordion-item {
	border: none !important;
	background: transparent !important;
	border-radius: 0 !important;
}

/* Buton (Select Görünümlü) */
.filter-select-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff !important;
	border: 1px solid #bebebe !important;
	border-radius: 4px !important;
	padding: 10px 12px !important;
	font-size: 0.85rem !important;
	color: #767676 !important;
	font-weight: 700 !important;
	box-shadow: none !important;
	transition: none !important;
	position: relative; /* Z-index için */
}

.filter-select-btn::after {
	background-size: 0.75rem !important;
	width: 0.75rem !important;
	height: 0.75rem !important;
	filter: grayscale(1);
	opacity: 0.6;
	margin-left: 0 !important;
}

/* Açık Durum (Bütünleşik Kutu) */
.filter-select-btn:not(.collapsed) {
	/* Sadece üst köşeler yuvarlak */
	border-radius: 4px 4px 0 0 !important;
	/* Alt çizgi senin gri rengin */
	border-bottom: 1px solid #bebebe !important;
	color: #767676 !important;
	z-index: 5; /* İçeriğin üstünde kalsın */
}

/* İçerik Kutusu */
.filter-body {
	background: #fff;
	border: 1px solid #bebebe !important;
	/* Sadece alt köşeler yuvarlak */
	border-radius: 0 0 4px 4px !important;
	border-top: none !important;
	padding: 12px !important;
	/* Çizgiyi yukarı çekip birleştirme */
	margin-top: -1px !important;
	position: relative;
}

/* Butonlar (Yan Yana) */
.filter-actions {
	margin-top: 25px;
	display: flex;
	gap: 10px;
}

.filter-btn-search {
	flex: 1;
	background-color: #cc2127 !important;
	color: #fff !important;
	border-radius: 4px !important;
	padding: 10px !important;
	font-weight: 700 !important;
	font-size: 0.9rem !important;
	border: none !important;
	cursor: pointer;
}

.filter-btn-search:hover {
	background-color: #b01b20 !important;
}

.filter-btn-clear {
	flex: 1;
	background-color: #f8f9fa !important;
	color: #555 !important;
	border: 1px solid #ddd !important;
	border-radius: 4px !important;
	padding: 10px !important;
	font-weight: 700 !important;
	font-size: 0.9rem !important;
	cursor: pointer;
	text-align: center;
}

.filter-btn-clear:hover {
	background-color: #eee !important;
	border-color: #ccc !important;
}

/* ============================================================
   2. İLAN LİSTELEME STİLLERİ (Prefix: category-)
============================================================ */

/* Üst Bar */
.category-topcard {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 12px 15px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.category-sortbtns {
	display: flex;
	gap: 8px;
}

.category-sbtn {
	border: 1px solid #ddd;
	background: #fff;
	padding: 6px 12px;
	font-size: 0.8rem;
	font-weight: 700;
	border-radius: 4px;
	color: #555;
	cursor: pointer;
}

.category-sbtn.is-active {
	background: #cc2127;
	color: #fff;
	border-color: #cc2127;
}

/* İlan Kartı */
.category-item {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 280px 1fr;
	margin-bottom: 20px;
	transition: 0.2s;
}

.category-item:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border-color: #ddd;
}

.category-img {
	height: 100%;
	min-height: 180px;
	position: relative;
}

.category-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #cc2127;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
}

.category-body {
	padding: 15px;
	display: flex;
	flex-direction: column;
}

.category-price {
	font-size: 1.3rem;
	font-weight: 800;
	color: #000;
}

.category-title {
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 5px;
	text-decoration: none;
	display: block;
	line-height: 1.4;
}

.category-title:hover {
	color: #cc2127;
}

.category-loc {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 10px;
}

/* İlan Butonları (A Tag) */
.category-actions {
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #f0f0f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category-btn-group {
	display: flex;
	gap: 8px;
}

.category-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff !important;
	transition: 0.2s;
	text-decoration: none;
}

.category-btn i {
	margin-right: 6px;
	font-size: 0.85rem;
	font-weight: bold;
}

.category-btn-call {
	background-color: #D32F2F;
}

.category-btn-call:hover {
	background-color: #b01b20;
}

.category-btn-wa {
	background-color: #25D366;
}

.category-btn-wa:hover {
	background-color: #1ebc57;
}

.category-agency {
	font-size: 0.8rem;
	font-weight: 700;
	color: #777;
}

/* Sayfalama (Card içinde) */
.category-pagination-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.category-page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin: 0 4px;
	color: #555;
	font-weight: 700;
	font-size: 0.9rem;
	background: #fff;
	transition: 0.2s;
	text-decoration: none;
}

.category-page-link:hover {
	border-color: #cc2127;
	color: #cc2127;
}

.category-page-link.active {
	background: #cc2127;
	border-color: #cc2127;
	color: #fff;
}

.category-page-link.disabled {
	opacity: 0.5;
	pointer-events: none;
	background: #f9f9f9;
}

/* Mobil Ayarlar */
@media (max-width: 991px) {
	.category-item {
		grid-template-columns: 1fr;
	}

	.category-img {
		height: 220px;
	}

	/* Sıralama mobilde düzgün dursun */
	.category-topcard {
		flex-direction: column;
		align-items: flex-start;
	}

	.category-sortbtns {
		width: 100%;
		flex-wrap: wrap;
		margin-top: 10px;
	}

	.category-sortbtns .category-sbtn {
		flex: 1;
		text-align: center;
	}

	.category-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.category-btn-group {
		width: 100%;
	}

	.category-btn {
		flex: 1;
		justify-content: center;
	}

	.category-agency {
		width: 100%;
		text-align: left;
		margin-top: 5px;
	}
}