/* AVN Corporate - Main Stylesheet */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0077B6;
    border-radius: 4px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 119, 182, 0.15);
}

/* Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before {
    left: 100%;
}

/* Sticky Header Shrink */
.header-scrolled {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #0077B6 0%, #00A8E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Counter Animation */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
    transform: translateX(0);
}

/* Testimonial Slider */
.testimonial-slide {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
}
.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

/* WhatsApp Float */
.whatsapp-float {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* Image Hover Zoom */
.img-zoom {
    overflow: hidden;
}
.img-zoom img {
    transition: transform 0.6s ease;
}
.img-zoom:hover img {
    transform: scale(1.05);
}

/* Navigation Active State */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Social Icon Hover */
.social-icon {
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: #D4AF37;
    color: #0A1628;
    transform: translateY(-3px);
}

/* Form Focus States */
input:focus, textarea:focus, select:focus {
    border-color: #0077B6 !important;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2) !important;
}

/* Gold Accent */
.gold-accent {
    color: #D4AF37;
}

/* Blue Primary */
.blue-primary {
    color: #0077B6;
}

.bg-blue-primary {
    background-color: #0077B6;
}

/* Process Step Active */
.process-step-active {
    background: #D4AF37;
    color: #0A1628;
}
