/* Hire Consultancy - Custom Styles */

/* Brand Colors */
:root {
    --brand-blue: #49a0d5;
    --brand-blue-dark: #3a8bc0;
    --brand-blue-light: #5cb3e6;
}

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

/* Custom Button Styles */
.btn-primary {
    @apply bg-[#49a0d5] text-white px-6 py-2.5 rounded-lg hover:bg-[#3a8bc0] hover:shadow-lg transition-all font-medium;
}

.btn-white {
    @apply bg-white text-[#49a0d5] px-8 py-4 rounded-lg hover:bg-gray-50 hover:shadow-xl transition-all text-lg font-semibold;
}

/* Navigation Link Active State */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Custom Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.2s ease-out;
}

.animate-slide-in-left {
    animation: slide-in-left 0.5s ease-out;
}

.animate-slide-in-right {
    animation: slide-in-right 0.5s ease-out;
}

/* Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(73, 160, 213, 0.15);
}

/* WhatsApp Float Button Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Form Focus States */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(73, 160, 213, 0.1);
}

/* Gradient Backgrounds */
.bg-gradient-brand {
    background: linear-gradient(135deg, #49a0d5 0%, #3a8bc0 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue-dark);
}

/* Mobile Menu Transitions */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu:not(.hidden) {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

/* Hero Image Overlay */
.hero-overlay {
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(73, 160, 213, 0.9) 0%, rgba(58, 139, 192, 0.8) 100%);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    nav, footer {
        display: none;
    }
}