/* ================= CONTACT PAGE ================= */

.contact-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-container h1 {
    text-align: center;
    font-size: 36px;
    color: #E88CA7;
    margin-bottom: 20px;
    font-family: 'Sour Gummy', sans-serif;
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-section {
    flex: 1 1 400px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.contact-section h2 {
    margin-bottom: 16px;
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #E88CA7;
    display: inline-block;
    padding-bottom: 4px;
}

.contact-section p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-section input,
.contact-section textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #E88CA7;
    box-shadow: 0 0 8px rgba(232,140,167,0.3);
    outline: none;
}

.contact-section button.btn {
    width: fit-content;
    padding: 12px 36px;
    background: #B9C8A2;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-section button.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.contact-section a {
    color: #E88CA7;
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .contact-content {
        flex-direction: column;
    }
}