/* Page container */
.contact-page {
    max-width: 800px;
    margin: 60px auto 50px auto; 
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Poppins', Arial, sans-serif;
}

/* Page title */
.contact-page h1 {
    color: #0091ea;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

/* Intro text */
.contact-intro {
    color: #444;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

/* ✅ Alert messages styling */
.messages {
    margin-bottom: 20px;
}
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error, .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Form styling */
.contact-form label {
    display: block;
    font-weight: bold;
    color: #2d51a1;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
    box-sizing: border-box;
}

/* Button styling */
.btn-submit {
    background-color: #2d51a1;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    padding: 12px 20px;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1a2dcf;
}

/* WhatsApp section */
.whatsapp-contact {
    margin-top: 30px;
    text-align: center;
}

.whatsapp-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-btn i {
    font-size: 20px;
    margin-right: 8px;
}

.whatsapp-btn:hover {
    background-color: #1ebe5a;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 20px;
        margin: 100px 20px 30px 20px;
    }
}

