
        /* Hero section gradient background */
        .hero-section {
    background: linear-gradient(to right, #eef2ff, #f8f9ff); /* Soft mavi-beyaz geçiş */
    padding: 60px 20px;
    text-align: center;
}

.hero-logo {
    display: block;
    margin: 0 auto 20px auto;
    max-height: 120px;
    animation: pulseLogo 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4)); /* sadece logonun dış hatlarına gölge */
    transition: transform 0.3s ease;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
    }
}


.hero-slogan {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hero-buttons a {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-secondary:hover {
    background-color: #e0e7ff;
}

        
        /* Property card hover effect */
        .property-card:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }
        
        /* Feature icon gradient */
        .feature-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    animation: modalSlideIn 0.4s ease-out;
    border: 1px solid #e5e7eb;
}

        
        @keyframes modalSlideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    color: white;
    padding: 24px 30px;
    position: relative;
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

        
        .modal-title {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
            padding-right: 40px;
        }
        
        .modal-subtitle {
            font-size: 14px;
            color: #000000;
            margin-top: 5px;
            font-weight: 600;
            text-shadow: 0 0 3px rgba(255,255,255,0.8);
            padding: 2px 6px;
            border-radius: 4px;
            background: rgba(255,255,255,0.1);
            display: inline-block;
        }
        
        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            color: white;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 0;
            max-height: calc(95vh - 100px);
            overflow-y: auto;
        }
        
        /* Image carousel */
        .image-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: #f8f9fa;
            overflow: hidden;
        }
        
        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
        }
        
        .carousel-slide.active {
            display: block;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .carousel-nav:hover {
            background: rgba(0,0,0,0.7);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-prev {
            left: 15px;
        }
        
        .carousel-next {
            right: 15px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        .property-details {
            padding: 25px;
        }
        
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .property-item {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.property-item:hover {
    transform: scale(1.03);
}

        
        .property-item-label {
            font-size: 12px;
            color: #6c757d;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .property-item-value {
            font-size: 16px;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .property-price {
            background: #f8f9fa;
            color: #2c3e50 !important;
        }
        
        .property-item {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.property-item:hover {
    transform: scale(1.03);
}

        
        .property-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .action-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .action-btn svg {
    transition: transform 0.3s ease;
}

.action-btn:hover svg {
    transform: scale(1.2);
}

        
        .btn-call {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
        }
        
        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
        }
        
        .btn-details {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
        }
        
        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }