/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

.contact-section {
    background: var(--dark-gray);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--medium-gray);
}

.contact-form-wrapper h2 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    padding: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
    opacity: 0.5;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.info-card {
    background: var(--black);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--medium-gray);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.info-card:hover .info-icon {
    filter: grayscale(0);
}

.info-content h3 {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--light-gray);
    line-height: 1.7;
}

.info-content a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Social Links */
.social-links {
    background: var(--black);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--medium-gray);
}

.social-links h3 {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-5px) rotate(5deg);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* FAQ Section */
.faq-section {
    background: var(--black);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

.faq-item a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
