/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.section-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Property Cards */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.property-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.property-actions {
    position: absolute;
    top: 10px;
    right: 10px;
}

.property-features {
    font-size: 0.9rem;
}

/* Developer Cards */
.developer-card {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-3px);
}

.developer-logo {
    max-height: 80px;
    object-fit: contain;
}

.developer-placeholder {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 2rem;
    color: #6c757d;
}

.developer-name {
    font-weight: 600;
    color: #2c3e50;
}

/* Filter Section */
.filter-section .card {
    border: none;
    border-radius: 12px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: white;
    margin-right: 0.5rem;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
/* Property Detail Styles */
.property-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.property-location {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.property-price h2 {
    font-weight: 800;
}

.property-gallery {
    margin-bottom: 2rem;
}

.main-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
}

.thumbnail-item {
    flex: 0 0 auto;
}

.thumbnail-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.thumbnail-item img.active,
.thumbnail-item img:hover {
    opacity: 1;
    border-color: #007bff;
}

.detail-item {
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.amenity-item {
    display: flex;
    align-items: center;
}

.rating-stars {
    font-size: 1.5rem;
    cursor: pointer;
}

.rating-stars .rating-star {
    transition: color 0.2s;
}

.review-item {
    padding: 15px 0;
}

.similar-property {
    position: relative;
}

.similar-property:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-image {
        height: 250px;
    }
    
    .detail-item {
        margin-bottom: 15px;
    }
}
/* About Page Styles */
.stat-card {
    padding: 2rem 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

.stat-icon {
    color: #007bff;
}

.value-card {
    padding: 1.5rem 1rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.value-icon {
    color: #007bff;
}

.team-card {
    padding: 2rem 1rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Developer Pages */
.developer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.developer-name {
    font-weight: 700;
    color: #2c3e50;
}

.developer-stats .badge {
    font-size: 0.9rem;
}

/* Contact Page */
.contact-icon {
    width: 50px;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.amenities-list {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .team-card,
    .value-card {
        margin-bottom: 1.5rem;
    }
}