/* Modern Support Page Styles */

:root {
    --primary-color: #00bcd4;
    --secondary-color: #1e88e5;
    --accent-color: #fdd835;
    --text-main: #ffffff;
    --text-muted: #b0b3b8;
    --bg-dark: #0a0e1a;
    --glass-bg: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --success: #00e676;
    --error: #ff5252;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Background Effects */
.support-container {
    padding-bottom: 4rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.support-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.support-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.support-hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    position: relative;
}

.support-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.support-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Layout Grid */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 188, 212, 0.3);
}

/* Sidebar Styling */
.contact-card h3,
.faq-preview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.method-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 188, 212, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.method-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.method-icon.phone {
    background: rgba(30, 136, 229, 0.15);
    color: var(--secondary-color);
}

.method-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.method-value {
    font-weight: 600;
    font-size: 1rem;
}

.arrow-icon {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.5;
}

.working-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.working-hours i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.wh-title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.wh-time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Preview Card */
.faq-preview-card {
    margin-top: 2rem;
}

.mini-faq-list {
    margin-top: 1.5rem;
}

.mini-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s;
}

.mini-faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mini-faq-item .q-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.mini-faq-item .q-header i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.mini-faq-item .q-body {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: none;
}

.mini-faq-item.active .q-body {
    display: block;
    animation: fadeIn 0.3s;
}

.mini-faq-item.active .q-header i {
    transform: rotate(45deg);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap 0.2s;
}

.view-all-link:hover {
    gap: 10px;
}

/* Form Styles */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.response-badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-helper {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s;
    pointer-events: none;
}

.textarea-icon {
    top: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(10, 14, 26, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 14px 14px 48px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 14, 26, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-group input:focus+.input-icon,
.form-group textarea:focus+.input-icon {
    color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.select-arrow {
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 188, 212, 0.4);
    filter: brightness(1.1);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Enrollment Banner */
.enrollment-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(0, 188, 212, 0.1));
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-main);
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.banner-text p {
    color: var(--text-muted);
    margin: 0;
}

.banner-btn {
    background: white;
    color: var(--bg-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-btn:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

/* Status Messages & Loaders */
.loading-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
    align-items: flex-start;
    gap: 15px;
    animation: slideDown 0.3s ease;
}

.success-message {
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.success-icon {
    color: var(--success);
    font-size: 1.5rem;
}

.error-message {
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.error-icon {
    color: var(--error);
    font-size: 1.5rem;
}

.success-message h4,
.error-message h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.success-message p,
.error-message p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .support-layout {
        grid-template-columns: 1fr;
    }

    .support-sidebar {
        order: 2;
    }

    .support-main-content {
        order: 1;
    }

    .support-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 12px;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-icon {
        margin-bottom: 10px;
    }
}