/* =====================
   CONTACT PAGE STYLES
   ===================== */

.contact-section {
    padding: 60px 20px;
    font-family: 'Outfit', sans-serif;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* =====================
   CONTACT FORM
   ===================== */

.contact-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

/* =====================
   CONTACT INFO
   ===================== */

.contact-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: #22c55e;
    word-break: break-word;
}

/* =====================
   ALERTS
   ===================== */

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: -1;
    }
}
