/* ========================================
   PREMIUM PROFESSIONAL HERO BANNER
   ======================================== */

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 85vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Premium gradient overlay for perfect text readability */
.carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(2, 132, 199, 0.15) 0%,
            rgba(14, 165, 233, 0.08) 25%,
            transparent 50%,
            rgba(2, 132, 199, 0.12) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Premium text shadows for hero content */
.hero-content {
    position: relative;
    z-index: 10 !important;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 100%);
    border-radius: 30px;
    backdrop-filter: blur(2px);
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(2, 132, 199, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(56, 189, 248, 0.2) !important;
    letter-spacing: -0.02em;
    animation: heroTitleFloat 3s ease-in-out infinite;
}

@keyframes heroTitleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-subtitle {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-bottom: 35px !important;
    line-height: 1.6 !important;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(56, 189, 248, 0.15) !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.hero-cta .btn {
    padding: 18px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15) !important;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .btn:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(2, 132, 199, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.2) !important;
}

.hero-cta .btn-secondary,
.hero-cta .btn-outline {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover,
.hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Enhanced carousel slides */
.carousel-slide {
    filter: brightness(0.9) contrast(1.1) !important;
    transition: all 1.5s ease-in-out !important;
}

.carousel-slide.active {
    filter: brightness(1) contrast(1.15) !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem !important;
    }

    .hero-subtitle {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 75vh !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-cta .btn {
        padding: 15px 32px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}