:root {
    --corp-blue: #002060;
    --corp-red: #C00000;
    --corp-gray: #F2F2F2;
    --corp-dark: #1A1A1A;
}

/* BASE SETTINGS */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--corp-blue);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--corp-red);
}

/* ANIMATIONS */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-up {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* TYPOGRAPHY OVERRIDES */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

/* COMPONENT STYLES */

/* Service Card Hover Effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* List Group Item Active State */
.list-group-item.active {
    background-color: var(--corp-blue);
    color: white;
    border-color: var(--corp-blue);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b85a;
}