/*
Bu yazılım anxcure.com'a aittir.
Tüm hakları anxcure.com tarafından saklıdır.
İzinsiz kullanım, kopyalama veya dağıtım yasaktır.
© 2025 anxcure.com. Tüm hakları saklıdır.
*/

/* Support Modern CSS - ANX CURE Destek Sayfası */

:root {
    /* DESTEK SAYFASI RENKLERİ - STANDARDIZE EDİLMİŞ */
    --primary-color: #4FD1C5;
    --secondary-color: #38B2AC;
    --accent-color: #81E6D9;
    --turquoise: #4FD1C5;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --success-color: #48bb78;
    
    /* Metin Renkleri */
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    
    /* Arka Plan Renkleri - İyileştirilmiş */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #2D3748;
    
    /* Glassmorphism - Daha Belirgin */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(79, 209, 197, 0.15);
    --glass-shadow: 0 8px 32px rgba(79, 209, 197, 0.08);
    
    /* Gradientler - Standardize Edilmiş */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--warning-color) 0%, #f59e0b 100%);
    
    /* Gölgeler - Yeşil Tonlu */
    --shadow-sm: 0 1px 3px rgba(79, 209, 197, 0.08);
    --shadow-md: 0 4px 12px rgba(79, 209, 197, 0.1);
    --shadow-lg: 0 10px 25px rgba(79, 209, 197, 0.12);
    --shadow-xl: 0 20px 40px rgba(79, 209, 197, 0.15);
    --shadow-2xl: 0 25px 50px rgba(79, 209, 197, 0.2);
    
    /* Animasyonlar */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* Dark Theme */
[data-theme="dark"] {
    --text-primary: #F7FAFC;
    --text-secondary: #E2E8F0;
    --text-muted: #A0AEC0;
    --text-light: #718096;
    
    --bg-primary: #1A202C;
    --bg-secondary: #2D3748;
    --bg-tertiary: #4A5568;
    
    --glass-bg: rgba(45, 55, 72, 0.6);
    --glass-border: rgba(79, 209, 197, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Hero Section - İyileştirilmiş */
.support-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--background-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(79, 209, 197, 0.1);
}

.hero-content {
    position: relative;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1) 0%, rgba(74, 222, 128, 0.15) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(79, 209, 197, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    display: block;
    visibility: visible;
    opacity: 1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobil için gradient text düzeltmesi */
@media (max-width: 768px) {
    .gradient-text {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        background-clip: unset !important;
        color: var(--primary-color) !important;
    }
    
    .highlight-text {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        background-clip: unset !important;
        color: var(--warning-color) !important;
    }
    
    .hero-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-description {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Support Visual */
.support-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.support-icon {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    box-shadow: var(--shadow-2xl);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.support-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.element-3 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

/* Support Options Section - İyileştirilmiş */
.support-options {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--card-bg) 100%);
    border-top: 1px solid rgba(79, 209, 197, 0.1);
    border-bottom: 1px solid rgba(79, 209, 197, 0.1);
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.support-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 209, 197, 0.15);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.08);
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    font-size: 16px;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

/* Support Form Section */
.support-form-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(32, 41, 58, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Light theme için form container */
[data-theme="light"] .form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 16px;
    filter: drop-shadow(0 0 2px rgba(79, 209, 197, 0.5));
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(79, 209, 197, 0.2);
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: all var(--transition-normal);
    background: rgba(45, 55, 72, 0.5);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 174, 192, 0.6);
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.2);
    background: rgba(45, 55, 72, 0.7);
}

/* Light theme için input stilleri */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: var(--bg-primary);
    border: 2px solid var(--bg-tertiary);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group select::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: var(--text-muted);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234FD1C5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group select option {
    background: #2D3748;
    color: #F7FAFC;
    padding: 12px;
}

[data-theme="light"] .form-group select option {
    background: var(--card-bg);
    color: #1A202C;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #4FD1C5 0%, #38B2AC 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(79, 209, 197, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(79, 209, 197, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit i {
    font-size: 20px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #38B2AC;
    border: 1px solid #bbf7d0;
}

/* Dark theme için alert stilleri */
[data-theme="dark"] .alert-danger {
    background: rgba(220, 38, 38, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

[data-theme="dark"] .alert-success {
    background: rgba(22, 163, 74, 0.1);
    color: #86efac;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design - Mobil Hero Section */
@media (max-width: 768px) {
    .support-hero {
        min-height: 60vh;
        padding: 20px 0 15px 0;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 15px;
        position: relative;
        z-index: 10;
    }
    
    .support-badge {
        margin: 0 auto 20px auto;
        display: inline-flex;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 0 30px 0;
        text-align: center;
        line-height: 1.5;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 20px 0 0 0;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        min-width: 120px;
        flex: 1;
        padding: 15px 10px;
        background: rgba(79, 209, 197, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(79, 209, 197, 0.2);
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
        color: var(--primary-color);
    }
    
    .stat-label {
        font-size: 0.9rem;
        margin: 0;
        color: var(--text-secondary);
    }
    
    .stat-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        margin: 20px;
        padding: 32px 24px;
        background: rgba(32, 41, 58, 0.95);
    }
    
    [data-theme="light"] .form-container {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-icon {
        display: none;
    }
    
    .support-visual {
        display: none;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .support-hero {
        min-height: 50vh;
        padding: 15px 0 10px 0;
    }
    
    .hero-content {
        padding: 0 3px;
    }
    
    .support-badge {
        margin: 0 auto 12px auto;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin: 0 0 15px 0;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 5px;
        margin: 0 0 20px 0;
        line-height: 1.4;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 15px;
        margin: 15px 0 0 0;
        align-items: center;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 80px;
        flex: 1;
        gap: 6px;
        padding: 12px 8px;
        background: rgba(79, 209, 197, 0.1);
        border-radius: 10px;
        border: 1px solid rgba(79, 209, 197, 0.2);
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-icon i {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin: 0;
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
        margin: 0;
        color: var(--text-secondary);
    }
    
    .stat-content {
        gap: 6px;
    }
    
    .support-icon {
        display: none;
    }
    
    .support-visual {
        display: none;
    }
    
    .form-container {
        margin: 15px;
        padding: 24px 20px;
        background: rgba(32, 41, 58, 0.95);
    }
    
    [data-theme="light"] .form-container {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .support-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Utility Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Focus States */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .support-hero,
    .support-options,
    .faq-section {
        display: none;
    }
    
    .support-form-section {
        padding: 20px 0;
    }
    
    .form-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}


