/* Custom base styles */
body {
    line-height: 1.6;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Property card hover effect */
.property-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fbbf24;
    color: white;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 10;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Map container */
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Testimonial styles */
.testimonial-quote {
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(14, 165, 233, 0.2);
    font-family: serif;
}

/* Form input focus */
.input-focus:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
    border-color: rgb(14, 165, 233);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-content {
        padding-top: 6rem;
    }
}