/* ===================================================
   ENTERPRISE PROMOTIONAL BANNER
   Premium • Marketing Level • Smooth
=================================================== */
body {
    font-family: 'Inter', sans-serif; /* Inter supports €, accented letters */
}

.top-ad-bar {
    width: 100%;
    background: linear-gradient(120deg, #0f254a, #1a3d75, #163a6b);
    padding: 18px 0;
    font-size: 16px;
    z-index: 9999;
    transition: transform 0.6s ease, opacity 0.6s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.top-ad-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.top-ad-bar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.top-ad-inner {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-ad-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-ad-text {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.5;
    font-size: 17px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
}

.live-dot::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(3); opacity: 0; }
    100% { opacity: 0; }
}

.top-ad-btn {
    background: #ffffff;
    color: #1a3d75;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.top-ad-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: rgba(255,255,255,0.6);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-ad-btn:hover::before {
    opacity: 1;
}

.top-ad-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .top-ad-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* ===================================================
   ENTERPRISE CINEMATIC HERO SLIDER
=================================================== */
.slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bababa; /* initial gray */
    transition: background 1s ease;
    border-radius: 12px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
    position: relative;
}

/* Individual Slide */
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    opacity: 0;
    position: absolute;
    top: 0; left: 0;
    background: #bababa; /* default gray */
    transition: opacity 1s ease, background 1s ease;
}

.slide.active {
    opacity: 1;
    position: relative;
    background: #999797; /* active slide */
    z-index: 1;
}

/* Slide Content */
.slide-content {
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 1s ease forwards;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.slide-content a {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #1f6bff;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(31,107,255,0.4);
    transition: all 0.3s ease;
}

.slide-content a:hover {
    background: #174ec7;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(31,107,255,0.5);
}

/* ================= NAVIGATION ARROWS ================= */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover,
.next:hover {
    color: rgba(0,0,0,0.6);
    background: rgba(255,255,255,0.2);
}

.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 768px) {
    .prev, .next { display: none; }
}

/* ================= DOTS ================= */
.dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dots span.active {
    background: #1f6bff;
    transform: scale(1.2);
}

@media(max-width:768px){
    .dots { display: none; }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
    .slide-content h2 { font-size:2.5rem; }
    .slide-content p { font-size:1.1rem; }
}

@media(max-width:768px){
    .slide-content h2 { font-size:2rem; }
    .slide-content p { font-size:1rem; }
}

/* ================= ENTERPRISE BANNER + CTA ================= */
.enterprise-banner {
    background: linear-gradient(135deg, #0a1a33, #102b57);
    padding: 70px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.enterprise-banner-inner {
    max-width: 1100px;
    margin: auto;
    animation: fadeInBanner 1.2s ease forwards;
}

.enterprise-banner-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    animation: slideUp 1s ease forwards;
}

.enterprise-banner-sub {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideUp 1.2s ease forwards;
}

.enterprise-banner-btn {
    background: #1f6bff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(31,107,255,0.4);
    animation: slideUp 1.4s ease forwards;
}

.enterprise-banner-btn:hover {
    background: #174ec7;
    transform: translateY(-3px);
}

@keyframes fadeInBanner {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}
