/* asset_eu/css/style.css */

html {
    scroll-behavior: smooth;
}

.header-scrolled {
    background: #fff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
}

.header-scrolled .nav-link,
.header-scrolled .logo,
.header-scrolled .phone-text {
    color: #374151 !important;
}

.seo-preload {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s;
}

.hero-slide.show {
    opacity: 1;
    z-index: 1;
}

.tab-active {
    background: #2563eb !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .4);
    border: 2px solid #1d4ed8 !important;
    font-weight: 700;
}

.scrollable {
    max-height: 520px;
    overflow: auto;
    padding-right: 8px;
}

.hero-cta {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    transition: transform .2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    transition: left .4s;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
    display: inline-block;
    transition: color .3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mega-menu-trigger {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1280px;
    background: #fff;
    border-top: 3px solid #2563eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    z-index: 100;
}

.mega-menu-trigger:hover .mega-menu {
    display: block;
}

.mega-menu-column h4 {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #dbeafe;
}

.mega-menu-link {
    display: block;
    padding: .5rem 0;
    color: #4b5563;
    font-size: .875rem;
    transition: all .2s;
}

.mega-menu-link:hover {
    color: #2563eb;
    padding-left: .5rem;
}

.floating-btn {
    transition: all .3s;
}

.floating-btn:hover {
    transform: scale(1.15);
}

.h2-tab-style {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1e3a8a;
    padding-bottom: .5rem;
    border-bottom: 3px solid #bfdbfe;
}

.h3-tab-style {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    color: #1d4ed8;
}

.h4-tab-style {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: .5rem;
    color: #4b5563;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

.ul-tab-style {
    list-style: none;
    padding-left: 0;
    margin-top: .75rem;
}

.ul-tab-style li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1.5;
}

.ul-tab-style li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 900;
    font-size: 1.2rem;
}

.city-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 600;
    margin: .25rem;
}

/* MOBILE FIXES */
@media(max-width:768px) {
    .hero-slide .max-w-4xl {
        padding: 1.25rem !important;
    }

    .mega-menu {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
    }
}