/* Support Page Styles */
.support-page {
    color: #333;
    line-height: 1.6;
}

/* Support Hero */
.support-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff0263 0%, #ff01aa 100%);
    color: white;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-form button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.search-form button svg {
    fill: #4CAF50;
}

/* Support Grid */
.support-grid {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.support-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.support-card.contact {
    border-top: 4px solid #4CAF50;
}

.support-card.chat {
    border-top: 4px solid #2196F3;
}

.support-card.call {
    border-top: 4px solid #FF9800;
}

.support-card.faq {
    border-top: 4px solid #9C27B0;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.support-card.contact .card-icon svg {
    fill: #f50b6c;
}

.support-card.chat .card-icon svg {
    fill: #2196F3;
}

.support-card.call .card-icon svg {
    fill: #FF9800;
}

.support-card.faq .card-icon svg {
    fill: #9C27B0;
}

.support-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-top: 0;
    color: #2c3e50;
}

.support-form .form-group {
    margin-bottom: 1.5rem;
}

.support-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.support-form textarea {
    min-height: 150px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.contact-info {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #07daff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.method-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.method-content a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.method-content p {
    margin: 0.5rem 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.accordion-content p,
.accordion-content ol,
.accordion-content ul {
    margin-top: 0;
}

.accordion-content a {
    color: #4CAF50;
    font-weight: 500;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    margin-bottom: 1rem;
    color: #666;
}

/* Status Section */
.status-section {
    padding: 4rem 0;
    background-color: white;
}

.status-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.status-header h2 {
    margin: 0;
    color: #2c3e50;
}

.status-indicator {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.indicator-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-indicator.online .indicator-dot {
    background-color: #4CAF50;
}

.status-indicator.minor .indicator-dot {
    background-color: #FFC107;
}

.status-indicator.major .indicator-dot {
    background-color: #F44336;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.status-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.status {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.status.online .indicator-dot {
    background-color: #4CAF50;
}

.status.minor .indicator-dot {
    background-color: #FFC107;
}

.status.major .indicator-dot {
    background-color: #F44336;
}

.status-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-footer p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .support-hero {
        padding: 3rem 0;
    }
    
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 1rem;
    }
    
    .method-icon {
        margin-bottom: 0.5rem;
    }
    
    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .support-grid .grid {
        grid-template-columns: 1fr;
    }
    
    .form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
}