.contact-hero {
    text-align: center;
    padding: 90px 0 55px 0;
    background: linear-gradient(90deg, #e0e7ff 60%, #f1f5f9 100%);
}

.contact-title {
    font-size: 2.3rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 12px;
}

.contact-desc {
    font-size: 1.18rem;
    color: #22223b;
    margin-bottom: 0;
}

.contact-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.14);
    max-width: 700px;
    margin: 32px auto;
    padding: 40px 32px;
    text-align: center;
}

.contact-section-2 {
    background: #f1f5f9;
    box-shadow: 0 2px 12px rgba(37,99,235,0.35);
    padding-top: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.contact-form label {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e0e7ff;
    font-size: 1rem;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #2563eb;
}

.contact-btn {
    background: #2563eb;
    color: #fff;
    font-size: 1.08rem;
    font-weight: bold;
    padding: 10px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: #6b3fa0;
}

.section-title {
    font-size: 1.3rem;
    color: #2563eb;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    margin-bottom: 14px;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.social-link {
    color: #6b3fa0;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: #2563eb;
}

.contact-note {
    font-size: 1.1rem;
    color: #22223b;
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: -6px;
}



/* Email popup styles */

.email-popup {
    display: none;
    position: absolute;
    background: #22223b;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.12);
    z-index: 100;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    white-space: nowrap;
}
.contact-social {
    position: relative;
}

/* note */

.contact-form-note {
    margin-top: 14px;
    font-size: 1rem;
    color: #2563eb;
    opacity: 0.85;
    text-align: center;
}