
:root {
    --novi-green: #76d935;
    --novi-blue: #5ba1d7;
    --novi-dark: #1a1a1a;
    --novi-light: #f8f9fa;
    --novi-gradient: linear-gradient(135deg, #76d935 0%, #5ba1d7 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--novi-dark);
    scroll-behavior: smooth;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--novi-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar {
    padding-top: 18px;
    padding-bottom: 18px;
}

.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(118, 217, 53, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(91, 161, 215, 0.05), transparent);
}

.btn-novisec {
    background: var(--novi-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-novisec:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(118, 217, 53, 0.2);
    color: white;
}

.service-card {
    border: none;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--novi-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--novi-blue);
    font-size: 1.5rem;
}

.stats-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--novi-gradient);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.nav-pills .nav-link {
    color: var(--novi-dark);
    border-radius: 50px;
    padding: 10px 25px;
    margin: 5px;
    border: 1px solid #eee;
}

.nav-pills .nav-link.active {
    background: var(--novi-gradient);
    border-color: transparent;
}

footer {
    background: var(--novi-dark);
    color: white;
    padding: 60px 0 30px;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--novi-green);
}

.tag-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 10px;
    background: #eee;
    margin-left: 10px;
    vertical-align: middle;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--novi-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--novi-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 60px;
    right: 24px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 16px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: .5px;
    text-decoration: none;
    z-index: 9999;
    overflow: visible;
    box-shadow: 0 0 20px rgba(37,211,102,.5);
    transition: all .3s ease;
    animation: pulseShadow 2s infinite;
}
@keyframes pulseShadow {
    0%,100% {
        box-shadow: 0 0 20px rgba(37,211,102,.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(37,211,102,.9);
    }
}
.whatsapp-float:hover {
    transform: scale(1.08);
}
.whatsapp-icon {
    font-size: 1.9em;
    animation: beat 1.5s infinite;
}
@keyframes beat {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.5);
    animation: ring 2s infinite;
}
@keyframes ring {
    0% {
        transform: scale(0.8);
        opacity: .7;
    }
    80% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@media(max-width:768px){
    .whatsapp-text{
        display:none;
    }
    .whatsapp-float{
        padding:16px;
    }
}