/* ============================================
   DEVICES PAGE - REDESIGNED HERO & NAVIGATION
   ============================================ */

/* Hero Section - Simplified & Centered */
.devices-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.15), transparent);
}

.devices-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFD700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #FFD700, #FF6B35);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: transparent;
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: 3px solid #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    background: #FFD700;
    color: #1A1A1A;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Quick Navigation Section */
.quick-navigation {
    padding: 3rem 0;
    background: #ffffff;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-nav-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-nav-card:hover::before {
    transform: scaleX(1);
}

.quick-nav-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nav-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.android-card .nav-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: #ffffff;
}

.ios-card .nav-icon {
    background: linear-gradient(135deg, #5E5E5E, #9E9E9E);
    color: #ffffff;
}

.windows-card .nav-icon {
    background: linear-gradient(135deg, #0078D4, #00BCF2);
    color: #ffffff;
}

.tv-card .nav-icon {
    background: linear-gradient(135deg, #FF6B35, #FFA500);
    color: #ffffff;
}

.quick-nav-card:hover .nav-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-nav-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.quick-nav-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.nav-arrow {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    font-size: 1rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.quick-nav-card:hover .nav-arrow {
    background: #FF6B35;
    color: #ffffff;
    transform: translateY(5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .devices-hero {
        min-height: 400px;
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .quick-nav-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-nav-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .quick-nav-card h3 {
        font-size: 1.25rem;
    }
}
