/* Contact Page Styles */

/* Contact Hero */
.contact-hero {
    background-color: transparent;
    background-image: url('/.netlify/images?url=images/Black_texture_vol1%20(20).jpg&fm=webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact-hero .container,
.contact-hero h1,
.contact-hero p {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero p {
    font-size: 1.3rem;
    color: #A0AEC0;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 20px;
    background: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group label {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--bg-elevated);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

/* Error state styling */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
    border-color: #ef4444;
}

.submit-btn {
    margin-top: 1rem;
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
}

.form-notice {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-success {
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid var(--success);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
}

/* Contact Info */
.contact-info {
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.contact-details h3 {
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--accent-purple);
}

.social-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.social-cta h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 20px;
    background: var(--primary-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-purple);
    background: var(--bg-hover);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
    }
}

