/* Support Page Specific Styles */

/* Hero Section */
.support-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: var(--space-16);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6) contrast(1.1);
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg) 0%, rgba(5,5,5,0.8) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-6);
    animation: fadeInScale 0.8s ease-out;
}

.hero-content p {
    font-size: var(--size-text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Container */
.search-container {
    display: flex;
    gap: var(--space-4);
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    background-color: rgba(17, 17, 17, 0.7);
    border: 1px solid var(--color-primary);
    color: var(--color-text-main);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--size-text-base);
    transition: all var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    background-color: rgba(17, 17, 17, 0.9);
}

.search-btn {
    padding: var(--space-4) var(--space-8);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .search-container {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }
}

/* Features Section */
.features-section {
    padding: var(--space-16) 0;
    margin: var(--space-16) 0;
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.features-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-4);
}

.features-header p {
    font-size: var(--size-text-base);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-feature {
    padding: var(--space-8);
    background: linear-gradient(145deg, var(--color-surface), #0a0a0a);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.support-feature:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.support-feature h3 {
    font-family: var(--font-mono);
    color: var(--color-primary);
    font-size: var(--size-text-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.support-feature p {
    color: var(--color-text-muted);
    font-size: var(--size-text-sm);
    line-height: 1.6;
}

/* Support Options Section */
.support-options {
    padding: var(--space-16) 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: var(--space-16) 0;
}

.options-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.options-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--space-4);
}

/* Support Methods Grid */
.support-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .support-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .support-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-method {
    padding: var(--space-8);
    background: linear-gradient(145deg, var(--color-bg), #0a0a0a);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
}

.support-method:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.support-method h3 {
    font-size: var(--size-text-base);
    margin-bottom: var(--space-4);
}

.support-method p {
    font-size: var(--size-text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-16) 0;
    margin: var(--space-16) 0;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--space-4);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--space-6);
    background: linear-gradient(145deg, var(--color-surface), #0a0a0a);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color var(--transition-base);
}

.faq-item.active .faq-question {
    background: linear-gradient(145deg, var(--color-primary), rgba(0, 243, 255, 0.1));
    color: var(--color-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: var(--space-6);
    background-color: rgba(5, 5, 5, 0.5);
    color: var(--color-text-muted);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Section */
.contact-section {
    padding: var(--space-16) 0;
    background: radial-gradient(circle at center, #0a1f25 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    margin: var(--space-16) 0;
    text-align: center;
}

.contact-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--space-6);
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.contact-section p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.text-center {
    text-align: center;
}

.py-large {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .support-hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-content p {
        font-size: var(--size-text-base);
    }
}
