/* ===== CONTACT PAGE ===== */

/* Contact Section Title - Centered and Larger */
.contact-section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #4DB8FF 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid var(--border-iron-gray);
    border-radius: 15px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--fg-mist-white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-iron-gray);
    border-radius: 8px;
    color: var(--fg-mist-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-neon-lime);
    box-shadow: 0 0 0 3px rgba(50, 245, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-slate);
}

.form-note {
    text-align: center;
    color: var(--text-slate);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Info - Auto Height */
.contact-info {
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid var(--border-iron-gray);
    border-radius: 15px;
    padding: 2.5rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--fg-mist-white);
}

.contact-info > p {
    color: var(--text-slate);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-items {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--fg-mist-white);
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: var(--text-slate);
    text-decoration: none;
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--accent-neon-lime);
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-iron-gray);
}

.social-links h4 {
    color: var(--fg-mist-white);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 245, 129, 0.1);
    border: 1px solid var(--accent-neon-lime);
    border-radius: 10px;
    color: var(--accent-neon-lime);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-neon-lime);
    color: var(--bg-jet-black);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-section-title {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}