/* ===== NEAT AND CLEAN - HERO SLIDER ===== */
.nac-hero {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
}

.nac-hero-slider {
    position: relative;
    border-radius: var(--nac-radius-xl);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--nac-shadow-lg);
}

.nac-hero-track {
    display: flex;
    height: 100%;
    transition: var(--nac-transition-slow);
}

.nac-hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.nac-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 31, 54, 0.9) 0%, rgba(19, 45, 78, 0.7) 50%, rgba(19, 45, 78, 0.3) 100%);
    z-index: 1;
}

.nac-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    max-width: 600px;
    animation: nac-slideContentIn 0.8s ease-out;
}

@keyframes nac-slideContentIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tagline - WHITE background, DARK BLUE text */
.nac-hero-tag {
    display: inline-block;
    background: #ffffff;
    color: #132d4e;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--nac-font-button);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    white-space: nowrap;
}

/* Title - PURE WHITE */
.nac-hero-content h1 {
    font-family: var(--nac-font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.nac-hero-content h1 span {
    color: #c8a86b;
}

.nac-hero-content p {
    font-family: var(--nac-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

/* Button - WHITE background, DARK BLUE text */
.nac-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #132d4e;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: var(--nac-font-button);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--nac-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Button Hover - GOLD background, WHITE text */
.nac-hero-btn:hover {
    background: #c8a86b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--nac-shadow-lg);
}

.nac-hero-btn i {
    transition: var(--nac-transition);
}

.nac-hero-btn:hover i {
    transform: translateX(5px);
}

/* Slider Controls */
.nac-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.nac-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--nac-transition);
    padding: 0;
}

/* Active Dot - WHITE */
.nac-slider-dot.nac-active {
    background: #ffffff;
    border-color: #ffffff;
    width: 35px;
    border-radius: 10px;
}

.nac-slider-arrows {
    position: absolute;
    right: 40px;
    bottom: 35px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.nac-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--nac-transition);
    flex-shrink: 0;
}

/* Arrow Hover - WHITE background, DARK BLUE icon */
.nac-slider-arrow:hover {
    background: #ffffff;
    color: #132d4e;
    transform: scale(1.1);
}

/* Progress Bar - WHITE */
.nac-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ffffff;
    z-index: 3;
    transition: width 0.1s linear;
    width: 0%;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .nac-hero {
        padding: 15px 20px;
    }

    .nac-hero-slider {
        height: 450px;
        border-radius: var(--nac-radius-lg);
    }

    .nac-hero-content {
        padding: 50px 40px;
        max-width: 500px;
    }

    .nac-hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .nac-hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 380px;
    }

    .nac-slider-dots {
        left: 40px;
        bottom: 30px;
    }

    .nac-slider-arrows {
        right: 30px;
        bottom: 25px;
    }

    .nac-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nac-hero {
        padding: 10px 15px;
    }

    .nac-hero-slider {
        height: 420px;
        border-radius: var(--nac-radius-md);
    }

    .nac-hero-slide {
        align-items: flex-end;
    }

    .nac-hero-slide::before {
        background: linear-gradient(180deg, rgba(13, 31, 54, 0.3) 0%, rgba(19, 45, 78, 0.7) 50%, rgba(13, 31, 54, 0.95) 100%);
    }

    .nac-hero-content {
        padding: 30px 25px 70px;
        max-width: 100%;
        width: 100%;
    }

    .nac-hero-tag {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .nac-hero-content h1 {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .nac-hero-content p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        max-width: 100%;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .nac-hero-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .nac-slider-dots {
        left: 25px;
        bottom: 20px;
        gap: 8px;
    }

    .nac-slider-dot {
        width: 8px;
        height: 8px;
    }

    .nac-slider-dot.nac-active {
        width: 25px;
    }

    .nac-slider-arrows {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .nac-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .nac-hero {
        padding: 8px 10px;
    }

    .nac-hero-slider {
        height: 380px;
        border-radius: var(--nac-radius-sm);
    }

    .nac-hero-content {
        padding: 20px 20px 65px;
    }

    .nac-hero-tag {
        font-size: 0.6rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .nac-hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .nac-hero-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
    }

    .nac-hero-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .nac-slider-dots {
        left: 20px;
        bottom: 15px;
        gap: 6px;
    }

    .nac-slider-dot {
        width: 7px;
        height: 7px;
        border-width: 1.5px;
    }

    .nac-slider-dot.nac-active {
        width: 22px;
    }

    .nac-slider-arrows {
        right: 10px;
        bottom: 10px;
        gap: 6px;
    }

    .nac-slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Responsive - Very Small */
@media (max-width: 360px) {
    .nac-hero-slider {
        height: 340px;
    }

    .nac-hero-content {
        padding: 15px 15px 60px;
    }

    .nac-hero-content h1 {
        font-size: 1.4rem;
    }

    .nac-hero-content p {
        display: none;
    }

    .nac-hero-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .nac-slider-arrows {
        display: none;
    }

    .nac-slider-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .nac-hero-slider {
        height: 100vh;
        border-radius: 0;
    }

    .nac-hero-content {
        padding: 40px 30px;
    }

    .nac-hero-content h1 {
        font-size: 1.8rem;
    }

    .nac-hero-content p {
        display: none;
    }

    .nac-hero-tag {
        margin-bottom: 10px;
    }

    .nac-hero-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}