body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fcfcfc;
}
.section-padding {
    padding: 80px 0;
}
.tracking-wider {
    letter-spacing: 2px;
}
.text-orange {
    color: #f97316 !important;
}
.cursor-pointer {
    cursor: pointer;
}
.hero-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {
    .hero-parallax {
        background-attachment: scroll;
    }
}
.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.hover-slide-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-slide-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.hover-flip {
    transition: transform 0.5s ease;
    perspective: 1000px;
}
.hover-flip:hover {
    transform: rotateY(10deg);
}
.card-grad-1 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}
.card-grad-2 {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}
.card-grad-3 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}
.card-grad-4 {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
}
.car-select-label {
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
    background: white;
}
.btn-check:checked + .car-select-label {
    border-color: #0d6efd;
    background-color: #f0f7ff;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.15);
}
.car-icon {
    font-size: 24px;
    margin-bottom: 5px;
    color: #888;
    transition: color 0.2s;
}
.btn-check:checked + .car-select-label .car-icon {
    color: #0d6efd;
}
.nav-link-animated {
    position: relative;
    color: #333 !important;
    transition: 0.3s;
}
.nav-link-animated::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0d6efd;
    transition: width 0.3s ease-in-out;
}
.nav-link-animated:hover::after, 
.nav-link-animated.active::after {
    width: 100%;
}
.nav-link-animated.active {
    font-weight: 800;
    color: #0d6efd !important;
}
@media (max-width: 991px) {
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-link {
        padding: 15px !important;
    }
}
.floating-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
}
.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}
.float-call {
    background: linear-gradient(135deg, #0d6efd, #0043a8);
}
@media (max-width: 768px) {
    .floating-btn-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}