/* ===================================
   Modern Emlak Sitesi Teması
   Koyu Gri & Gold Renk Paleti
   =================================== */

:root {
    --dark-bg: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --dark-tertiary: #3a3a3a;
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --gold-hover: #b8941f;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #666666;
}

/* Light Theme Variables */
[data-theme="light"] {
    --dark-bg: #ffffff;
    --dark-secondary: #f8f9fa;
    --dark-tertiary: #e9ecef;
    --text-light: #1a1a1a;
    --text-gray: #6c757d;
    --text-dark: #495057;
}

/* Dark Theme Variables (default) */
[data-theme="dark"] {
    --dark-bg: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --dark-tertiary: #3a3a3a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar-brand {
    color: var(--gold-primary) !important;
}

[data-theme="light"] .nav-link {
    color: var(--text-light) !important;
}

.navbar {
    color: var(--text-light);
}

.navbar-scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 35px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 30px;
        max-width: 120px;
    }
}

.navbar-logo.logo-light {
    display: none;
}

[data-theme="light"] .navbar-logo.logo-dark {
    display: none;
}

[data-theme="light"] .navbar-logo.logo-light {
    display: block;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-primary) !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

[data-theme="light"] .theme-toggle {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(42, 42, 42, 0.3)),
                url('../assets/proma_banner.png') center/cover no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(248, 249, 250, 0.3)),
                url('../assets/proma_banner.png') center/cover no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(26, 26, 26, 0.4));
    z-index: 1;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease;
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, var(--text-light), var(--gold-primary));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-search-box {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

[data-theme="light"] .hero-search-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-search-box .form-select {
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

[data-theme="light"] .hero-search-box .form-select {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
}


[data-theme="light"] .hero-search-box .form-select option {
    color: var(--text-light);
    background-color: #ffffff;
}

.hero-search-box .form-select:focus {
    background-color: var(--dark-tertiary);
    border-color: var(--gold-primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

[data-theme="light"] .hero-search-box .form-select:focus {
    background-color: #ffffff;
}

/* Hero Search Box Fixed */
.hero-search-box-fixed {
    position: relative;
    margin-top: -80px;
    margin-bottom: 20px;
    z-index: 10;
    padding: 0 1rem;
}

.hero-search-box-fixed .container {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .hero-search-box-fixed .container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-search-box-fixed .form-select {
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

[data-theme="light"] .hero-search-box-fixed .form-select {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
}

.hero-search-box-fixed .form-select:focus {
    background-color: var(--dark-tertiary);
    border-color: var(--gold-primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

[data-theme="light"] .hero-search-box-fixed .form-select:focus {
    background-color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--gold-primary);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--gold-secondary);
    transform: scale(1.2);
}

/* ===================================
   Buttons
   =================================== */

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-bg);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold-primary));
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-gold:active {
    transform: translateY(0);
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    background: var(--dark-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(58, 58, 58, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* ===================================
   Properties Section
   =================================== */

.properties-section {
    padding: 100px 0;
    background: var(--dark-bg);
    transition: background-color 0.3s ease;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.property-card {
    background: var(--dark-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .property-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .property-title {
    color: var(--text-light);
}

[data-theme="light"] .property-features span {
    color: var(--text-gray);
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.property-badge.badge-rent {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.property-features span {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-features i {
    color: var(--gold-primary);
}

/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
    transition: background-color 0.3s ease;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.feature-card {
    background: rgba(58, 58, 58, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .feature-card h4 {
    color: var(--text-light);
}

[data-theme="light"] .feature-card p {
    color: var(--text-gray);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
}

.feature-card h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */

.about-section {
    padding: 100px 0;
    background: var(--dark-bg);
    transition: background-color 0.3s ease;
}

.about-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-subtitle:first-child {
    margin-top: 0;
}

.about-content {
    padding-right: 1rem;
}

.about-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-logo {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    width: 100%;
}

.about-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.about-banner {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    width: 100%;
}

.about-banner:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.about-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer logo theme switching */
.footer-logo-dark {
    display: none;
}

[data-theme="dark"] .footer-logo-dark {
    display: block !important;
}

[data-theme="dark"] .footer-logo-light {
    display: none !important;
}

[data-theme="light"] .footer-logo-dark {
    display: none !important;
}

[data-theme="light"] .footer-logo-light {
    display: block !important;
}

/* About logo theme switching */
.about-logo-dark {
    display: none;
}

[data-theme="dark"] .about-logo-dark {
    display: block !important;
}

[data-theme="dark"] .about-logo-light {
    display: none !important;
}

[data-theme="light"] .about-logo-dark {
    display: none !important;
}

[data-theme="light"] .about-logo-light {
    display: block !important;
}

/* Contact logo theme switching */
.contact-logo-dark {
    display: none;
}

[data-theme="dark"] .contact-logo-dark {
    display: block !important;
}

[data-theme="dark"] .contact-logo-light {
    display: none !important;
}

[data-theme="light"] .contact-logo-dark {
    display: none !important;
}

[data-theme="light"] .contact-logo-light {
    display: block !important;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

.about-stats {
    margin-top: 2rem;
}

.about-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(58, 58, 58, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .about-stat-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .about-stat-item p {
    color: var(--text-gray);
}

[data-theme="light"] .about-text {
    color: var(--text-gray);
}

[data-theme="light"] .section-title {
    color: var(--text-light);
}

[data-theme="light"] .section-subtitle {
    color: var(--text-gray);
}

.about-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.about-stat-item p {
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
    transition: background-color 0.3s ease;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.contact-info-card {
    background: rgba(58, 58, 58, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

[data-theme="light"] .contact-info-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .contact-info-card h5 {
    color: var(--text-light);
}

[data-theme="light"] .contact-info-card p {
    color: var(--text-gray);
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.contact-info-card h5 {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form .form-control {
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: var(--dark-tertiary);
    border-color: var(--gold-primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--text-gray);
}

[data-theme="light"] .contact-form .form-control {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
}

[data-theme="light"] .contact-form .form-control:focus {
    background-color: #ffffff;
    border-color: var(--gold-primary);
    color: var(--text-light);
}

/* Map Container */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 300px;
    }
}

[data-theme="light"] .newsletter-form .form-control {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transition: background-color 0.3s ease;
}

[data-theme="light"] .footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-title {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    color: var(--gold-primary);
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 1rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.newsletter-form .form-control {
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 8px 0 0 8px;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold-primary);
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.4s both;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .property-features {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-search-box {
        padding: 1.5rem;
    }
    
    .property-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-search-box {
        padding: 1rem;
    }
    
    .stat-card,
    .feature-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}

/* ===================================
   Scrollbar Styles
   =================================== */

/* Dark Theme Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
    border: 2px solid var(--dark-secondary);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}

/* Light Theme Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: #6c757d;
    border: 2px solid var(--dark-secondary);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: #5a6268;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) var(--dark-secondary);
}

[data-theme="light"] * {
    scrollbar-color: #6c757d var(--dark-secondary);
}

/* ===================================
   Consultants Section
   =================================== */

.consultants-section {
    padding: 100px 0;
    background: var(--dark-secondary);
    transition: background-color 0.3s ease;
}

.consultant-card {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consultant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.consultant-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.consultant-card:hover .consultant-image img {
    transform: scale(1.1);
}

.consultant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultant-badge.badge-consultant {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.consultant-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.consultant-name {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.consultant-title {
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultant-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

[data-theme="light"] .consultant-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .consultant-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .consultant-name {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .consultant-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .consultants-section {
        padding: 80px 0;
    }
    
    .consultant-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .consultant-image {
        height: 250px;
    }
    
    .consultant-info {
        padding: 1.25rem;
    }
}

/* ===================================
   Properties Filter Card
   =================================== */

.filter-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .filter-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.filter-card .card-title {
    color: var(--text-light);
}

[data-theme="light"] .filter-card .card-title {
    color: var(--text-light);
}

.filter-card .form-label {
    color: var(--text-light);
}

[data-theme="light"] .filter-card .form-label {
    color: var(--text-light);
}

.filter-card .form-select,
.filter-card .form-control {
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}

[data-theme="light"] .filter-card .form-select,
[data-theme="light"] .filter-card .form-control {
    background-color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
}

.filter-card .form-select:focus,
.filter-card .form-control:focus {
    background-color: var(--dark-tertiary);
    border-color: var(--gold-primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

[data-theme="light"] .filter-card .form-select:focus,
[data-theme="light"] .filter-card .form-control:focus {
    background-color: #ffffff;
    border-color: var(--gold-primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.filter-card .text-muted {
    color: var(--text-gray) !important;
}

/* ===================================
   Properties Filter Sidebar (Mobile)
   =================================== */

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 340px;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding-top: 80px; /* navbar yüksekliği */
        pointer-events: none;
    }

    .filter-sidebar .filter-card {
        height: calc(100vh - 100px);
        overflow-y: auto;
        pointer-events: auto;
        background: var(--dark-secondary);
    }

    [data-theme="light"] .filter-sidebar .filter-card {
        background: #ffffff;
    }

    .filter-sidebar.open {
        transform: translateX(0);
    }

    .filter-toggle-btn {
        width: 100%;
    }
}

/* ===================================
   Blog Section
   =================================== */

.blog-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.blog-card {
    background: var(--dark-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: var(--gold-primary);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--gold-primary);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-read-more {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--gold-hover);
    transform: translateX(5px);
}

/* Blog Detail */
.blog-detail-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.blog-detail {
    background: var(--dark-secondary);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

.blog-detail-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1.5rem;
}

.blog-category-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
}

.blog-meta-item i {
    color: var(--gold-primary);
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    margin-top: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-excerpt {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

.blog-content-text {
    font-size: 1.05rem;
}

.blog-content-text p {
    margin-bottom: 1.5rem;
}

.blog-content-text h2,
.blog-content-text h3,
.blog-content-text h4 {
    color: var(--gold-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content-text ul,
.blog-content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content-text li {
    margin-bottom: 0.5rem;
}

.blog-tags {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-tags h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--dark-tertiary);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    border-color: var(--gold-primary);
}

.blog-author-card {
    background: var(--dark-tertiary);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 2rem;
    flex-shrink: 0;
    border: 3px solid var(--gold-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.author-bio {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.author-contact {
    color: var(--gold-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.author-contact:hover {
    color: var(--gold-hover);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--dark-secondary);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.widget-title {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.recent-blogs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-blogs-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.recent-blogs-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-blogs-list a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
    display: block;
}

.recent-blogs-list a:hover {
    color: var(--gold-primary);
}

.recent-blogs-list h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-date {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Light Theme */
[data-theme="light"] .blog-card {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .blog-detail {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .sidebar-widget {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .blog-author-card {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail {
        padding: 1.5rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

