body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #f0f2f5 0%, #e8eaef 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.real-estate-image-container {
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.real-estate-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.real-estate-image-container:hover img {
    transform: scale(1.05);
}

.card {
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.card-title a {
    color: #333;
    font-size: 1.1rem;
}

.card-title a:hover {
    color: #007bff;
}

.owl-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: #0056b3;
}

.owl-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 4px;
    border: none;
    padding: 0;
    box-shadow: none !important;
    text-shadow: none !important;
    outline: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots button span {
    display: none !important;
}

.owl-carousel .owl-dots button::before,
.owl-carousel .owl-dots button::after {
    display: none !important;
    content: none !important;
}

.owl-carousel .owl-dots button.active {
    background: rgba(17, 153, 142, 0.6);
    width: 8px;
    height: 8px;
    box-shadow: none !important;
    text-shadow: none !important;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-color: #11998e;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d7a72 0%, #2dd66a 100%);
    border-color: #0d7a72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.3);
}

@media (max-width: 768px) {
    .real-estate-image-container {
        height: 180px;
    }
}

.property-main-image {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.property-thumbnail {
    transition: opacity 0.3s ease;
}

.property-thumbnail:hover {
    opacity: 0.8;
}

.site-logo {
    border-radius: 8px;
}

.footer-logo {
    border-radius: 12px;
    display: block;
    padding: 10px;
}

/* Footer base styles - overridden by custom.css for enhanced typography */

.navbar-nav .nav-link.active {
    color: #11998e;
    font-weight: 600;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #11998e;
}

