/**
 * New Wave Elementor Addon Styles
 */

/* ========================================
   HERO SECTION
   ======================================== */
.nw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background */
.nw-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nw-hero__video,
.nw-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nw-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

/* Glow Effect */
.nw-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(17, 181, 228, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Content */
.nw-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 100px 24px;
}

/* Badge */
.nw-hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Title */
.nw-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.nw-hero__title-accent {
    color: #11b5e4;
}

/* Subtitle */
.nw-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTAs */
.nw-hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #11b5e4;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(17, 181, 228, 0.3);
}

.btn-primary--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nw-hero__glow {
        width: 400px;
        height: 400px;
    }
    
    .nw-hero__content {
        padding: 80px 20px;
    }
    
    .nw-hero__ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .nw-hero__ctas .btn-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
