:root {
    --brand-primary: #2390cf;
    --brand-primary-light: #3ba0d9;
    --brand-primary-dark: #1b7ab8;
    --brand-primary-50: #f0f8ff;
    --brand-primary-100: #e0f3ff;
    --brand-primary-200: #bae6ff;
    --brand-primary-300: #7dd3fc;
    --brand-primary-400: #38bdf8;
    --brand-primary-500: #2390cf;
    --brand-primary-600: #0284c7;
    --brand-primary-700: #0369a1;
    --brand-primary-800: #075985;
    --brand-primary-900: #0c4a6e;
}

.navbar-brand {
    color: var(--brand-primary) !important;
}

.nav-link.active {
    color: var(--brand-primary) !important;
    border-bottom: 2px solid var(--brand-primary);
}

.nav-link:hover {
    color: var(--brand-primary) !important;
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}

.text-primary {
    color: var(--brand-primary) !important;
}

.bg-primary {
    background-color: var(--brand-primary) !important;
}

.hero-gradient {
    background: linear-gradient(to right, var(--brand-primary-900), var(--brand-primary-800));
}

.bg-primary-light {
    background-color: var(--brand-primary-50) !important;
}

.border-primary-bottom {
    border-bottom: 2px solid var(--brand-primary);
}

.step-circle {
    width: 64px;
    height: 64px;
    background-color: var(--brand-primary-800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--brand-primary);
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-badge .badge {
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn {
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.floating-icon {
    animation-duration: 3s, 4s, 5s;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15) !important;
}

.car-container {
    animation: float 6s ease-in-out infinite;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--brand-primary);
}

.value-card .icon-wrapper {
    transition: all 0.3s ease;
}

.value-card:hover .icon-wrapper {
    transform: scale(1.05);
}

.value-card .icon-bg {
    transition: all 0.3s ease;
}

.value-card:hover .icon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

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

.value-card:hover h4 {
    color: var(--brand-primary);
}

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

.value-card:hover p {
    color: #495057;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.value-card:hover::before {
    left: 100%;
}

.sticky-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.sticky-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sticky-icon:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-icon {
    background-color: #25D366;
}

.directions-icon {
    background-color: var(--brand-primary);
}

.contact-icon {
    background-color: #18597e;
}

.icon-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .sticky-icons {
        right: 50%;
        left: auto;
        transform: translateX(50%);
        bottom: 10px;
        flex-direction: row;
        justify-content: space-around;
        width: 90%; 
        max-width: 400px;
        gap: 5px;
    }

    .sticky-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        position: relative; 
    }
    
    .icon-tooltip {
        display: block; 
        right: 50%;
        transform: translateX(50%);
        bottom: 60px;
        background: rgba(0,0,0,0.9);
        padding: 4px 8px;
        font-size: 12px;
    }
}
