/* =========================
   Contact Page
========================= */

.page-hero {
    margin-top: 76px;
    height: 340px;
    background: linear-gradient(135deg, #7b1e2b, #b98a57);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 5px;
    margin: 0 0 14px;
}

.page-hero p {
    font-size: 18px;
    opacity: .9;
    margin: 0;
}

.contact-container {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-card,
.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 14px 42px rgba(0,0,0,.08);
}

.info-card h2,
.form-card h2 {
    margin: 0 0 28px;
    font-size: 30px;
    color: #7b1e2b;
    font-weight: 400;
    letter-spacing: 3px;
}

.info-row {
    margin-bottom: 22px;
}

.info-row .label {
    color: #b98a57;
    font-size: 14px;
    margin-bottom: 8px;
}

.info-row .value {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
    white-space: pre-line;
}

.map-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background: #7b1e2b;
    color: #fff;
    border-radius: 999px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    border: none;
    background: #7b1e2b;
    color: #fff;
    padding: 13px 30px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
}

.submit-btn:hover {
    background: #631722;
}

.msg {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.msg.success {
    background: #eaf8ef;
    color: #217a3a;
    border: 1px solid #bfe8ca;
}

.msg.error {
    background: #fff0f0;
    color: #b83232;
    border: 1px solid #ffcaca;
}


/* =========================
   Success Modal
========================= */

.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 99999;
}

.custom-modal-box {
    width: 420px;
    max-width: 90%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.success-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e8f8ee;
    color: #20833a;
    font-size: 42px;
    font-weight: bold;
}

.custom-modal h3 {
    margin: 0 0 12px;
    color: #7b1e2b;
}

.custom-modal p {
    color: #666;
    line-height: 1.8;
}

.custom-modal button {
    margin-top: 20px;
    padding: 10px 24px;
    border: none;
    border-radius: 999px;
    background: #7b1e2b;
    color: #fff;
    cursor: pointer;
}


