/* ==============================
   CONTACT FORM
============================== */

.contact-form {
    max-width: 600px;
    margin: 20px auto;
}

.contact-row {
    margin-bottom: 18px;
}

.contact-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333; /* readable on light bg */
}

.contact-row input,
.contact-row textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
}

.contact-row input:focus,
.contact-row textarea:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 2px rgba(201,162,39,0.25);
}

.contact-actions {
    text-align: center;
    margin-top: 20px;
}

textarea {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ==============================
   CONTACT VALIDATION
============================== */

.error-msg {
    color: #c0392b;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* ==============================
   SUCCESS MESSAGE
============================== */

.contact-success-panel {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    padding: 30px;
    border: 1px solid #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    border-radius: 10px;
    animation: fadeInUp 0.5s ease;
}

.contact-success-panel h2 {
    color: #2ecc71;
    margin-bottom: 10px;
}

.contact-success-panel .section-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-back {
    text-align: right;
    margin-bottom: 15px;
}

/* =============================
    LEGAL PAGE
============================= */

.legal-page {
    max-width: 800px;
    margin: 0 auto;
}

.notice-back {
    margin-bottom: 15px;
}

.notice-btn {
    text-decoration: none;
    font-weight: bold;
    color: #c9a227;
}

.notice-section {
    margin-top: 25px;
}

.notice-section h2 {
    color: #c9a227;
    margin-bottom: 5px;
}

.legal-intro {
    text-align: center;
    margin-bottom: 20px;
}

@media print {

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .notice-back,
    .legal-actions,
    .sidebar,
    .top-nav,
    .banner {
        display: none !important;
    }

    .content-section {
        max-width: 100%;
        padding: 0;
    }

    .section-divider {
        background: #000;
    }

    a {
        color: #000;
        text-decoration: none;
    }

}