/* Banner background */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/images/Brookfield-Property-Investment-Buys-Houses-Hero-Image.png') center/cover no-repeat;
}

/* Video container styling */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile menu transitions */
#mobileMenu {
    transition: all 0.3s ease-in-out;
}

/* Form styling */
.form-input {
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button hover effects */
.btn-primary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

/* Social icons hover effect */
.social-icon {
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Review card hover effect */
.review-card {
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}