/* HFE Contact Forms — styles */

/* ── Inline form ─────────────────────────── */
.hfc-form-wrap {
    width: 100%;
    font-family: inherit;
}
.hfc-form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: #2D2B29;
    margin: 0 0 6px;
    line-height: 1.2;
}
.hfc-form-subtitle {
    font-size: 14px;
    color: #2D2B29;
    opacity: 0.7;
    margin: 0 0 18px;
    line-height: 1.6;
}
.hfc-field {
    margin-bottom: 14px;
}
.hfc-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #2D2B29;
    margin-bottom: 5px;
    letter-spacing: 0.01em;
}
.hfc-input {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #2D2B29;
    background: #ffffff;
    border: 1px solid #E8DDD3;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
}
.hfc-input:focus {
    border-color: #A0522D;
}
.hfc-input.hfc-mismatch {
    border-color: #C0135A;
}
.hfc-input.hfc-match {
    border-color: #4A9E8A;
}
.hfc-textarea {
    resize: vertical;
    min-height: 100px;
}
.hfc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: filter 0.15s, transform 0.1s;
    line-height: 1;
}
.hfc-btn:hover  { filter: brightness(1.08); transform: translateY(-1px); }
.hfc-btn:active { transform: translateY(0); filter: brightness(0.94); }
.hfc-btn:disabled { opacity: 0.7; cursor: default; transform: none; }

.hfc-error {
    font-size: 13px;
    color: #C0135A;
    margin-top: 8px;
    line-height: 1.5;
}
.hfc-success {
    text-align: center;
    padding: 32px 20px;
}
.hfc-success-inner {
    display: inline-block;
}
.hfc-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EAF2F0;
    border: 2px solid #4A9E8A;
    color: #4A9E8A;
    font-size: 24px;
    line-height: 52px;
    text-align: center;
    margin: 0 auto 14px;
}
.hfc-success-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: #2D2B29;
    margin: 0 0 8px;
}
.hfc-success-msg {
    font-size: 14px;
    color: #2D2B29;
    opacity: 0.7;
    line-height: 1.6;
    margin: 0;
}

/* ── Popup overlay ───────────────────────── */
.hfc-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hfc-popup-panel {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hfc-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #B5A99A;
    line-height: 1;
    padding: 0;
    transition: color 0.15s;
}
.hfc-popup-close:hover { color: #2D2B29; }
.hfc-popup-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    color: #2D2B29;
    margin: 0 0 8px;
    line-height: 1.2;
}
.hfc-popup-subtitle {
    font-size: 14px;
    color: #2D2B29;
    opacity: 0.7;
    margin: 0 0 20px;
    line-height: 1.6;
}

/* Inside popup, override form wrap margins */
.hfc-popup-panel .hfc-form-wrap { margin: 0; }
.hfc-popup-panel .hfc-form-title,
.hfc-popup-panel .hfc-form-subtitle { display: none; }

@media (max-width: 480px) {
    .hfc-popup-panel { padding: 32px 22px; }
    .hfc-popup-title { font-size: 22px; }
}
