:root {
    --brand-navy: #020E2B;
    --brand-lime: #6ED13A;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
}

.gradient-overlay {
    background: linear-gradient(to right, rgb(2 14 43 / 95%), rgb(2 14 43 / 85%), rgb(2 14 43 / 60%));
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--brand-lime);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card:hover .service-icon-bg {
    background-color: var(--brand-lime);
}

.service-card:hover .service-icon {
    color: white;
}

#mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobileMenu.open {
    max-height: 300px;
}

.form-success {
    animation: fadeIn 0.5s ease;
}

.form-error {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
