/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1E88E5;
    --secondary-color: #0D47A1;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar Stilleri */
.topbar {
    background-color: #2c3e50;
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-content p {
    margin: 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-content i {
    color: #f39c12;
    font-size: 12px;
}

/* Header Stilleri */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 33px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo Stilleri */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary-color);
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: #f5f5f5;
    color: #333;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition);
    border: 0px solid #e0e0e0;
}

.btn-primary:hover {
    background-color: #ebebeb;
    border-color: #d5d5d5;
}

.icon-btn {
    background-color: #f5f5f5;
    color: #333;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: 0px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-decoration: none;
}

.icon-btn:hover {
    background-color: #ebebeb;
    border-color: #d5d5d5;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Page Banner Stilleri */
.page-banner {
    margin-top: 100px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE57F 100%);
    max-height: 100px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.sale-banner {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFD54F 50%, #FFC107 100%);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.banner-text h1 {
    font-size: 28px;
    font-weight: 600;
    color: #F57C00;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.banner-text p {
    font-size: 14px;
    color: #E65100;
    margin: 2px 0 0 0;
    font-weight: 400;
}

.banner-icon {
    font-size: 48px;
    color: #F57C00;
    opacity: 0.3;
    margin-right: 20px;
}

/* Hero Section (GeÃ§ici) */
.hero {
    margin-top: 100px;
    min-height: 350px;
    max-height: 350px;
    padding: 50px 0 40px;
    background-image: url('../../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobil Arama ButonlarÄ± */
.mobile-search-buttons {
    display: none;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.mobile-search-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    flex: 1;
    justify-content: center;
}

.mobile-search-btn i {
    font-size: 16px;
}

.mobile-search-btn.sale-btn {
    background-color: rgba(30, 136, 229, 0.95);
    color: var(--white);
}

.mobile-search-btn.rent-btn {
    background-color: rgba(255, 152, 0, 0.95);
    color: var(--white);
}

.mobile-search-btn.search-all-btn {
    background-color: rgba(76, 175, 80, 0.95);
    color: var(--white);
}

.mobile-search-btn:active {
    transform: scale(0.95);
}

/* Mobil Filtre Butonu - VarsayÄ±lan Gizli */
.mobile-filter-btn {
    display: none;
}

.filter-modal-overlay {
    display: none;
}

/* Listings Section - SatÄ±lÄ±k/KiralÄ±k SayfalarÄ± */
.listings-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.listings-wrapper {
    display: flex;
    gap: 30px;
}

/* Sol Sidebar - Filtreleme */
.listings-sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-box,
.category-box {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-title,
.category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.filter-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-input {
    flex: 1;
    padding: 10px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    transition: var(--transition);
    min-width: 0;
}

.filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.filter-separator {
    color: #999;
    font-weight: 500;
}

.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background-color: var(--white);
}

.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.filter-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.filter-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.filter-clear-btn {
    width: 100%;
    background-color: #f5f5f5;
    color: var(--text-dark);
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.filter-clear-btn:hover {
    background-color: #e0e0e0;
    border-color: #d0d0d0;
}

/* Kategori Listesi */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-item:hover {
    background-color: #f5f5f5;
}

.category-item.active {
    background-color: rgba(30, 136, 229, 0.1);
    color: var(--primary-color);
}

.category-item i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
}

.category-item span:first-of-type {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.category-count {
    background-color: #e0e0e0;
    color: var(--text-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-item.active .category-count {
    background-color: var(--primary-color);
    color: var(--white);
}

/* SaÄŸ Ä°Ã§erik - Ä°lanlar */
.listings-content {
    width: 75%;
}

.listings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.listings-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background-color: var(--white);
    cursor: pointer;
}

.sort-select:focus {
    border-color: var(--primary-color);
}

.listings-content .properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Pagination Stilleri */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-prev,
.pagination-next {
    padding: 0 12px;
}

/* FAQ Section - SÄ±kÃ§a Sorulan Sorular */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Projects Section Styles */
.projects-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.ongoing {
    background-color: var(--primary-color);
    color: var(--white);
}

.project-status.completed {
    background-color: #28a745;
    color: var(--white);
}

.project-info {
    padding: 25px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.project-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-location i {
    color: var(--primary-color);
}

.project-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.feature i {
    color: var(--primary-color);
    font-size: 14px;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.project-btn {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.project-btn:hover {
    background-color: #1565C0;
    transform: translateX(3px);
}

/* Ä°lan Detay SayfasÄ± */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 105px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav .separator {
    color: #999;
}

.breadcrumb-nav .current {
    color: var(--text-dark);
    font-weight: 500;
}

.property-detail-section {
    padding: 40px 0 80px;
}

.detail-header {
    margin-bottom: 30px;
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.sale-badge {
    background-color: var(--primary-color);
    color: var(--white);
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Sol Taraf - Galeri */
.detail-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-container {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #f0f0f0;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-btn-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.favorite-btn-detail:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.favorite-btn-detail i {
    font-size: 20px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.gallery-nav:hover {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.thumbnail-gallery {
    padding: 20px;
    background-color: var(--white);
}

.thumbnail-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover {
    border-color: var(--primary-color);
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

/* Tab MenÃ¼ */
.detail-tabs {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.description-list li:last-child {
    border-bottom: none;
}

.description-list li:before {
    content: "â€¢";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* SaÄŸ Taraf - Sidebar */
.detail-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.detail-sidebar {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.price-section {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.property-specs {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #666;
    font-size: 14px;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.sidebar-features {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: grid;
    gap: 12px;
}

.sidebar-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.sidebar-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 24px;
}

.sidebar-feature-item span {
    font-size: 14px;
    color: var(--text-dark);
}

.agent-info {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.agent-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.agent-brand i {
    font-size: 20px;
}

.agent-details {
    display: flex;
    gap: 15px;
}

.agent-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-contact {
    flex: 1;
}

.agent-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.agent-phone,
.agent-email {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-phone i,
.agent-email i {
    color: var(--primary-color);
    font-size: 12px;
}

.contact-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* HakkÄ±mÄ±zda SayfasÄ± */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-intro-content h2 {
    margin-bottom: 25px;
}

.about-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-intro-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* DeÄŸerlerimiz */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #1565C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 36px;
    color: var(--white);
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Ä°statistikler */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #1565C0);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Neden Biz */
.why-us-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-item {
    padding: 35px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.why-us-item:hover {
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.why-us-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-us-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-us-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Ekibimiz */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.95), rgba(21, 101, 192, 0.95)),
                url('../img/ilan/1.png') center/cover;
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.cta-btn.primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Ä°letiÅŸim SayfasÄ± */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-side {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1565C0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 15px;
    color: #666;
    margin: 4px 0;
}

.contact-social {
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Ä°letiÅŸim Formu */
.contact-form-side {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
    padding: 50px 40px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-half,
.form-group-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-submit-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), #1565C0);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.form-submit-btn i {
    font-size: 18px;
}

/* Harita */
.map-section {
    background-color: #f0f0f0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* HÄ±zlÄ± Ä°letiÅŸim */
.quick-contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.quick-contact-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.quick-contact-card:hover {
    background-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.quick-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #1565C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-icon i {
    font-size: 36px;
    color: var(--white);
}

.quick-contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.quick-contact-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.quick-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.quick-link:hover {
    color: #1565C0;
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.1);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Arama Formu */
.search-box {
    background-color: var(--white);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 100%;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.form-control {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.search-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

/* Ã–ne Ã‡Ä±kan Ä°lanlar Section */
.featured-properties {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: left;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Property Card */
.property-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 2;
}

.favorite-btn:hover {
    background-color: #ff4757;
    color: var(--white);
    transform: scale(1.1);
}

.favorite-btn i {
    font-size: 16px;
    color: #666;
    transition: var(--transition);
}

.favorite-btn:hover i {
    color: var(--white);
}

.property-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.property-info {
    padding: 20px;
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-location {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-location i {
    font-size: 12px;
    color: var(--primary-color);
}

.property-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.property-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.property-area {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hizmetlerimiz Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

/* Ãœcretsiz Emlak DeÄŸerleme Section */
.valuation-section {
    padding: 80px 0;
    background-color: var(--white);
}

.valuation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Sol Taraf - Bilgi */
.valuation-info {
    padding: 30px;
    padding-right: 20px;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(to right, rgba(30, 136, 229, 0.03), transparent);
    box-shadow: 0 0 20px rgba(30, 136, 229, 0.08);
    border-radius: 8px;
}

.valuation-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.valuation-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.valuation-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.valuation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.valuation-features i {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Rozetler */
.valuation-badges {
    display: flex;
    gap: 25px;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 28px;
}

.badge-icon.verified {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-subtitle {
    font-size: 12px;
    color: var(--text-light);
}

/* SaÄŸ Taraf - Form */
.valuation-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.valuation-form .form-group {
    margin-bottom: 20px;
}

.valuation-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: var(--transition);
    outline: none;
    background-color: #fafafa;
}

.form-input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.valuation-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.valuation-submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

/* Yeni Eklenen Ä°lanlar Section */
.new-properties {
    padding: 80px 0;
    background-color: #fafafa;
}

/* Ä°Ã§erik Section */
.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* NasÄ±l Ã‡alÄ±ÅŸÄ±yoruz Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-top: 10px;
    font-weight: 400;
    text-align: left;
}

.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background-color: var(--white);
    padding: 50px 30px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: center;
    transition: var(--transition);
    margin: 0 -10px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 32px;
    font-weight: 400;
    color: #e0e7ed;
    margin-bottom: 25px;
    display: block;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 40px;
    color: #64b5f6;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #7a8a99;
    line-height: 1.6;
    font-weight: 400;
}

.step-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #cbd5e0;
    background-color: var(--white);
    z-index: 2;
}

.step-card:last-child .step-arrow {
    display: none;
}

.step-arrow i {
    display: block;
}

/* BÃ¶lge UzmanlÄ±ÄŸÄ± Section */
.region-section {
    padding: 80px 0;
    background-color: var(--white);
}

.region-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Sol Taraf - Bilgi */
.region-info {
    padding-right: 30px;
}

.region-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.region-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.region-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.region-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-dark);
}

.region-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Hizmet VerdiÄŸimiz BÃ¶lgeler */
.region-service {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.location-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.location-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* SaÄŸ Taraf - Harita */
.region-map {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.region-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Logo ve AÃ§Ä±klama */
.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(236, 240, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer BaÅŸlÄ±klar */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Footer Ä°letiÅŸim */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
}

.footer-bottom strong {
    color: var(--white);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links span {
    color: rgba(236, 240, 241, 0.3);
}

.article-content {
    max-width: 100%;
    margin: 0;
}

.article-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.visible-paragraph {
    margin-bottom: 25px;
}

.hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.hidden-content.show {
    max-height: 5000px;
    transition: max-height 0.8s ease-in;
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 25px 0 0;
    padding: 0 0 5px 0;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-bottom: 1px dashed var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.toggle-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.toggle-btn.active i {
    transform: rotate(180deg);
}

/* Responsive TasarÄ±m */
@media (max-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .featured-properties {
        padding: 60px 0;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .new-properties {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side,
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .article-content p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* HakkÄ±mÄ±zda Responsive */
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .search-btn {
        grid-column: span 3;
    }
    
    .hero {
        max-height: 450px;
        padding: 40px 0 35px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }

    .nav-menu ul {
        gap: 20px;
    }

    .nav-menu ul li a {
        font-size: 14px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .valuation-wrapper {
        gap: 40px;
    }
    
    .valuation-title {
        font-size: 30px;
    }
    
    .valuation-form-container {
        padding: 35px;
    }
    
    .how-steps {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .step-card {
        max-width: calc(50% - 15px);
    }
    
    .step-arrow {
        display: none;
    }
    
    .region-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .region-info {
        padding-right: 0;
    }
    
    .region-title {
        font-size: 30px;
    }
    
    .region-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .properties-grid,
    .listings-content .properties-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Ä°lan Detay Responsive */
    .detail-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-right {
        position: static;
    }
    
    .detail-title {
        font-size: 22px;
    }
    
    .main-image-wrapper {
        height: 350px;
    }
    
    .thumbnail-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .featured-properties {
        padding: 50px 0;
    }
    
    .section-title {
        padding: 0 5px;
    }
    
    .new-properties {
        padding: 50px 0;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .valuation-section {
        padding: 50px 0;
    }
    
    .valuation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .valuation-info {
        padding-right: 0;
    }
    
    .valuation-title {
        font-size: 28px;
    }
    
    .valuation-badges {
        flex-wrap: wrap;
    }
    
    .valuation-form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .how-header {
        margin-bottom: 40px;
    }
    
    .how-steps {
        gap: 20px;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .hero {
        margin-top: 125px;
        min-height: auto;
        max-height: none;
    }
    
    .region-section {
        padding: 50px 0;
    }
    
    .region-title {
        font-size: 26px;
    }
    
    .region-map {
        height: 350px;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .services {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* HakkÄ±mÄ±zda Mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
        border-radius: 10px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .property-image {
        height: 160px;
    }
    
    /* Ä°letiÅŸim Mobile */
    .contact-info-side,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .property-info {
        padding: 15px;
    }
    
    .property-title {
        font-size: 16px;
    }
    
    .property-price {
        font-size: 16px;
    }

    .topbar {
        position: fixed;
        top: 0;
        z-index: 1001;
    }

    .header {
        position: fixed;
        top: 50px;
        margin-top: 0;
        z-index: 1000;
    }

    .topbar-content p {
        font-size: 11px;
    }
    
    .hero {
        margin-top: 125px;
        min-height: auto;
        max-height: none;
        padding: 30px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 108px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 15px 10px;
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .logo-img {
        height: 42px;
    }

    .hero {
        margin-top: 108px;
        min-height: 300px;
        max-height: 400px;
        padding: 35px 0 30px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-btn {
        grid-column: 1;
        width: 100%;
    }
    
    .search-box {
        padding: 15px;
    }

    .hero h1 {
        font-size: 20px;
        margin-bottom: 8px;
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .search-box {
        display: none;
    }
    
    .mobile-search-buttons {
        display: flex;
    }
    
    /* Page Banner Mobile - Gizle */
    .page-banner {
        display: none;
    }
    
    .listings-section {
        margin-top: 103px;
    }
    
    /* Mobil Filtre Butonu */
    .mobile-filter-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--white);
        border: none;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
        cursor: pointer;
        z-index: 1002;
        transition: var(--transition);
    }
    
    .mobile-filter-btn:hover {
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 136, 229, 0.5);
    }
    
    .mobile-filter-btn i {
        font-size: 18px;
    }
    
    /* Filtre Modal Overlay */
    .filter-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1002;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .filter-modal-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Mobilde Sidebar Modal Olarak GÃ¶ster */
    .listings-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        z-index: 1003;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .listings-sidebar.active {
        right: 0;
    }
    
    /* Modal Kapatma Butonu */
    .listings-sidebar::before {
        content: 'âœ•';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: var(--text-dark);
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        border-radius: 50%;
        z-index: 10;
    }
    
    .listings-wrapper {
        flex-direction: column;
    }
    
    .listings-content {
        width: 100%;
    }
    
    /* FAQ Mobil */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-column {
        gap: 12px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .properties-grid,
    .listings-content .properties-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Ä°lan Detay Mobile */
    .breadcrumb-nav {
        font-size: 12px;
    }
    
    .detail-title {
        font-size: 18px;
    }
    
    .main-image-wrapper {
        height: 250px;
    }
    
    .thumbnail-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        font-size: 14px;
        padding: 14px 12px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .agent-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .featured-properties {
        padding: 40px 0;
    }
    
    .new-properties {
        padding: 40px 0;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .valuation-section {
        padding: 40px 0;
    }
    
    .valuation-title {
        font-size: 24px;
    }
    
    .valuation-description {
        font-size: 14px;
    }
    
    .valuation-features li {
        font-size: 14px;
    }
    
    .badge-icon {
        width: 55px;
        height: 55px;
    }
    
    /* Page Banner KÃ¼Ã§Ã¼k Ekran - Gizli Kalacak */
    .page-banner {
        display: none;
    }
    
    /* Mobil Filtre Butonu KÃ¼Ã§Ã¼k Ekran */
    .mobile-filter-btn {
        padding: 12px 24px;
        font-size: 15px;
        bottom: 15px;
    }
    
    .listings-sidebar {
        width: 90%;
        max-width: 100%;
    }
    
    .badge-icon i {
        font-size: 24px;
    }
    
    /* FAQ KÃ¼Ã§Ã¼k Mobil */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .valuation-form-container {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 30px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .region-section {
        padding: 40px 0;
    }
    
    .region-title {
        font-size: 22px;
    }
    
    .region-description {
        font-size: 14px;
    }
    
    .region-features li {
        font-size: 14px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .region-map {
        height: 300px;
    }
    
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .article-content p {
        font-size: 14px;
        text-align: left;
    }
    
    .toggle-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 38px;
    }

    .hero h1 {
        font-size: 30px;
        padding: 0;
        margin-bottom: 8px;
        line-height: 1.35;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 11px;
        padding: 0;
        line-height: 1.5;
    }
    
    .mobile-search-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-search-btn {
        padding: 12px 20px;
        font-size: 14px;
    }


/* Sayfa Ä°Ã§erik Stilleri */
.page-content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-content-wrapper {
    max-width: 1000px;
    margin: 14px auto;
}

.page-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-article {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.page-article h1,
.page-article h2,
.page-article h3,
.page-article h4,
.page-article h5,
.page-article h6 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-article h1 {
    font-size: 32px;
}

.page-article h2 {
    font-size: 28px;
}

.page-article h3 {
    font-size: 24px;
}

.page-article h4 {
    font-size: 20px;
}

.page-article p {
    margin-bottom: 20px;
}

.page-article ul,
.page-article ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-article li {
    margin-bottom: 10px;
}

.page-article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.page-article a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-article strong {
    font-weight: 600;
    color: var(--text-dark);
}

.page-article blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-light);
}

.page-meta {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    color: var(--text-light);
    font-size: 14px;
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-meta i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 40px 0;
    }

    .page-article {
        font-size: 15px;
    }

    .page-article h1 {
        font-size: 26px;
    }

    .page-article h2 {
        font-size: 22px;
    }

    .page-article h3 {
        font-size: 20px;
    }

    .page-meta {
        flex-direction: column;
        gap: 10px;
    }
}
/* Beðeni Butonu Stilleri */
.begeni-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
}

.begeni-btn:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.begeni-btn.begenildi {
    color: #e74c3c;
}

.begeni-btn i {
    transition: var(--transition);
}

.begeni-sayisi {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* Ýlan kartlarýndaki beðeni butonu */
.property-card .begeni-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.property-card .begeni-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
