@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #10b981;
    --primary-hover: #059669;
}

body { 
    font-family: 'Inter', sans-serif; 
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('https://picsum.photos/seed/lending-hero/2000/1200') center/cover no-repeat;
}

.card-hover { 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
.card-hover:hover { 
    transform: translateY(-15px) scale(1.03); 
    box-shadow: 0 25px 50px -12px rgb(16 185 129 / 0.4); 
}

.loan-img, .gallery-img { 
    transition: all 0.4s ease; 
}
.loan-img:hover { 
    filter: brightness(1.15); 
    transform: scale(1.05); 
}
.gallery-img:hover { 
    transform: scale(1.08); 
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

a:focus-visible, button:focus-visible {
    outline: 3px solid #10b981;
    outline-offset: 4px;
}