/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* WhatsApp Floating Button */
.wa-float {
    transition: all 0.3s ease;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4);
}

/* Demo Section Animations */
.demo-screen {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.group:hover .demo-screen {
    transform: translateY(-10px) scale(1.02);
}

/* Footer Styling */
.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 4px;
    background-color: #3b82f6; /* blue-500 */
    border-radius: 9999px;
}

.footer-link {
    color: #94a3b8; /* slate-400 */
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.footer-link:hover {
    padding-left: 5px;
    color: #3b82f6; /* blue-500 */
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem; /* xl */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem; /* lg */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}