/* ===== Contact Page ===== */

.about-hero {
    text-align: center;
    padding: 2px 20px;
    background: #0f3b3d;
    color: #3aa6a9;
}

.about-hero h2 {
    font-size: 40px;
    
}

.about-hero p {
    font-size: 20px;
    color: #d0eaea;
}

.contact-section {
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-section h3 {
    color: #1e6f73;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-section p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
}



.contact-wrapper {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.4s ease-out;
}

.contact-wrapper h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}

.contact-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-success {
    background: #e8ffe8;
    color: #1b7d1b;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    border: 1px solid #b6e8b6;
}

.contact-form {
    text-align: left;
}

.form-row {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2a5bd7;
    outline: none;
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.contact-btn {
    width: 100%;
    padding: 14px;
    background: #2a5bd7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-btn:hover {
    background: #1e47ad;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* Mobile adjustments */
@media (max-width: 768px) {

    .contact-wrapper {
        max-width: 80%;        /* tighter width */
        margin: 30px auto;
        padding: 0 10px;       /* less side padding */
    }

    .contact-section {
        padding: 0 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 1rem;
    }

    .contact-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

