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

.contact-page {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN CONTAINER */
.contact-container {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* TITLE */
.contact-container h1 {
    margin-bottom: 10px;
    color: #222;
}

.contact-container p {
    color: #666;
    margin-bottom: 20px;
}

/* =========================
   FORM STYLING
========================= */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.3);
}

/* TEXTAREA SIZE */
.contact-form textarea {
    min-height: 120px;
    resize: none;
}

/* SUBMIT BUTTON */
.contact-form button {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.contact-form button:hover {
    background: #a82424;
}

/* =========================
   WHATSAPP SECTION
========================= */

.whatsapp-section {
    margin-top: 20px;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info {
    margin-top: 20px;
    color: #555;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }
}