/* Contact Form Section */
.contact-form-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 60vh;
    padding: 3.5rem 1.5rem 2rem 1.5rem;
    background: none;
}
.contact-form-container {
    background: none;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.contact-title {
    font-size: 3.6rem;
    color: var(--primary-color, #a95fff);
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    margin-bottom: 2.2rem;
    text-align: left;
    letter-spacing: 0.01em;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 3.2px solid #b967e3;
    border-radius: 11px;
    padding: 0.7rem 0.6rem 0.7rem 0.1rem;
    color: var(--text-color, #fff);
    font-size: 1.18rem;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif;
    margin-bottom: 0.3rem;
    outline: none;
    transition: border 0.2s;
    box-shadow: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2.2px solid #f2a8ff;
}
.contact-form textarea {
    min-height: 110px;
    max-height: 240px;
    resize: none;
    border: 2px solid #b967e3;
    border-radius: 13px;
    padding: 0.7rem 0.9rem;
    font-size: 1.15rem;
    margin-top: 0.5rem;
}
.contact-send-btn {
    background: transparent;
    color: var(--text-color, #fff);
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    border: 2px solid #b967e3;
    border-radius: 13px;
    padding: 0.7rem 0;
    margin-top: 1.5rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: none;
    text-align: center;
}
.contact-send-btn:hover {
    background: #b967e3;
    color: #fff;
    border-color: #fff;
}
.contact-caption {
    font-size: 1.08rem;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    margin-top: 0.7rem;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: none;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    color: var(--text-color, #fff);
    background: var(--card-bg, #181828);
}
.contact-caption.success {
    background: #2ecc40;
    color: #fff;
    display: block;
}
.contact-caption.error {
    background: #ff3b3b;
    color: #fff;
    display: block;
}
.contact-loader {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 0.6rem;
    min-height: 32px;
}
.contact-loader .spinner {
    width: 28px;
    height: 28px;
    border: 3.5px solid #b967e3;
    border-top: 3.5px solid var(--primary-color, #a95fff);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto;
    display: block;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .contact-title {
        font-size: 2.2rem;
    }
    .contact-form-section {
        padding: 2rem 0.2rem 1.5rem 0.2rem;
    }
}
