/* ══════════════════════════════════════════════════════════════
   NOFNIKA MODERN LUXURY HERO SLIDER STYLES
   Glassmorphism + 3D Micro-interactions + Responsive Luxury Canvas
══════════════════════════════════════════════════════════════ */

.nof-hero-modern {
    position: relative;
    width: 100%;
    padding: 16px 16px 28px;
    background: var(--bg, #f8fafc);
    box-sizing: border-box;
}

.nof-hero-modern-inner {
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
}

.nof-modern-swiper {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #09121d;
    min-height: 480px;
}

.nof-slide-item {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: var(--slide-bg);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nof-slide-canvas {
    width: 100%;
    padding: 45px 55px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.nof-slide-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

/* Content Column */
.nof-slide-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
    max-width: 640px;
}

.nof-slide-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 700;
    color: var(--slide-accent, #ffd700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nof-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    animation: nof-pulse 2s infinite;
}

@keyframes nof-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.nof-slide-kicker {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.nof-slide-title {
    margin: 0;
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 900;
    line-height: 1.35;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nof-slide-desc {
    margin: 0;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
}

/* Actions */
.nof-slide-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.nof-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--slide-accent, #d4af37);
    color: #09121d !important;
    padding: 13px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.35);
}

.nof-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.5);
}

.nof-btn-primary svg {
    transition: transform 0.25s ease;
}

.nof-btn-primary:hover svg {
    transform: translateX(-4px);
}

.nof-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.nof-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Features list */
.nof-slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nof-feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.nof-feat-pill svg {
    color: var(--slide-accent, #d4af37);
}

/* Visual Column */
.nof-slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nof-visual-halo {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--slide-accent, #d4af37) 0%, transparent 70%);
    opacity: 0.25;
    filter: blur(50px);
    pointer-events: none;
    animation: nof-halo-float 6s ease-in-out infinite alternate;
}

@keyframes nof-halo-float {
    0% { transform: scale(0.9) translate(-10px, 10px); }
    100% { transform: scale(1.15) translate(15px, -15px); }
}

.nof-poster-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    border-radius: 22px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nof-slide-item:hover .nof-poster-wrapper {
    transform: translateY(-6px) scale(1.015);
}

.nof-poster-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Floating Chips */
.nof-float-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    z-index: 5;
    animation: nof-chip-bounce 4s ease-in-out infinite alternate;
}

.nof-chip-top {
    top: -12px;
    right: 20px;
    border-right: 3px solid var(--slide-accent, #d4af37);
}

.nof-chip-bot {
    bottom: -12px;
    left: 20px;
    border-left: 3px solid #10b981;
    animation-delay: 2s;
}

@keyframes nof-chip-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.nof-chip-icon {
    color: var(--slide-accent, #ffd700);
}

/* Controls */
.nof-swiper-controls {
    position: absolute;
    bottom: 22px;
    left: 35px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nof-ctrl-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nof-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nof-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    position: static !important;
    width: auto !important;
}

.nof-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    margin: 0 !important;
}

.nof-pagination .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--slide-accent, #d4af37);
    box-shadow: 0 0 10px var(--slide-accent, #d4af37);
}

/* Responsive Rules */
@media (max-width: 992px) {
    .nof-slide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nof-slide-canvas {
        padding: 35px 25px;
    }
    .nof-slide-visual {
        order: -1;
    }
    .nof-poster-wrapper {
        max-width: 440px;
    }
    .nof-poster-img {
        max-height: 320px;
    }
    .nof-swiper-controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
    }
}

@media (max-width: 600px) {
    .nof-hero-modern {
        padding: 10px 10px 20px;
    }
    .nof-modern-swiper {
        border-radius: 20px;
        min-height: 520px;
    }
    .nof-slide-canvas {
        padding: 24px 18px 50px;
    }
    .nof-slide-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .nof-btn-primary, .nof-btn-secondary {
        justify-content: center;
        text-align: center;
    }
    .nof-float-chip {
        font-size: 11px;
        padding: 6px 12px;
    }
}
