.contact-section {
    padding: 2rem 2rem;
    background-color: var(--dark-background);
    color: var(--text-color);
}

.contact-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.1rem;
}


.faq-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    border-radius: 12px;
    background-color: rgba(20, 20, 20, 0.8);
    font-weight: 700;
    padding: 1.5rem;
}

.section-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    background: #FFF;
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgba(255,255,255,0.95);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.view-all:hover {
    
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form-section {
    width: 100%;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
    position: relative;
    z-index: 2;
    background: transparent;
}

.contact-form-section h2 {
    width: 100%;
    border-radius: 12px;
    height: 80px;
    background-color: rgba(20, 20, 20, 0.8);
    font-weight: 700;
    
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.95);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(30, 30, 30, 0.8);
}

.submit-btn {
    width: 100%;
    letter-spacing: 2px;
    padding: 1rem;
    background-color: #8A2BE2;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    
}

.submit-btn:hover {
    background: rgba(30, 30, 30, 0.8);
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background: var(--primary-color);
    }
    50% {
        background: var(--primary-hover);
    }
    100% {
        background: var(--primary-color);
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
        margin: -1.5rem;
    }

    .section-header {
        flex-direction: column;
        height: auto;
        padding: 1.5rem;
        gap: 1rem;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 1.2rem;
        text-align: left;
        padding: 0;
        height: auto;
        margin-bottom: 0.5rem;
    }

    .view-all {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        font-weight: 500;
    }

    .contact-form-section h2 {
        font-size: 1.2rem;
        text-align: left;
        padding: 1.2rem;
        height: auto;
        min-height: 60px;
    }

    .contact-form {
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1rem;
        min-height: 45px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 1.2rem;
        margin-top: 0.5rem;
        font-size: 1.1rem;
    }
}