/* Custom Styles for Aya Hire Center */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fdfcfb;
}

::-webkit-scrollbar-thumb {
    background: #e11d48;
    border-radius: 10px;
    border: 3px solid #fdfcfb;
}

::-webkit-scrollbar-thumb:hover {
    background: #be123c;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

/* Reveal on Scroll Animation */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #e11d48 !important;
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 60px !important;
    height: 60px !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #e11d48;
    border-color: #e11d48;
    transform: scale(1.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Shadow Customization */
.shadow-3xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

#mobile-menu.hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

#mobile-menu:not(.hidden) {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Custom Utilities */
.tracking-tightest { letter-spacing: -0.05em; }
.tracking-widest-xl { letter-spacing: 0.5em; }

/* Image Hover Effects */
.group:hover img {
    transform: scale(1.05);
}

/* Form Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2);
}