/**
 * Page Contact
 */
body.page-contact {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #f5f2e8 0%, #e8f5e8 100%);
    min-height: 100vh;
    padding-top: 80px;
    margin: 0;
}

.page-contact .background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.06;
    z-index: -1;
    pointer-events: none;
    background-image: url("../../../logo-cooppere-text.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 100vh;
    max-width: 1200px;
    max-height: 800px;
}

.page-contact .main-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
}

.page-contact .hero-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d7a3a;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
}

.page-contact .hero-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.form-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(45, 122, 58, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d0e2d6;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a3a;
    box-shadow: 0 0 0 3px rgba(45, 122, 58, 0.15);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: #2d7a3a;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.btn-submit:hover {
    background: #246b30;
}

.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
