/* ========================================
   CORPORATE HERO SLIDER LAYOUT
   Enterprise Full-Width Design
   ======================================== */

/* Enterprise Navigation */
.navbar {
    background: #ffffff !important;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar-brand .logo-img {
    height: 45px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: #023e58;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.3rem;
    margin: 0 2px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #eb711d;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #eb711d;
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 70%;
}

.btn-outline-primary {
    border-color: #eb711d;
    color: #eb711d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #eb711d;
    border-color: #eb711d;
    color: #ffffff;
}

/* Full-Screen Hero Slider */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-full.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 62, 88, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Centered Hero Content */
.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-intro {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #eb711d;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-out;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeIn 1.4s ease-out;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
    animation: fadeIn 1.6s ease-out;
}

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

.hero-cta {
    animation: fadeIn 1.8s ease-out;
}

.hero-cta .btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: #eb711d;
    border: none;
    box-shadow: 0 4px 15px rgba(235, 113, 29, 0.4);
}

.hero-cta .btn-primary:hover {
    background: #d66318;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 113, 29, 0.5);
}

.hero-cta .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-cta .btn-outline-light:hover {
    background: #ffffff;
    color: #023e58;
}

/* Hero Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-arrow:hover {
    background: #eb711d;
    border-color: #eb711d;
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #eb711d;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(235, 113, 29, 0.7);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-light .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .hero-fullscreen {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-brand .logo-img {
        height: 38px;
    }
    
    .hero-fullscreen {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-intro {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta .btn {
        padding: 12px 25px;
        font-size: 14px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-cta .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    .hero-indicators {
        bottom: 25px;
    }
}

/* Accessibility */
.hero-arrow:focus,
.indicator:focus {
    outline: 2px solid #eb711d;
    outline-offset: 3px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(235, 113, 29, 0.1);
    color: #eb711d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: #eb711d;
    color: #ffffff;
    transform: translateY(-2px);
}

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