/* Support Page - Mobile First & Fully Responsive */

/* Support Hero Section */
.support-hero {
    margin-top: 50px;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.support-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-hero-content {
    max-width: 100%;
}

.support-hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.support-hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.pricing-highlight {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.price-tag {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--accent);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.price-features {
    padding-top: 1rem;
}

.price-features p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Support Services Section */
.support-services {
    padding: 2rem 1rem;
    background: white;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:active {
    transform: scale(0.98);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.service-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Us Section */
.why-us {
    padding: 2rem 1rem;
    background: var(--light);
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:active {
    transform: scale(0.98);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Support Contact Section */
.support-contact {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    line-height: 1.5;
}

/* Tablet & Up (768px+) */
@media (min-width: 768px) {
    .support-hero {
        padding: 3rem 2rem;
    }
    
    .support-hero-title {
        font-size: 3rem;
    }
    
    .support-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-highlight {
        flex-direction: row;
        gap: 2rem;
        padding: 2rem 2.5rem;
        text-align: left;
    }
    
    .price-tag {
        border-right: 2px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
        padding-right: 2rem;
        padding-bottom: 0;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .price-features p {
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .support-services {
        padding: 3rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .why-us {
        padding: 3rem 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .support-contact {
        padding: 3rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Desktop (968px+) */
@media (min-width: 968px) {
    .support-hero {
        padding: var(--spacing-xl) 2rem;
    }
    
    .support-hero-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .support-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
    
    .pricing-highlight {
        gap: 3rem;
        padding: 2rem 3rem;
    }
    
    .price-tag {
        padding-right: 3rem;
    }
    
    .price-amount {
        font-size: 4rem;
    }
    
    .price-features p {
        font-size: 1.1rem;
    }
    
    .support-services {
        padding: var(--spacing-xl) 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-color: var(--primary);
    }
    
    .service-card:hover::before {
        transform: scaleX(1);
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .service-name {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-features li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    .why-us {
        padding: var(--spacing-xl) 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }
    
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        animation: bounce 2s ease-in-out infinite;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    .benefit-card:nth-child(even) .benefit-icon {
        animation-delay: 0.3s;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .support-contact {
        padding: var(--spacing-xl) 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}
