/* ==========================================
   Hygo Kurye - ProKurye Style Page
   ========================================== */

/* Hero Slider */
.hygo-hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #050510;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.95) 0%, rgba(5, 5, 16, 0.7) 50%, rgba(5, 5, 16, 0.4) 100%);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100vh;
    padding-top: 80px;
}

.slide-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.slide-content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.slide-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-visual img {
    width: 110%;
    max-width: none;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.slider-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Features Section */
.hygo-features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.hygo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hygo-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hygo-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hygo-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hygo-feature-card:hover::before {
    opacity: 1;
}

.hygo-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hygo-feature-icon i {
    font-size: 1.35rem;
    color: #fff;
}

.hygo-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.hygo-feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Product Promo Section */
.hygo-product-promo {
    padding: 100px 0;
    background: var(--bg-accent);
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promo-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-color);
    padding: 0.4rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.promo-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.promo-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promo-cta {
    margin-top: 1.5rem;
}

.promo-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.promo-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.promo-feature:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.promo-feature i {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.promo-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-feature p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .slide .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        max-width: 100%;
    }

    .slide-cta {
        justify-content: center;
    }

    .slide-visual {
        display: none;
    }

    .hygo-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hygo-hero-slider,
    .slider-wrapper {
        min-height: 85vh;
        height: 85vh;
    }

    .slide .container {
        height: 85vh;
        padding-top: 100px;
    }

    .slide-content h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .slider-controls {
        bottom: 25px;
    }

    .hygo-features {
        padding: 60px 0;
    }

    .hygo-features-grid {
        grid-template-columns: 1fr;
    }

    .hygo-product-promo {
        padding: 60px 0;
    }

    .promo-features-grid {
        grid-template-columns: 1fr;
    }

    .promo-text h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.65rem;
    }

    .slide-cta {
        flex-direction: column;
        align-items: center;
    }

    .slide-cta .btn-primary,
    .slide-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hygo-feature-card {
        padding: 1.75rem;
    }
}
