:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Features Section */
.features-section {
    background: white;
}

.feature-card {
    padding: 2rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Emlaklar Section */
.emlaklar-section {
    padding: 80px 0;
}

.emlak-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.emlak-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.emlak-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.emlak-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.emlak-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.emlak-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.emlak-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.emlak-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.emlak-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.emlak-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.emlak-features span {
    display: flex;
    align-items: center;
}

/* Emlak Detail */
.emlak-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.gallery-thumb {
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.emlak-sidebar .card {
    position: sticky;
    top: 100px;
}

/* İletişim Section */
.iletisim-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
    flex: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-header i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.contact-card-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card-body {
    padding: 2rem;
}

.office-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

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

.office-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.contact-link i {
    width: 30px;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 500px;
    background: #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* Responsive İletişim */
@media (max-width: 992px) {
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .map-container iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .iletisim-section {
        padding: 60px 0;
    }
    
    .contact-card-header {
        padding: 1.2rem;
    }
    
    .contact-card-header h4 {
        font-size: 1.1rem;
    }
    
    .contact-card-body {
        padding: 1.5rem;
    }
    
    .office-item,
    .contact-item {
        padding: 0.8rem;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
    
    .contact-link {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-card-header i {
        margin: 0 auto;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.floating-btn-whatsapp {
    background: #25D366;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .emlak-image {
        height: 200px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

