/* Animated background for hero section */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero {
    background: linear-gradient(-45deg, #1a4d7c, #2c7ab5, #1a5a8e, #2d6a9f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Floating property icons animation */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.08);
    animation: float 20s infinite;
    pointer-events: none;
}

.floating-icon:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.floating-icon:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.floating-icon:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.floating-icon:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
}

.floating-icon:nth-child(5) {
    left: 85%;
    animation-delay: 12s;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
