/* Modern Emlak Sitesi CSS */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #4a90e2;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --border-color: #e0e6ed;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Screen Reader Only - Erişilebilirlik için görsel olarak gizli ama ekran okuyucular için görünür */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    background-color: #f5f7fa;
    overflow-x: hidden;
}

/* Admin panel container düzenlemesi - fixed sidebar için */
body > .container-fluid {
    overflow: visible;
}

body > .container-fluid > .row {
    align-items: flex-start;
    overflow: visible;
}

body > .container-fluid > .row > .col-md-10 {
    margin-left: 16.666667%;
    width: calc(100% - 16.666667%);
    max-width: calc(100% - 16.666667%);
    box-sizing: border-box;
}

/* Modern Navbar */
.navbar {
    background: white !important;
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
}

.navbar-logo {
    height: var(--logo-height-desktop, 70px);
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        height: var(--logo-height-tablet, 45px);
        max-width: 180px;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        height: var(--logo-height-mobile, 40px);
        max-width: 150px;
    }
}

.navbar-brand i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background: rgba(74, 144, 226, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section - Modern */
/* Hero Section - Tüm sayfalar için */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    position: relative;
    padding: 60px 0 50px;
    margin-bottom: -60px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.85);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Search Filter */
.search-filter-container {
    position: relative;
    z-index: 3;
    margin-top: 30px;
}

.search-filter {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-filter-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-filter-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.search-filter-header p {
    color: #6c757d;
    font-size: 1rem;
}

/* Yeni Filtre Formu Tasarımı */
.search-filter-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-filter-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-filter-group {
    display: flex;
    flex-direction: column;
}

.search-filter-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-filter-group .form-control,
.search-filter-group .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    width: 100%;
}

.search-filter-group .form-control:focus,
.search-filter-group .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.search-filter-btn-group {
    display: flex;
    align-items: flex-end;
}

.search-filter-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.search-filter-btn:active {
    transform: translateY(0);
}

/* İleri Filtreler */
.search-filter-advanced {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.search-filter-advanced-toggle {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.search-filter-advanced-toggle:hover {
    color: #357abd;
}

.search-filter-advanced-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.search-filter-advanced-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.search-filter-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

/* Eski form tasarımı (geriye dönük uyumluluk) */
.search-filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: end;
}

/* Modern Property Cards */
.properties-grid {
    margin-bottom: 60px;
}

/* Emlaklar Sayfası Layout - Sidebar + Ana İçerik */
.emlaklar-page-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 80px;
}

/* Sol Sidebar - Filtreler - Ultra Minimal & Modern */
.filters-sidebar {
    width: 240px;
    min-width: 240px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    padding: 0;
    position: sticky;
    top: 130px;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    border: 1px solid #f0f0f0;
}

.filters-sidebar-header {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
    border-radius: 4px 4px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.filters-sidebar-header h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.filters-sidebar-header i {
    color: #4a90e2;
    font-size: 0.8rem;
}

.filters-sidebar-content {
    padding: 14px;
}

.filters-sidebar .sort-filter-container {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.filters-sidebar .sort-filter-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.filters-sidebar .sort-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filters-sidebar .sort-label i {
    font-size: 0.7rem;
    width: 11px;
    color: #95a5a6;
}

.filters-sidebar .sort-select,
.filters-sidebar .range-input {
    width: 100%;
    padding: 7px 9px;
    font-size: 0.8rem;
    border-radius: 3px;
    border: 1px solid #e0e6ed;
    background: #fafafa;
    transition: all 0.15s ease;
}

.filters-sidebar .sort-select:focus,
.filters-sidebar .range-input:focus {
    border-color: #4a90e2;
    background: white;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.05);
}

.filters-sidebar .range-inputs-simple {
    width: 100%;
    display: flex;
    gap: 6px;
}

.filters-sidebar .range-input {
    flex: 1;
    padding: 7px;
    font-size: 0.8rem;
}

.filters-sidebar .range-separator {
    font-size: 0.75rem;
    padding: 0;
    color: #95a5a6;
    align-self: center;
}

/* Ana İçerik Alanı */
.emlaklar-main-content {
    flex: 1;
    min-width: 0;
}

/* Responsive - Sidebar */
@media (max-width: 992px) {
    .emlaklar-page-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .filters-sidebar {
        width: 100%;
        min-width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        display: none; /* Mobilde sidebar gizle, modal kullan */
    }
    
    .emlaklar-main-content {
        width: 100%;
    }
}

/* Liste Görünümü - Ultra Minimal & Modern & Simetrik */
.properties-list-view {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.properties-list-view .property-card {
    display: flex;
    flex-direction: row;
    height: 200px;
    min-height: 200px;
    border-radius: 8px;
    border: 1px solid #e8ecef;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    background: white;
    overflow: hidden;
}

.properties-list-view .property-card:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
}

.properties-list-view .property-card::before {
    display: none;
}

.properties-list-view .property-card a {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.properties-list-view .property-image-wrapper {
    width: 280px;
    min-width: 280px;
    height: 100%;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    align-self: stretch;
}

.properties-list-view .property-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 16px;
    position: relative;
    overflow: visible;
    min-height: 0;
}

.properties-list-view .property-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #1a1a1a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
}

.properties-list-view .property-location {
    margin: 0 0 6px 0;
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.properties-list-view .property-location i {
    font-size: 0.75rem;
    color: #4a90e2;
    flex-shrink: 0;
}

.properties-list-view .property-location > *:not(i) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.properties-list-view .property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0 0 8px 0;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.35;
    flex: 0 0 auto;
}

.properties-list-view .property-features span {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #6c757d;
    white-space: nowrap;
}

.properties-list-view .property-features i {
    color: #4a90e2;
    font-size: 0.72rem;
    width: 13px;
    text-align: center;
    flex-shrink: 0;
}

.properties-list-view .property-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: auto;
    text-align: right;
    letter-spacing: -0.2px;
    line-height: 1.1;
    flex-shrink: 0;
    padding-top: 4px;
}

.properties-list-view .property-price::after {
    content: ' ₺';
    font-size: 0.95rem;
    font-weight: 600;
}

.properties-list-view .property-status {
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    font-size: 0.72rem;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.properties-list-view .property-viewed-badge {
    bottom: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.properties-list-view .property-viewed-badge i {
    font-size: 0.8rem;
}

/* Liste görünümü için görüldü border ayarı */
.properties-list-view .property-card[data-viewed="true"] {
    border: 3px solid rgba(74, 144, 226, 0.45);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.properties-list-view .property-card[data-viewed="true"]:hover {
    border-color: rgba(74, 144, 226, 0.55);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.2);
}

/* Responsive - Liste görünümü */
@media (max-width: 992px) {
    .properties-list-view .property-card {
        height: 160px;
        min-height: 160px;
    }
    
    .properties-list-view .property-image-wrapper {
        width: 240px;
        min-width: 240px;
        height: 100%;
    }
    
    .properties-list-view .property-info {
        padding: 10px 14px;
    }
    
    .properties-list-view .property-info h3 {
        font-size: 0.9rem;
        line-height: 1.25;
        margin-bottom: 5px;
        max-height: 2.5em;
    }
    
    .properties-list-view .property-location {
        font-size: 0.72rem;
        margin-bottom: 5px;
    }
    
    .properties-list-view .property-features {
        font-size: 0.7rem;
        gap: 7px 9px;
        margin-bottom: 7px;
    }
    
    .properties-list-view .property-price {
        font-size: 1.05rem;
        line-height: 1.05;
    }
    
    .properties-list-view .property-price::after {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .properties-list-view {
        gap: 10px;
    }
    
    .properties-list-view .property-card {
        flex-direction: column;
        height: auto;
        min-height: auto;
        border-radius: 6px;
        overflow: visible;
    }
    
    .properties-list-view .property-card a {
        flex-direction: column;
        height: auto;
    }
    
    .properties-list-view .property-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 180px;
        border-radius: 0;
    }
    
    .properties-list-view .property-info {
        padding: 12px;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .properties-list-view .property-info h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
        display: block !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .properties-list-view .property-location {
        font-size: 0.72rem;
        margin-bottom: 5px;
        display: flex !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .properties-list-view .property-features {
        gap: 6px 8px;
        font-size: 0.7rem;
        margin-bottom: 6px;
        display: flex !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .properties-list-view .property-price {
        text-align: left;
        margin-top: 6px;
        font-size: 1.05rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .properties-list-view .property-price::after {
        font-size: 0.9rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Sıralama Filtresi */
.sort-filter-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
}

.sort-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.sort-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sort-label i {
    color: #4a90e2;
    font-size: 0.9rem;
}

.sort-select {
    padding: 6px 30px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    max-width: 200px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

/* Kategori dropdown biraz daha geniş olabilir */
#category_filter_select {
    min-width: 160px;
    max-width: 220px;
}

.sort-select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.sort-select:hover {
    border-color: #bbb;
    background-color: #fafafa;
}

/* m² Input Alanları - Minimal Tek Satır Tasarım */
.area-range-wrapper {
    min-width: auto;
    max-width: none;
    flex-wrap: nowrap;
}

.range-inputs-simple {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.range-input {
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    width: 65px;
    text-align: center;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.range-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.range-input:hover:not(:focus) {
    border-color: #bbb;
    background-color: #fafafa;
}

.range-input::placeholder {
    color: #999;
    font-size: 0.75rem;
    font-weight: 400;
}

.range-separator {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    user-select: none;
    opacity: 0.6;
    flex-shrink: 0;
}

.range-slider-dual-wrapper {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    --range-min-pos: 0%;
    --range-max-pos: 100%;
}

.range-track-bg {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.range-track-active {
    position: absolute;
    height: 6px;
    background: #4a90e2;
    border-radius: 3px;
    z-index: 2;
    left: var(--range-min-pos, 0%);
    width: calc(var(--range-max-pos, 100%) - var(--range-min-pos, 0%));
    transition: left 0.1s ease, width 0.1s ease;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.range-slider {
    position: absolute;
    width: 100%;
    height: 20px;
    margin: 0;
    padding: 0;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 3;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.range-slider-min {
    z-index: 4;
}

.range-slider-max {
    z-index: 5;
}

/* Thumb'lar tıklanabilir olmalı - EN ÖNEMLİ KISIM */
.range-slider::-webkit-slider-thumb {
    pointer-events: all;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    border: 2px solid #fff;
}

.range-slider::-webkit-slider-thumb:hover {
    background: #357abd;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.range-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: grab;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.range-slider::-moz-range-thumb:hover {
    background: #357abd;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.range-slider::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.2);
}

.range-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    pointer-events: none;
}

.range-slider::-moz-range-track {
    height: 6px;
    background: transparent;
    pointer-events: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    background: #357abd;
    transform: scale(1.1);
}

.range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.range-slider::-moz-range-thumb:hover {
    background: #357abd;
    transform: scale(1.1);
}

.range-slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
}

.range-slider::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
}


.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    margin-top: -5px;
}

.range-label-min,
.range-label-max {
    font-weight: 500;
}

@media (max-width: 768px) {
    .area-range-wrapper {
        min-width: 100%;
        max-width: 100%;
    }
    
    .range-input {
        width: 60px;
        font-size: 0.75rem;
    }
}

/* Loading Spinner */
.fa-spinner {
    color: #4a90e2;
}

.text-center.py-5 {
    padding: 3rem 0;
}

/* Mobil Filtre Modal */
.filter-toggle-btn {
    display: none;
}

.filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
}

.filter-modal.active {
    display: block !important;
    pointer-events: auto;
}

.filter-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-modal.active .filter-modal-backdrop {
    opacity: 1;
}

.filter-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    box-sizing: border-box;
}

.filter-modal.active .filter-modal-content {
    transform: translateY(0);
}

.filter-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    background: white;
}

.filter-modal-header h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.filter-modal-close {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-size: 0.95rem;
    padding: 0;
}

.filter-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.filter-modal-close:active {
    transform: scale(0.95);
}

.filter-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    background: white;
    position: relative;
}

.filter-step {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.filter-step.active {
    max-height: 500px;
    padding: 20px;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.filter-step.completed {
    opacity: 0.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-step-content .sort-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.filter-step-content .sort-label i {
    color: #4a90e2;
    font-size: 0.7rem;
    width: 13px;
    text-align: center;
    flex-shrink: 0;
}

.filter-step-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    color: #1a1a1a;
    transition: all 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
    line-height: 1.3;
}

.filter-step-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    background-size: 8px;
    padding-right: 28px;
}

.filter-step-select:focus {
    outline: none;
    border-color: #4a90e2;
    background-color: white;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.filter-step-content .sort-filter-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-modal-footer {
    padding: 10px 20px;
    border-top: 1px solid #f0f0f0;
    background: white;
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-nav-btn {
    flex: 1;
    padding: 10px;
    background: #f5f5f5;
    color: #333;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.15s ease;
    line-height: 1.3;
}

.filter-nav-btn:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

.filter-nav-btn:active {
    transform: translateY(0);
}

.filter-nav-btn i {
    font-size: 0.8rem;
}

.filter-apply-btn {
    flex: 1;
}

.filter-apply-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.15s ease;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.filter-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(74, 144, 226, 0.25);
}

.filter-apply-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.filter-apply-btn i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .filter-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
        transition: all 0.2s ease;
    }
    
    .filter-toggle-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
    }
    
    .filter-toggle-btn:active {
        transform: translateY(0);
    }
    
    .desktop-filters {
        display: none !important;
    }
    
    .filter-modal-body .sort-filter-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
    }
    
    .filter-modal-body .sort-filter-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 10px 20px;
        background: transparent;
        border: none;
        box-shadow: none;
        border-bottom: 1px solid #f5f5f5;
        margin: 0;
    }
    
    .filter-modal-body .sort-filter-wrapper:last-of-type {
        border-bottom: none;
    }
    
    .filter-modal-body .sort-label {
        font-size: 0.65rem;
        font-weight: 600;
        color: #666;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 5px;
        letter-spacing: -0.01em;
        text-transform: uppercase;
    }
    
    .filter-modal-body .sort-label i {
        color: #4a90e2;
        font-size: 0.7rem;
        width: 13px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .filter-modal-body .sort-select,
    .filter-modal-body .range-input {
        width: 100%;
        padding: 9px 12px;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 5px;
        border: 1px solid #e0e0e0;
        background-color: #fafafa;
        color: #1a1a1a;
        transition: all 0.15s ease;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        box-sizing: border-box;
        line-height: 1.3;
    }
    
    .filter-modal-body .sort-select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 11px center;
        background-size: 8px;
        padding-right: 28px;
    }
    
    .filter-modal-body .sort-select:focus,
    .filter-modal-body .range-input:focus {
        outline: none;
        border-color: #4a90e2;
        background-color: white;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
    }
    
    .filter-modal-body .sort-select:hover,
    .filter-modal-body .range-input:hover {
        border-color: #d0d0d0;
        background-color: #f8f8f8;
    }
    
    .filter-modal-body .range-inputs-simple {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 6px;
        box-sizing: border-box;
    }
    
    .filter-modal-body .range-input {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .filter-modal-body .range-separator {
        color: #999;
        font-weight: 500;
        font-size: 0.8rem;
        flex-shrink: 0;
        padding: 0 1px;
    }
    
    .filter-modal-body .area-range-wrapper {
        margin: 0;
    }
}

.property-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #f0f0f0;
}

.property-card::before {
    display: none;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.property-card:hover::before {
    display: none;
}

.property-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    background: #f8f9fa;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.property-card:hover .property-image {
    opacity: 0.95;
}

.property-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
}

@media (max-width: 768px) {
    .property-image-placeholder {
        font-size: 0.9rem;
    }
    
    .property-image-placeholder i {
        font-size: 2rem !important;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .property-image-placeholder {
        font-size: 0.75rem;
    }
    
    .property-image-placeholder i {
        font-size: 1.5rem !important;
        margin-bottom: 5px;
    }
}

.property-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.property-status.satilik {
    background: var(--danger-color);
    color: white;
}

.property-status.devren-satilik {
    background: #c0392b;
    color: white;
}

.property-status.kiralik {
    background: var(--success-color);
    color: white;
}

.property-status.devren-kiralik {
    background: #229954;
    color: white;
}

/* Görüldü Badge - Minimal Icon (Sağ Alt Köşe) */
.property-viewed-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.25);
    pointer-events: none;
    background: rgba(74, 144, 226, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.property-viewed-badge.show {
    display: flex !important;
}

.property-viewed-badge i {
    font-size: 0.85rem;
    color: white;
}

/* Görüldü ilanlar için hafif border ve glow efekti */
.property-card[data-viewed="true"] {
    border: 2px solid rgba(74, 144, 226, 0.4);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.12);
    transition: all 0.2s ease;
}

.property-card[data-viewed="true"]:hover {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.property-card[data-viewed="true"] .property-image-wrapper::after {
    display: none;
}

/* Mobil için görüldü badge ayarları */
@media (max-width: 768px) {
    .property-viewed-badge {
        width: 28px;
        height: 28px;
        bottom: 10px;
        right: 10px;
    }
    
    .property-viewed-badge i {
        font-size: 0.75rem;
    }
    
    .property-card[data-viewed="true"] {
        border-width: 2.5px;
    }
}

@media (max-width: 576px) {
    .property-viewed-badge {
        width: 26px;
        height: 26px;
        bottom: 8px;
        right: 8px;
    }
    
    .property-viewed-badge i {
        font-size: 0.7rem;
    }
}

.property-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: white;
}

.property-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.4;
    min-height: 3.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    color: #6c757d;
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location i {
    color: #95a5a6;
    font-size: 0.85rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 400;
}

.property-features i {
    color: #95a5a6;
    font-size: 0.85rem;
}

.property-price {
    margin-top: auto;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.property-price::after {
    content: ' ₺';
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive - Property Cards (Grid View) */
@media (max-width: 992px) {
    .property-image-wrapper {
        height: 220px;
    }
    
    .property-info {
        padding: 14px;
    }
    
    .property-info h3 {
        font-size: 1rem;
        min-height: 2.8em;
    }
    
    .property-location {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .property-features {
        gap: 10px;
        margin-bottom: 10px;
        padding-top: 10px;
    }
    
    .property-features span {
        font-size: 0.75rem;
    }
    
    .property-price {
        font-size: 1.1rem;
        padding-top: 10px;
    }
    
    .property-status {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .property-image-wrapper {
        height: 200px;
    }
    
    .property-info {
        padding: 12px;
    }
    
    .property-info h3 {
        font-size: 0.95rem;
        min-height: 2.6em;
        margin-bottom: 6px;
    }
    
    .property-location {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .property-features {
        gap: 8px;
        margin-bottom: 8px;
        padding-top: 8px;
    }
    
    .property-features span {
        font-size: 0.7rem;
    }
    
    .property-price {
        font-size: 1rem;
        padding-top: 8px;
    }
    
    .property-status {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .property-image-wrapper {
        height: 180px;
    }
    
    .property-info {
        padding: 10px;
    }
    
    .property-info h3 {
        font-size: 0.9rem;
        min-height: 2.4em;
        margin-bottom: 5px;
    }
    
    .property-location {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    
    .property-features {
        gap: 6px;
        margin-bottom: 6px;
        padding-top: 6px;
    }
    
    .property-features span {
        font-size: 0.65rem;
    }
    
    .property-price {
        font-size: 0.95rem;
        padding-top: 6px;
    }
    
    .property-status {
        top: 6px;
        right: 6px;
        padding: 3px 8px;
        font-size: 0.6rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer - Modern Design */
.footer-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    color: white;
    padding: 50px 0 25px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.footer-modern .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a i {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    margin: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-contact a i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact a:hover i {
    opacity: 1;
    transform: scale(1.15);
}

.footer-contact a i.fa-whatsapp {
    color: #25D366;
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 8px 0;
}

.footer-address i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    opacity: 0.9;
    margin-top: 2px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-address span {
    flex: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Footer Responsive - Mobile First */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        grid-column: 1;
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-brand-title {
        font-size: 0.85rem;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 12px;
    }
    
    .footer-brand-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .footer-brand-desc {
        font-size: 0.9rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section-title {
        font-size: 0.85rem;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 12px;
    }
    
    .footer-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .footer-links {
        align-items: center;
        gap: 10px;
    }
    
    .footer-links a {
        justify-content: center;
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
    
    .footer-contact {
        align-items: center;
        gap: 12px;
    }
    
    .footer-contact a {
        justify-content: center;
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .footer-contact a:hover {
        transform: translateY(-2px);
    }
    
    .footer-address {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .footer-address i {
        margin-top: 0;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-modern {
        padding: 35px 0 18px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-brand-title {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .footer-brand-desc {
        font-size: 0.9rem;
    }
    
    .footer-section-title {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .footer-links a,
    .footer-contact a {
        font-size: 0.9rem;
    }
    
    .footer-address {
        font-size: 0.9rem;
    }
    
    .footer-copyright p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .search-filter-form {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 35px;
        margin-bottom: -40px;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .search-filter-container {
        margin-top: 25px;
    }
    
    .search-filter {
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 40px;
    }
    
    .search-filter-header h2 {
        font-size: 1.5rem;
    }
    
    .search-filter-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .search-filter-btn {
        width: 100%;
        padding: 14px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .property-image-wrapper {
        height: 180px;
    }
    
    .property-info {
        padding: 15px;
    }
    
    .property-info h3 {
        font-size: 1rem;
        min-height: auto;
        margin-bottom: 8px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.3;
    }
    
    .property-location {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .property-features {
        gap: 10px;
        margin-bottom: 12px;
        padding-top: 12px;
    }
    
    .property-features span {
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .property-features i {
        font-size: 0.9rem;
    }
    
    .property-price {
        font-size: 1.1rem;
        padding-top: 12px;
    }
    
    .property-price::after {
        font-size: 0.85rem;
    }
    
    .property-status {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 35px 0 30px;
        margin-bottom: -35px;
    }
    
    .hero-content {
        margin-bottom: 25px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .search-filter-container {
        margin-top: 20px;
    }
    
    .search-filter {
        padding: 20px 15px;
        margin-bottom: 35px;
    }
    
    .property-image-wrapper {
        height: 160px;
    }
    
    .property-info {
        padding: 12px;
    }
    
    .property-info h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.2;
    }
    
    .property-location {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .property-location i {
        font-size: 0.8rem;
    }
    
    .property-features {
        gap: 8px;
        margin-bottom: 10px;
        padding-top: 10px;
    }
    
    .property-features span {
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .property-features i {
        font-size: 0.8rem;
    }
    
    .property-price {
        font-size: 0.95rem;
        padding-top: 10px;
    }
    
    .property-price::after {
        font-size: 0.8rem;
    }
    
    .property-status {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .row.g-3 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    .property-card {
        border-radius: 15px;
    }
}

/* ============================================
   SAHIBINDEN.COM BENZERİ TASARIM
   ============================================ */

/* Property Title Section */
.property-title-section {
    background: white;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.property-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Action Bar (Desktop Only - Sahibinden.com Style) */
.property-action-bar-desktop {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    display: none; /* Mobilde gizli */
}

.action-bar-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-bar-print {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-bar-print:hover {
    border-color: #ccc;
    background: #fafafa;
    color: #333;
}

.action-bar-print i {
    font-size: 0.95rem;
}

.action-bar-share-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
}

.action-bar-share-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.action-bar-share {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.action-bar-share a {
    min-width: auto;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    background: white;
    font-size: 0.875rem;
    white-space: nowrap;
}

.action-bar-share a:hover {
    border-color: #2271b1;
    color: #2271b1;
    background: #f0f7ff;
}

.action-bar-share a i {
    font-size: 0.95rem;
}

.action-bar-share a span {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
}

/* WhatsApp özel renk */
.action-bar-share a[href*="whatsapp"]:hover {
    border-color: #25D366;
    color: #25D366;
    background: #f0fff4;
}

/* Facebook özel renk */
.action-bar-share a[href*="facebook"]:hover {
    border-color: #1877F2;
    color: #1877F2;
    background: #f0f4ff;
}

/* Twitter özel renk */
.action-bar-share a[href*="twitter"]:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
    background: #f0f8ff;
}

/* LinkedIn özel renk */
.action-bar-share a[href*="linkedin"]:hover {
    border-color: #0077B5;
    color: #0077B5;
    background: #f0f7ff;
}

/* Instagram özel renk */
.action-bar-share a[href*="instagram"]:hover,
.action-bar-share a[onclick*="copyToClipboard"]:hover {
    border-color: #E4405F;
    color: #E4405F;
    background: #fff0f3;
}

/* E-posta özel renk */
.action-bar-share a[href^="mailto"]:hover {
    border-color: #34A853;
    color: #34A853;
    background: #f0fff4;
}

/* Main Container - 3 Column Layout */
.property-detail-sahibinden {
    margin-top: 20px;
}

.property-image-column {
    padding-right: 15px;
}

.property-info-column {
    padding-left: 20px;
    padding-right: 20px;
}

.property-sidebar-column {
    padding-left: 15px;
}

/* Left Column: Main Image Slider */
.property-image-slider {
    width: 100%;
    margin-bottom: 15px;
}

.slider-container {
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.slider-container:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-image-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

.slider-fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
    font-size: 1.1rem;
}

.slider-nav:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

/* Slider Thumbnails */
.slider-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.slider-thumb {
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: #f5f5f5;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.slider-thumb:hover {
    opacity: 0.8;
    border-color: var(--secondary-color);
}

.slider-thumb.active {
    border-color: var(--secondary-color);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-image-placeholder-sahibinden {
    width: 100%;
    min-height: 400px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.property-image-placeholder-sahibinden i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Middle Column: Price & Info */
.property-price-section {
    margin-bottom: 25px;
}

.property-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-price-large i {
    font-size: 1rem;
    color: #999;
}

.property-location-info {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location-info i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Action Buttons - Minimal Design */
.property-action-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.action-btn-print {
    padding: 10px 18px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.action-btn-print:hover {
    border-color: #ccc;
    color: #333;
    background: #fafafa;
}

.action-btn-print i {
    font-size: 0.9rem;
    color: #999;
}

.action-btn-share {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.action-btn-share a {
    width: 38px;
    height: 38px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    transition: all 0.2s ease;
    background: white;
}

.action-btn-share a:hover {
    border-color: #ccc;
    color: #666;
    background: #fafafa;
}

.action-btn-share a i {
    font-size: 0.95rem;
}

/* Property Specs Table (Sahibinden.com Style) */
.property-specs-table {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label-cell {
    padding: 12px 15px;
    background: #f9f9f9;
    font-weight: 600;
    color: #333;
    width: 45%;
    font-size: 0.9rem;
}

.spec-value-cell {
    padding: 12px 15px;
    color: #666;
    font-size: 0.9rem;
}

/* Right Column: Sidebar */
.property-sidebar-card-sahibinden {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
}

.seller-info {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.seller-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.seller-account-date {
    font-size: 0.85rem;
    color: #999;
}

.contact-phone {
    margin-bottom: 15px;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
}

.phone-number:hover {
    text-decoration: underline;
}

.btn-message-send {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-message-send:hover {
    background: var(--primary-color);
    color: white;
}

.btn-message-send i {
    margin-right: 6px;
}

/* Security Tips Card */
.security-tips-card {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

.security-icon {
    color: #1976d2;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.security-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 8px;
}

.security-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.security-link {
    color: #1976d2;
    text-decoration: underline;
}

.security-link:hover {
    color: #0d47a1;
}

/* WhatsApp Sidebar Button */
.whatsapp-sidebar-card {
    margin-bottom: 15px;
}

.btn-whatsapp-full {
    display: block;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-whatsapp-full:hover {
    background: #1DA851;
    color: white;
}

.btn-whatsapp-full i {
    margin-right: 6px;
    font-size: 1.1rem;
}

/* Full Width Sections */
.property-description-section,
.property-contact-form-section,
.similar-properties-section {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 25px;
    margin-top: 30px;
}

/* Desktop: Sahibinden.com Style Other Details */
.classifiedOtherDetails {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
    margin-top: 30px;
}

.property-other-details-desktop {
    display: block;
}

.other-detail-section {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.other-detail-section:last-child {
    border-bottom: none;
}

.other-detail-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.property-specs-table-desktop {
    margin-top: 0;
}

.property-specs-table-desktop .specs-table {
    width: 100%;
}

.property-specs-table-desktop .spec-label-cell {
    width: 40%;
    padding: 12px 15px;
    background: #f8f9fa;
    font-weight: 500;
    color: #666;
    border-bottom: 1px solid #eee;
}

.property-specs-table-desktop .spec-value-cell {
    width: 60%;
    padding: 12px 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.property-specs-table-desktop .spec-value-cell.price-cell {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.property-specs-table-desktop .spec-value-cell.listing-no {
    color: #c0392b;
    font-weight: 600;
}

.property-specs-table-desktop-wrapper {
    display: none; /* Desktop'ta classifiedOtherDetails içinde gösterilecek */
}

/* Açıklama - Mobile/Desktop Visibility */
.property-description-mobile {
    display: block !important;
    margin-top: 20px;
    margin-bottom: 0;
}

.property-description-desktop {
    display: none !important;
}

/* Mobile Header Bar */
.mobile-header-bar {
    display: none; /* Desktop'ta gizli, mobilde görünür */
    position: sticky;
    top: 0;
    background: var(--secondary-color);
    color: white;
    padding: 12px 15px;
    z-index: 1001; /* Navbar'dan daha yüksek z-index */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

.mobile-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-back-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 36px;
    height: 36px;
}

.mobile-back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-2px);
}

.mobile-back-btn:active {
    transform: translateX(-2px) scale(0.95);
}

.mobile-home-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 36px;
    height: 36px;
    position: relative;
}

.mobile-home-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
}

.mobile-home-btn:active {
    transform: translateY(-1px) scale(0.95);
}

.mobile-home-btn i {
    position: relative;
    z-index: 1;
}

/* Mobile Share Dropdown */
.mobile-share-dropdown {
    position: relative;
}

.mobile-share-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.mobile-share-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-share-btn i {
    font-size: 0.95rem;
}

.mobile-share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.mobile-share-menu.active {
    display: block;
}

.mobile-share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-share-option:hover {
    background: #f5f5f5;
}

.mobile-share-option i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-share-option i.fa-facebook-f {
    color: #1877f2;
}

.mobile-share-option i.fa-twitter {
    color: #1da1f2;
}

.mobile-share-option i.fa-linkedin-in {
    color: #0077b5;
}

.mobile-share-option i.fa-instagram {
    color: #e4405f;
}

.mobile-share-option i.fa-whatsapp {
    color: #25D366;
}

.mobile-share-option i.fa-link {
    color: #666;
}

.mobile-share-option i.fa-envelope {
    color: #666;
}

.mobile-share-option i.fa-print {
    color: #666;
}

.mobile-header-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
    color: white;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
}

.mobile-header-actions {
    display: flex;
    gap: 10px;
}

/* Mobile Agency Info */
.mobile-agency-info {
    display: none; /* Desktop'ta gizli, mobilde görünür */
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-agency-info .agency-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.mobile-agency-info .agency-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.agency-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.agency-badge.premium {
    background: #f0f0f0;
    color: #666;
}

.agency-badge.year {
    background: #ffc107;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Breadcrumb */
.mobile-breadcrumb {
    display: none; /* Desktop'ta gizli, mobilde görünür */
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    padding: 0 15px;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mobile-breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.mobile-breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.mobile-breadcrumb span {
    color: #666;
    font-weight: 500;
}

.mobile-breadcrumb i {
    font-size: 0.7rem;
    color: #999;
    flex-shrink: 0;
}

/* Mobile Location Info */
.mobile-location-info {
    display: none; /* Desktop'ta gizli, mobilde görünür */
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Mobile Tabs */
.mobile-tabs {
    display: none; /* Desktop'ta gizli, mobilde görünür */
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    gap: 0;
}

.mobile-tab {
    flex: 1;
    padding: 12px 8px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-tab.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
}

.mobile-tab-content {
    display: none; /* Desktop'ta gizli, mobilde görünür */
}

/* Mobile Action Buttons */
.mobile-action-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    gap: 10px;
}

.mobile-call-btn,
.mobile-message-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.mobile-call-btn {
    background: var(--secondary-color);
    color: white;
}

.mobile-call-btn:hover {
    background: #357abd;
    color: white;
}

.mobile-message-btn {
    background: #f0f0f0;
    color: #333;
}

.mobile-message-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.mobile-action-buttons i {
    font-size: 1.1rem;
}

/* Mobile Specific Styles - Only for property detail page */
@media (max-width: 768px) {
    .mobile-header-bar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Hide desktop navbar on mobile - only for property detail page */
    body.property-detail-page .navbar {
        display: none;
    }
    
    .property-title-section {
        padding: 15px 0;
        background: white;
        border-bottom: 1px solid #eee;
    }
    
    .property-title-section .property-main-title {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        padding: 0 15px;
    }
    
    .mobile-agency-info,
    .mobile-breadcrumb,
    .mobile-location-info,
    .mobile-tabs,
    .mobile-action-buttons {
        display: flex;
    }
    
    .property-price-section {
        display: none;
    }
    
    .property-action-bar-desktop {
        display: none;
    }
    
    .property-info-column {
        padding: 0 15px;
    }
    
    .property-image-column {
        padding: 0;
        margin-bottom: 0;
    }
    
    .property-sidebar-column {
        display: none;
    }
    
    .property-detail-sahibinden {
        margin-top: 0;
        padding-bottom: 80px; /* Space for fixed action buttons */
    }
    
    .property-specs-table {
        margin-bottom: 0;
        border: none;
        background: transparent;
        padding: 0;
    }
    
    .specs-table {
        width: 100%;
    }
    
    .spec-label-cell {
        padding: 10px 0;
        background: transparent;
        font-size: 0.9rem;
        color: #666;
        width: 50%;
    }
    
    .spec-value-cell {
        padding: 10px 0;
        font-size: 0.9rem;
        color: #333;
        text-align: right;
    }
    
    .spec-value-cell.price-cell {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 1rem;
    }
    
    .spec-value-cell.listing-no {
        color: #c0392b;
        font-weight: 600;
    }
    
    .property-description-mobile {
        padding: 0;
        border: none;
        background: transparent;
        margin-top: 0;
    }
    
    .property-description-desktop {
        display: none !important;
    }
    
    .property-contact-form-section {
        display: none;
    }
    
    .property-other-details-desktop {
        display: none !important; /* Mobilde gösterilmez */
    }

    /* Mobile Contact Form */
    .property-contact-form-mobile {
        padding: 20px 15px;
        background: white;
        border-radius: 8px;
        margin-top: 15px;
    }

    .contact-form-title-mobile {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--secondary-color);
    }

    .property-contact-form-mobile .form-row-sahibinden {
        grid-template-columns: 1fr;
    }

    .property-contact-form-mobile .form-group-sahibinden {
        margin-bottom: 15px;
    }

    .property-contact-form-mobile .form-input-sahibinden {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 0.95rem;
    }

    .property-contact-form-mobile .form-textarea-sahibinden {
        resize: vertical;
        min-height: 120px;
    }

    .property-contact-form-mobile .btn-submit-sahibinden {
        width: 100%;
        padding: 14px;
        background: var(--secondary-color);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .property-contact-form-mobile .btn-submit-sahibinden:hover {
        background: var(--primary-color);
    }
    
    /* Mobile slider adjustments */
    .slider-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .slider-thumbnails {
        display: none; /* Hide thumbnails on mobile */
    }
    
    /* Mobile tab content styling */
    .mobile-tab-content {
        display: block; /* Mobilde görünür */
        padding: 0;
    }
    
    .mobile-tab-content.active {
        display: block;
    }
    
    .property-location-section {
        padding: 15px 0;
    }
    
    .property-location-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.section-title-large {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.property-description-content {
    line-height: 1.8;
    color: #555;
}

.property-description-text {
    font-size: 0.95rem;
    white-space: pre-wrap;
    margin: 0;
}

/* Full Gallery Grid */
/* Contact Form */
.contact-form-sahibinden {
    margin-top: 20px;
}

.form-row-sahibinden {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group-sahibinden {
    margin-bottom: 15px;
}

.form-input-sahibinden {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-input-sahibinden:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-textarea-sahibinden {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-sahibinden {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit-sahibinden:hover {
    background: var(--primary-color);
}

/* Similar Properties */
.similar-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.similar-property-card-sahibinden {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s;
    display: block;
}

.similar-property-card-sahibinden:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.similar-property-image-sahibinden {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
}

.similar-property-image-sahibinden img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-property-placeholder-sahibinden {
    width: 100%;
    aspect-ratio: 16/10;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
}

.similar-property-info-sahibinden {
    padding: 15px;
}

.similar-property-info-sahibinden h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.similar-property-price-sahibinden {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Fullscreen Lightbox Slider */
.fullscreen-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.fullscreen-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px 100px;
}

.lightbox-slide.active {
    opacity: 1;
    z-index: 1;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
    left: 20px;
}

.lightbox-next-btn {
    right: 20px;
}

.lightbox-counter-fullscreen {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10001;
}

/* Desktop - Açıklama görünürlüğü */
@media (min-width: 993px) {
    .property-description-mobile {
        display: none !important;
    }
    
    .property-description-desktop {
        display: none !important; /* Artık classifiedOtherDetails içinde gösteriliyor */
    }
    
    .property-other-details-desktop {
        display: block !important;
    }
    
    .property-specs-table-desktop-wrapper {
        display: none !important; /* Desktop'ta classifiedOtherDetails içinde gösteriliyor */
    }
    
    /* Desktop'ta mobil elementleri gizle */
    .mobile-header-bar,
    .mobile-agency-info,
    .mobile-breadcrumb,
    .mobile-location-info,
    .mobile-tabs,
    .mobile-tab-content,
    .mobile-action-buttons {
        display: none !important;
    }
    
    /* Desktop'ta desktop elementlerini göster */
    .property-price-section {
        display: block !important;
    }
    
    .property-action-bar-desktop {
        display: block !important;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .property-image-column {
        padding-right: 15px;
        margin-bottom: 20px;
    }
    
    .property-info-column {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 20px;
    }
    
    .property-sidebar-column {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 20px;
    }
    
    .form-row-sahibinden {
        grid-template-columns: 1fr;
    }
    
    .property-price-large {
        font-size: 1.75rem;
    }
    
    .slider-container {
        aspect-ratio: 16 / 9;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
    
    .lightbox-slide {
        padding: 40px 60px;
    }
    
    .lightbox-close-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev-btn {
        left: 15px;
    }
    
    .lightbox-next-btn {
        right: 15px;
    }
    
    .lightbox-counter-fullscreen {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .property-main-title {
        font-size: 1.25rem;
    }
    
    .property-price-large {
        font-size: 1.5rem;
    }
    
    .property-action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn-print {
        width: 100%;
        justify-content: center;
    }
    
    .action-btn-share {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .similar-properties-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        aspect-ratio: 16 / 10;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slider-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 6px;
    }
    
    .property-image-number {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .slider-counter {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .slider-fullscreen-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 8px;
        right: 8px;
    }
    
    .lightbox-slide {
        padding: 20px 15px;
    }
    
    .lightbox-close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev-btn {
        left: 10px;
    }
    
    .lightbox-next-btn {
        right: 10px;
    }
    
    .lightbox-counter-fullscreen {
        bottom: 15px;
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

/* Property Detail Styles - Modern & Minimal */
.property-header-modern {
    background: white;
    padding: 40px 0 30px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.property-header-content {
    max-width: 100%;
}

.property-header-main {
    max-width: 900px;
}

.property-status-minimal {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.property-status-minimal.satilik {
    background: #fee;
    color: #c0392b;
}

.property-status-minimal.devren-satilik {
    background: #fee;
    color: #a93226;
}

.property-status-minimal.kiralik {
    background: #eafaf1;
    color: #229954;
}

.property-status-minimal.devren-kiralik {
    background: #eafaf1;
    color: #1e8449;
}

.property-title-modern {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.3;
}

.property-location-modern {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-location-modern i {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.property-price-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

/* Property Main Image - Minimal & High Quality */
.property-main-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 16 / 9;
    position: relative;
}

.property-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-image-placeholder-modern {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    margin-bottom: 40px;
}

.property-image-placeholder-modern i {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.property-image-placeholder-modern span {
    font-size: 1rem;
    font-weight: 500;
    color: #868e96;
}

.property-detail-container {
    position: relative;
}

.property-specs-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.spec-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
    border-color: var(--secondary-color);
    background: white;
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.spec-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.spec-card:hover .spec-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.spec-card:hover .spec-icon::after {
    width: 100px;
    height: 100px;
}

.spec-content {
    flex: 1;
    width: 100%;
}

.spec-label {
    font-size: 0.75rem;
    color: #868e96;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.spec-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.spec-card:hover .spec-value {
    color: var(--secondary-color);
}

.property-content-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.section-content {
    line-height: 1.8;
}

.property-description {
    font-size: 1.05rem;
    color: var(--dark-text);
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Property Detail Gallery - Modern */
.property-gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.gallery-item-modern {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-modern:hover .gallery-thumbnail {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid white;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid white;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsive Gallery */
/* Responsive Property Detail */
@media (max-width: 992px) {
    .property-header-modern {
        padding: 35px 0 25px;
    }
    
    .property-title-modern {
        font-size: 1.75rem;
    }
    
    .property-price-modern {
        font-size: 1.6rem;
    }
    
    .property-main-image-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
    
    .property-specs-modern {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
        padding: 25px;
    }
    
    .spec-card {
        padding: 24px 16px;
    }
    
    .spec-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .spec-value {
        font-size: 1.2rem;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .property-header-modern {
        padding: 30px 0 20px;
        margin-bottom: 25px;
    }
    
    .property-title-modern {
        font-size: 1.5rem;
    }
    
    .property-price-modern {
        font-size: 1.4rem;
    }
    
    .property-location-modern {
        font-size: 0.95rem;
    }
    
    .property-main-image-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        border-radius: 0;
        margin-bottom: 30px;
    }
    
    .property-image-placeholder-modern {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        border-radius: 0;
    }
    
    .property-specs-modern {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 14px;
    }
    
    .spec-card {
        padding: 20px 14px;
    }
    
    .spec-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .spec-value {
        font-size: 1.1rem;
    }
    
    .spec-label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .property-content-section {
        padding: 25px;
    }
    
    .property-contact-form {
        padding: 25px;
    }
    
    .property-gallery-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .property-sidebar-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .property-header-modern {
        padding: 25px 0 20px;
    }
    
    .property-title-modern {
        font-size: 1.35rem;
    }
    
    .property-price-modern {
        font-size: 1.3rem;
    }
    
    .property-specs-modern {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
    
    .spec-card {
        padding: 24px 20px;
    }
    
    .spec-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .property-gallery-modern {
        grid-template-columns: 1fr;
    }
}


/* Modern Contact Form */
.property-contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.modern-form {
    margin-top: 30px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modern {
    margin-bottom: 0;
}

.form-input-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark-text);
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-input-modern:focus {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-textarea-modern {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-modern {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.btn-submit-modern i {
    font-size: 1rem;
}

/* Property Sidebar */
.property-sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

/* Similar Properties */
.similar-properties {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.similar-property-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.similar-property-card:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
    text-decoration: none;
    color: inherit;
}

.similar-property-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0e6ed;
}

.similar-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-property-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.similar-property-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.similar-property-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.similar-property-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Pagination */
.pagination {
    margin-top: 50px;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Admin Panel - Professional Sidebar */
.admin-sidebar {
    background: linear-gradient(180deg, #1e3a5f 0%, #2a4a6f 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 16.666667%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar for Sidebar */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sidebar Header */
.admin-sidebar-header {
    padding: 18px 16px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.05);
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.admin-sidebar-logo i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    background: rgba(74, 144, 226, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.admin-sidebar-logo span {
    letter-spacing: 0.3px;
}

/* View Site Button */
.admin-view-site-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(74, 144, 226, 0.12);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.15s ease;
    width: 100%;
    justify-content: center;
}

.admin-view-site-btn i {
    font-size: 0.75rem;
    opacity: 0.85;
}

.admin-view-site-btn:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.35);
    color: white;
}

.admin-view-site-btn:hover i {
    opacity: 1;
    color: var(--secondary-color);
}

/* Sidebar Navigation */
.admin-sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.admin-nav-section {
    margin-bottom: 20px;
}

.admin-nav-section-title {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 16px 8px 16px;
    margin-bottom: 6px;
}

.admin-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    transition: all 0.15s ease;
    border-left: 2px solid transparent;
    font-size: 0.85rem;
    position: relative;
}

.admin-nav-link i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
}

.admin-nav-link span {
    flex: 1;
    font-weight: 500;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border-left-color: var(--secondary-color);
}

.admin-nav-link:hover i {
    opacity: 1;
    color: var(--secondary-color);
}

/* Active Link */
.admin-nav-link.active {
    background: rgba(74, 144, 226, 0.12);
    color: white;
    border-left-color: var(--secondary-color);
    font-weight: 600;
}

.admin-nav-link.active i {
    color: var(--secondary-color);
    opacity: 1;
}

.admin-nav-link.active::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    border-radius: 2px 0 0 2px;
}

/* Logout Link */
.admin-sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.05);
}

.admin-nav-link-logout {
    color: rgba(255, 255, 255, 0.65);
}

.admin-nav-link-logout:hover {
    background: rgba(231, 76, 60, 0.12);
    border-left-color: var(--danger-color);
    color: #ff6b6b;
}

.admin-nav-link-logout:hover i {
    color: #ff6b6b;
}

.admin-content {
    padding: 15px 20px;
    background: #f5f7fa;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

.admin-content .row {
    margin-left: -10px;
    margin-right: -10px;
}

.admin-content .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* Admin Dashboard Minimal Styles */
.admin-dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.admin-dashboard-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.admin-dashboard-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.admin-dashboard-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

.admin-dashboard-section {
    margin-top: 40px;
}

.dashboard-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 25px 0;
    letter-spacing: -0.2px;
}

/* Quick Actions Groups */
.quick-actions-group {
    margin-bottom: 30px;
}

.quick-actions-group:last-child {
    margin-bottom: 0;
}

.quick-actions-group-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-actions-group-title i {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Admin Stats Grid - Minimal & Professional */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.admin-stat-card {
    background: white;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    border: 1px solid #e5e7eb;
}

.admin-stat-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.stat-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-icon-primary {
    background: var(--primary-color);
}

.stat-icon-warning {
    background: #f59e0b;
}

.stat-icon-info {
    background: var(--secondary-color);
}

.stat-icon-danger {
    background: var(--danger-color);
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 4px;
    font-weight: 400;
}

.stat-link {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 8px;
    display: inline-block;
    transition: color 0.15s ease;
}

.stat-link:hover {
    color: var(--primary-color);
}

.stat-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--danger-color);
    color: white;
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
}

.stat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

/* Quick Actions */
.admin-quick-actions {
    margin-top: 40px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.quick-action-card {
    background: white;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    position: relative;
    border: 1px solid var(--border-color);
}

.quick-action-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

.quick-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.icon-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
}

.icon-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
}

.icon-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
}

.icon-warning {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
}

.quick-action-content {
    flex: 1;
    min-width: 0;
}

.quick-action-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 4px 0;
}

.quick-action-content p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.quick-action-arrow {
    color: #cbd5e0;
    font-size: 1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.quick-action-card:hover .quick-action-arrow {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.quick-action-badge {
    position: absolute;
    top: 12px;
    right: 40px;
    background: var(--danger-color);
    color: white;
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
}

/* Quick Action Icon Colors */
.quick-icon-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a6f 100%);
}

.quick-icon-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
}

.quick-icon-warning {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
}

.quick-icon-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
}

.quick-icon-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #c0392b 100%);
}

/* Admin Primary Button */
.admin-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
    transition: var(--transition);
}

.admin-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
    color: white;
}

.admin-primary-btn i {
    font-size: 1rem;
}

/* Admin Alert */
.admin-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border-left: 4px solid;
}

.admin-alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: var(--success-color);
}

.admin-alert-success i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Admin Empty State */
.admin-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-state-icon i {
    font-size: 3rem;
    color: #6c757d;
}

.admin-empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.admin-empty-state p {
    color: #6c757d;
    margin-bottom: 30px;
}

/* Admin Emlak Grid */
.admin-emlak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.admin-emlak-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.admin-emlak-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.admin-emlak-card.pending {
    border-color: var(--accent-color);
}

.emlak-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.emlak-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.admin-emlak-card:hover .emlak-card-image img {
    transform: scale(1.05);
}

.emlak-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    gap: 10px;
}

.emlak-card-placeholder i {
    font-size: 3rem;
}

.emlak-card-placeholder span {
    font-size: 0.9rem;
}

.emlak-card-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-danger {
    background: var(--danger-color);
}

.badge-success {
    background: var(--success-color);
}

.badge-secondary {
    background: #6c757d;
}

.emlak-card-pending-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.emlak-card-body {
    padding: 20px;
}

.emlak-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.emlak-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.emlak-card-id {
    font-size: 0.8rem;
    color: #6c757d;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.emlak-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.emlak-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.emlak-info-item i {
    color: var(--secondary-color);
    width: 18px;
    text-align: center;
}

.emlak-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.emlak-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.emlak-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.emlak-action-btn i {
    font-size: 0.9rem;
}

.action-approve {
    background: var(--success-color);
    color: white;
}

.action-approve:hover {
    background: #229954;
    color: white;
    transform: translateY(-2px);
}

.action-edit {
    background: var(--secondary-color);
    color: white;
}

.action-edit:hover {
    background: #357abd;
    color: white;
    transform: translateY(-2px);
}

.action-delete {
    background: var(--danger-color);
    color: white;
}

.action-delete:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
}

.action-view {
    background: #f0f0f0;
    color: var(--dark-text);
    flex: 0 0 auto;
    min-width: 40px;
}

.action-view:hover {
    background: #e0e0e0;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.action-view span {
    display: none;
}

.emlak-approved-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #d4edda;
    color: var(--success-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.emlak-approved-badge i {
    font-size: 0.9rem;
}

/* Responsive Admin Dashboard */
@media (max-width: 768px) {
    .admin-content {
        padding: 15px 15px;
    }
    
    .admin-content .row {
        margin-left: -7px;
        margin-right: -7px;
    }
    
    .admin-content .row > [class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 15px;
    }
    
    .admin-form-group {
        margin-bottom: 15px;
    }
    
    body > .container-fluid > .row > .col-md-10 {
        margin-left: 0;
    }
    
    .admin-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        max-height: none;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .admin-page-title {
        font-size: 2rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .admin-stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-action-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .admin-page-title {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .quick-action-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .admin-emlak-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .emlak-card-image {
        height: 180px;
    }
    
    .emlak-card-body {
        padding: 16px;
    }
    
    .emlak-card-title {
        font-size: 1rem;
    }
    
    .emlak-card-price {
        font-size: 1.3rem;
    }
    
    .emlak-card-actions {
        flex-direction: column;
    }
    
    .emlak-action-btn {
        width: 100%;
    }
    
    .action-view {
        width: 100%;
    }
    
    .action-view span {
        display: inline;
    }
}

/* Alert Messages */
.alert {
    border-radius: 12px;
    margin-bottom: 25px;
    border: none;
    padding: 20px;
    font-weight: 500;
}

/* Utilities */
.mt-5 {
    margin-top: 3rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.text-center {
    text-align: center !important;
}

/* Admin Form Styles */
.admin-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.admin-form-section {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.form-section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.form-section-content {
    padding: 30px 25px;
}

/* Admin Form Layout */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.admin-page-title {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
    color: #1d2327;
}

.admin-back-link {
    color: #2271b1;
    text-decoration: none;
    font-size: 13px;
}

.admin-message {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 13px;
}

.admin-message-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.admin-message-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.admin-form-section {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.admin-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.admin-form-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
}

.admin-form-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 10px;
}

.admin-form-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.admin-form-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 10px;
}

.admin-form-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}

.admin-btn-full {
    width: 100%;
    margin-top: 10px;
}

.gallery-upload-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.gallery-upload-label {
    flex: 1;
}

.keyword-analysis {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.keyword-analysis-title {
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.keyword-check-item {
    margin-bottom: 8px;
}

.keyword-check-label {
    display: inline-block;
    min-width: 120px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .admin-form-col-3,
    .admin-form-col-4,
    .admin-form-col-6,
    .admin-form-col-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .gallery-upload-controls {
        flex-direction: column;
    }
}

.admin-form-group {
    margin-bottom: 18px;
}

.admin-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.admin-form-label i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.required {
    color: var(--danger-color);
    margin-left: 4px;
}

.admin-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: #fff;
    transition: var(--transition);
    font-family: inherit;
}

.admin-form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
    background: #fff;
}

.admin-form-control::placeholder {
    color: #adb5bd;
}

textarea.admin-form-control {
    resize: vertical;
    min-height: 120px;
}

select.admin-form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    appearance: none;
}

.input-with-icon {
    position: relative;
}

.input-icon-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-weight: 600;
    pointer-events: none;
}

/* Image Upload */
.image-upload-wrapper {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    transition: var(--transition);
}

.image-upload-wrapper:hover {
    border-color: var(--secondary-color);
    background: #f0f4f8;
}

.current-image {
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    height: 200px;
    background: #f0f0f0;
}

.current-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.no-image {
    padding: 40px 20px;
    color: #6c757d;
    margin-bottom: 15px;
}

.no-image i {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.file-upload-label {
    display: inline-block;
    cursor: pointer;
}

.file-upload-input {
    display: none;
}

.file-upload-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.file-upload-button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

/* Checkbox */
.admin-checkbox-wrapper {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.admin-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 8px;
}

.admin-checkbox {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: white;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.admin-checkbox:checked + .checkbox-custom {
    background: var(--success-color);
    border-color: var(--success-color);
}

.admin-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.checkbox-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.checkbox-text i {
    color: var(--success-color);
}

.checkbox-help {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    padding-left: 36px;
}

/* Form Actions */
.admin-form-actions {
    display: flex;
    gap: 15px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    margin-top: 30px;
}

.admin-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    color: var(--dark-text);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.admin-secondary-btn:hover {
    background: #f8f9fa;
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.admin-secondary-btn i {
    font-size: 0.9rem;
}

/* Gallery Manager */
.gallery-manager {
    margin-top: 0;
}

.gallery-upload-area {
    margin-bottom: 30px;
}

.gallery-upload-label {
    display: block;
    cursor: pointer;
}

.gallery-upload-input {
    display: none;
}

.gallery-upload-box {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fa;
    transition: var(--transition);
}

.gallery-upload-box:hover {
    border-color: var(--secondary-color);
    background: #f0f4f8;
}

.gallery-upload-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.gallery-upload-box span {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.gallery-upload-box small {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
}

.gallery-upload-progress {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    width: 0%;
    transition: width 0.3s ease;
    animation: progress-animation 2s infinite;
}

@keyframes progress-animation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.progress-text {
    display: block;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-image-item {
    position: relative;
    pointer-events: auto;
}

.gallery-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    pointer-events: auto;
}

.gallery-image-wrapper:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-image-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-primary {
    background: var(--primary-color);
}

.gallery-image-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 5px;
    opacity: 0.9;
    transition: var(--transition);
    z-index: 10;
    pointer-events: auto;
}

.gallery-image-wrapper:hover .gallery-image-actions {
    opacity: 1;
}

/* Ana resim butonu her zaman görünür olsun */
.gallery-image-wrapper .set-main-image {
    opacity: 1 !important;
}

.gallery-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
    pointer-events: auto;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.gallery-action-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.gallery-action-btn.set-main-image {
    background: rgba(255, 193, 7, 0.9);
}

.gallery-action-btn.set-main-image:hover {
    background: rgba(255, 193, 7, 1);
}

.gallery-action-btn.set-main-image.active {
    background: rgba(255, 193, 7, 1);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.5);
}

.gallery-image-wrapper.main-image-selected {
    border-color: #ffc107;
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
}

.main-image-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 193, 7, 0.95);
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.main-image-badge i {
    font-size: 10px;
}

.gallery-action-btn.delete-image {
    background: rgba(231, 76, 60, 0.9);
}

.gallery-action-btn.delete-image:hover {
    background: rgba(231, 76, 60, 1);
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.gallery-empty i {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.gallery-empty p {
    margin: 0;
    font-size: 1rem;
}

.form-help-text {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #6c757d;
    text-align: left;
}

.char-counter {
    font-weight: 600;
    margin-left: 5px;
    display: inline-block;
}

/* Slug Input Wrapper */
.slug-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slug-input-wrapper .admin-form-control {
    flex: 1;
}

.btn-slug-edit {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.btn-slug-edit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-slug-edit i {
    font-size: 1rem;
}

/* Responsive Admin Form */
@media (max-width: 768px) {
    .admin-form {
        padding: 25px 20px;
    }
    
    .form-section-header {
        padding: 15px 20px;
    }
    
    .form-section-content {
        padding: 20px 15px;
    }
    
    .admin-form-actions {
        flex-direction: column;
    }
    
    .admin-primary-btn,
    .admin-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-images {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .gallery-image-actions {
        opacity: 1;
    }
}

/* WhatsApp Floating Button - Modern & Minimal */
.whatsapp-float {
    position: fixed !important;
    bottom: 24px;
    right: 24px;
    z-index: 9999 !important;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 
                0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45), 
                0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover::before {
    transform: scale(1);
}

.whatsapp-float:active {
    transform: translateY(0) scale(1.05);
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.whatsapp-text {
    display: none;
}

/* Subtle pulse animation - sadece hover olmadığında */
.whatsapp-float:not(:hover) {
    animation: whatsappSubtlePulse 3s ease-in-out infinite;
}

@keyframes whatsappSubtlePulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 
                    0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 
                    0 2px 6px rgba(0, 0, 0, 0.12);
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        bottom: 20px !important;
        right: 20px !important;
        position: fixed !important;
        display: flex !important;
        z-index: 9999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .whatsapp-icon {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        bottom: 16px !important;
        right: 16px !important;
        position: fixed !important;
        display: flex !important;
        z-index: 9999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .whatsapp-icon {
        font-size: 24px;
    }
}

/* Admin Messages List - Minimal */
.admin-messages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-message-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.admin-message-card:hover {
    box-shadow: var(--shadow);
    border-color: #d0d7de;
}

.admin-message-card.unread {
    border-left: 3px solid var(--accent-color);
    background: rgba(243, 156, 18, 0.02);
}

.message-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 15px;
}

.message-main-info {
    flex: 1;
    min-width: 0;
}

.message-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 15px;
}

.message-sender-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.unread-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.message-sender-minimal strong {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.message-email-minimal {
    color: #6c757d;
    font-size: 0.85rem;
}

.message-phone-minimal {
    color: #6c757d;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.message-phone-minimal i {
    font-size: 0.75rem;
    color: #28a745;
}

.message-date-minimal {
    color: #6c757d;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.message-subject-minimal {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.message-text-minimal {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.message-property-minimal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 6px;
}

.message-property-minimal i {
    font-size: 0.75rem;
}

.message-property-minimal a {
    color: var(--secondary-color);
    text-decoration: none;
}

.message-property-minimal a:hover {
    text-decoration: underline;
}

.message-actions-minimal {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.message-action-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    color: #6c757d;
    background: transparent;
}

.message-action-icon:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.message-action-icon.action-mark-read {
    color: var(--success-color);
}

.message-action-icon.action-mark-read:hover {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.message-action-icon.action-delete {
    color: var(--danger-color);
}

.message-action-icon.action-delete:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

/* Responsive Messages */
@media (max-width: 768px) {
    .message-card-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .message-header-minimal {
        flex-direction: column;
        gap: 8px;
    }
    
    .message-actions-minimal {
        align-self: flex-end;
    }
}

/* Admin Categories List - Minimal */
.admin-categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-category-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.admin-category-card:hover {
    box-shadow: var(--shadow);
    border-color: #d0d7de;
}

.admin-category-card.inactive {
    opacity: 0.7;
    background: #f8f9fa;
}

.category-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 15px;
}

.category-main-info {
    flex: 1;
    min-width: 0;
}

.category-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.category-info {
    flex: 1;
}

.category-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    flex-wrap: wrap;
}

.inactive-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: #6c757d;
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d;
    flex-wrap: wrap;
}

.category-slug {
    font-family: 'Courier New', monospace;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--secondary-color);
}

.category-sira {
    color: #6c757d;
}

.category-actions-minimal {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.category-action-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    color: #6c757d;
    background: transparent;
}

.category-action-icon:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.category-action-icon.action-edit {
    color: var(--secondary-color);
}

.category-action-icon.action-edit:hover {
    background: rgba(74, 144, 226, 0.1);
    color: var(--secondary-color);
}

.category-action-icon.action-delete {
    color: var(--danger-color);
}

.category-action-icon.action-delete:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

/* Responsive Categories */
@media (max-width: 768px) {
    .category-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .category-actions-minimal {
        align-self: flex-end;
    }
    
    .category-header-minimal {
        flex-direction: column;
        gap: 8px;
    }
}

/* Login Page - Modern & Professional */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    animation: float 20s ease-in-out infinite;
}

.login-page::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.login-container-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
}

.login-container {
    width: 100%;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    width: 100%;
    animation: slideUp 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.login-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.login-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.login-alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.login-alert i {
    font-size: 1.1rem;
}

.login-form {
    margin-bottom: 30px;
}

.login-form-group {
    margin-bottom: 24px;
}

.login-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.login-form-label i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.login-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    color: var(--dark-text);
    font-family: inherit;
}

.login-form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.login-form-control::placeholder {
    color: #adb5bd;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 8px;
}

.password-toggle:hover {
    color: var(--secondary-color);
    background: rgba(74, 144, 226, 0.1);
}

.password-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.login-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: 8px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn i {
    font-size: 1rem;
}

.login-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-footer i {
    font-size: 0.85rem;
}

/* Responsive Login */
@media (max-width: 480px) {
    .login-card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .login-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .login-icon-wrapper i {
        font-size: 30px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
}

/* ============================================
   CONTACT PAGE - Modern & Professional
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0 50px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding-bottom: 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Alert */
.contact-alert {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out;
}

.contact-alert.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-alert i {
    font-size: 1.3rem;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-title i {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.contact-form-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Contact Form Modern */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label-modern {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label-modern i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.required-star {
    color: #e74c3c;
    margin-left: 2px;
}

.form-input-modern,
.form-textarea-modern {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-textarea-modern {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.btn-submit-modern {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #357abd 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.btn-submit-modern i {
    font-size: 1rem;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.contact-info-title i {
    color: var(--secondary-color);
}

.contact-info-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-item:hover {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
    transform: translateX(5px);
    color: var(--dark-text);
    text-decoration: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-icon.phone {
    background: #e3f2fd;
    color: #1976d2;
}

.contact-info-icon.whatsapp {
    background: #e8f5e9;
    color: #25D366;
}

.contact-info-icon.email {
    background: #fff3e0;
    color: #f57c00;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.contact-info-arrow {
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-arrow {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Hours */
.contact-hours {
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.contact-hours-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-hours-title i {
    color: var(--secondary-color);
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.contact-hours-day {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.contact-hours-time {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-card {
        position: static;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 50px 0 40px;
        margin-bottom: 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .contact-section {
        padding-bottom: 60px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-form-subtitle {
        font-size: 0.9rem;
    }

    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form-modern {
        gap: 20px;
    }

    .contact-info-list {
        gap: 12px;
        margin-bottom: 30px;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 40px 0 35px;
    }

    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .contact-form-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-form-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .form-input-modern,
    .form-textarea-modern {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .btn-submit-modern {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .contact-info-title {
        font-size: 1.3rem;
    }

    .contact-info-item {
        padding: 12px;
    }
}

/* Page Header Section - Hero altında SEO başlık */
.page-header-section {
    background: white;
    padding: 40px 0 30px;
    border-bottom: 1px solid #e8ecef;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.page-header-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-align: center;
}

.page-header-description {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 30px 0 20px;
        margin-bottom: 20px;
    }
    
    .page-header-title {
        font-size: 1.5rem;
    }
    
    .page-header-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

/* Category Showcase Section - Hero altında profesyonel geçiş */
.category-showcase-section {
    background: white;
    padding: 50px 0;
    border-bottom: 1px solid #e8ecef;
    margin-bottom: 40px;
}

.category-showcase-content {
    max-width: 1200px;
    margin: 0 auto;
}

.category-showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 35px 0;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: white;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15);
    border-color: #4a90e2;
    text-decoration: none;
    color: inherit;
}

.category-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.category-card-icon i {
    font-size: 1.25rem;
    color: white;
}

.category-card-content {
    flex: 1;
    min-width: 0;
}

.category-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.category-card-count {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.2;
}

.category-card-arrow {
    color: #95a5a6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-arrow {
    color: #4a90e2;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .category-showcase-section {
        padding: 35px 0;
        margin-bottom: 30px;
    }
    
    .category-showcase-title {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }
    
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .category-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-card-icon i {
        font-size: 1.1rem;
    }
    
    .category-card-title {
        font-size: 0.9rem;
    }
    
    .category-card-count {
        font-size: 0.75rem;
    }
    
    .category-card-arrow {
        display: none; /* Mobilde ok gizle */
    }
}

@media (max-width: 576px) {
    .category-cards-grid {
        grid-template-columns: 1fr;
    }
}
