/* Base Settings */
body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HERO BACKGROUND */
.hero-bg {
    background-image: url('Images/automatic-gate-motors (1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 10s ease;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slowZoom 20s infinite alternate linear;
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Custom Buttons */
.btn-primary-lg {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    letter-spacing: 0.025em;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.5);
    filter: brightness(1.1);
}

.btn-secondary-lg {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-lg:hover {
    background-color: white;
    color: #111827;
    border-color: white;
    transform: translateY(-2px);
}

/* Whatsapp Float - Enhanced */
.whatsapp-float {
    /* Kept for legacy support if needed, but using Tailwind classes in HTML now */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background: #20BA56;
    transform: scale(1.1) rotate(10deg);
}
