/* Destek Sayfası - Minimal ve Sade Tasarım */

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #495057;
}

.breadcrumb-item.active {
    color: #495057;
}

/* Hero Section */
.support-hero {
    background: #181d26;
    background-image: url('../images/hero-bg.png');
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.support-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.support-question {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
}

.support-welcome {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e9ecef;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-btn {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.support-btn:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Content Section */
.support-content {
    background: #0f0f23;
    color: white;
    min-height: 100vh;
    padding: 2rem 0;
}

/* Sol Bölüm - İçerik ve Fotoğraf */
.support-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.support-services-tag {
    display: inline-block;
    background: #1a1a2e;
    color: #a0a0a0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    width: fit-content;
}

.support-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.support-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.support-bg-image {
    width: 100%;
    height: 300px;
    background: url('../images/support-bg.jpg') center/cover;
    border-radius: 16px;
    margin-top: auto;
}

/* Sağ Bölüm - Form */
.support-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.support-form-card {
    background: #1a1a2e;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
}

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

.form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.support-input,
.support-textarea {
    background: #0f0f23;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.support-input:focus,
.support-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.support-input::placeholder,
.support-textarea::placeholder {
    color: #666;
}

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

.form-check {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.support-checkbox {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: #8b5cf6;
}

.support-terms-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.support-terms-link {
    color: #8b5cf6;
    text-decoration: none;
}

.support-terms-link:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.support-submit-btn {
    background: white;
    color: #1a1a2e;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .support-left,
    .support-right {
        padding: 1rem;
    }
    
    .support-main-title {
        font-size: 2rem;
    }
    
    .support-bg-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-question {
        font-size: 2rem;
    }
    
    .support-welcome {
        font-size: 1.1rem;
    }
    
    .support-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .support-content {
        padding: 1rem 0;
    }
    
    .support-left,
    .support-right {
        padding: 1rem;
    }
    
    .support-main-title {
        font-size: 1.75rem;
    }
    
    .support-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .support-bg-image {
        height: 200px;
        margin-top: 2rem;
    }
    
    .support-form-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .support-title {
        font-size: 2rem;
    }
    
    .support-question {
        font-size: 1.75rem;
    }
    
    .support-welcome {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .support-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .support-main-title {
        font-size: 1.5rem;
    }
    
    .support-description {
        font-size: 0.95rem;
    }
    
    .support-form-card {
        padding: 1.5rem;
    }
    
    .support-input,
    .support-textarea {
        padding: 0.625rem 0.875rem;
    }
}

/* SSS (Sık Sorulan Sorular) Bölümü Stilleri */
.faq-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.faq-title i {
    color: #8b5cf6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SSS Accordion Stilleri */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: #333;
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-btn-color: white;
    --bs-accordion-btn-bg: #1a1a2e;
    --bs-accordion-btn-border-color: #333;
    --bs-accordion-btn-focus-border-color: #8b5cf6;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25);
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.5rem;
    --bs-accordion-active-color: white;
    --bs-accordion-active-bg: #2a2a3e;
}

.faq-item {
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.faq-button {
    background: #1a1a2e !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem !important;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-button:not(.collapsed) {
    background: #2a2a3e !important;
    color: white !important;
    box-shadow: none !important;
}

.faq-button:focus {
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25) !important;
    border: none !important;
}

.faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-button i {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) i {
    color: #a78bfa;
    transform: scale(1.1);
}

.faq-body {
    background: #2a2a3e;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    padding: 1.5rem !important;
    border-top: 1px solid #333;
}

/* SSS Animasyonları */
.accordion-collapse {
    transition: all 0.3s ease;
}

.accordion-collapse.collapsing {
    transition: height 0.3s ease;
}

/* SSS Responsive Tasarım */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-button {
        font-size: 1rem;
        padding: 1rem 1.25rem !important;
    }
    
    .faq-body {
        font-size: 0.95rem;
        padding: 1.25rem !important;
    }
    
    .faq-button i {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-button {
        font-size: 0.95rem;
        padding: 0.875rem 1rem !important;
    }
    
    .faq-body {
        font-size: 0.9rem;
        padding: 1rem !important;
    }
    
    .faq-button i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}