/* ============================================================
   PR Publishing Contact Form – Frontend Styles
   Fonts: Alata (headings/labels) + Poppins (body)
   Color scheme: dark bg #1a0a00, accent #f97316 (orange-red)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Alata&family=Poppins:wght@300;400;500;600&display=swap');

/* ── Reset / Scope ── */
.prpcf-wrapper *,
.prpcf-wrapper *::before,
.prpcf-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Outer Wrapper ── */
.prpcf-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #1a0a00;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Left Column (Form) ── */
.prpcf-form-col {
    flex: 1 1 55%;
    padding: 48px 44px;
    background: #1c0d02;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Right Column (Info) ── */
.prpcf-info-col {
    flex: 1 1 40%;
    padding: 48px 40px;
    background: #2a1005;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Headings ── */
.prpcf-title {
    font-family: 'Alata', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
}

.prpcf-subtitle {
    font-size: 14px;
    color: #c9a98a;
    line-height: 1.6;
    font-weight: 300;
}

.prpcf-info-heading {
    font-family: 'Alata', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 1.35;
}

/* ── Labels ── */
.prpcf-field label {
    display: block;
    font-family: 'Alata', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f97316;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.prpcf-field label .req {
    color: #f97316;
    margin-left: 2px;
}

/* ── Inputs / Textarea ── */
.prpcf-field input,
.prpcf-field textarea {
    width: 100%;
    background: #2e150a !important;
    border: 1.5px solid #3d1a08;
    border-radius: 8px;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: vertical;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #f97316;
}

.prpcf-field input:focus,
.prpcf-field textarea:focus,
.prpcf-field input:active,
.prpcf-field textarea:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Fix browser autofill overriding text color */
.prpcf-field input:-webkit-autofill,
.prpcf-field input:-webkit-autofill:hover,
.prpcf-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #2e150a inset !important;
    caret-color: #f97316;
}

.prpcf-field input::placeholder,
.prpcf-field textarea::placeholder {
    color: #7a4a35;
}

.prpcf-field input:focus,
.prpcf-field textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

/* ── Two-col row ── */
.prpcf-row {
    display: flex;
    gap: 16px;
}

.prpcf-row .prpcf-field {
    flex: 1;
}

/* ── Submit Button ── */
.prpcf-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
    margin-top: 4px;
}

.prpcf-btn:hover {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    box-shadow: 0 6px 24px rgba(249,115,22,0.4);
    transform: translateY(-1px);
}

.prpcf-btn:active {
    transform: translateY(0);
}

/* ── Response Message ── */
.prpcf-response {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.prpcf-response.success {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.4);
    color: #4ade80;
}

.prpcf-response.error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.4);
    color: #f87171;
}

/* ── Info Cards ── */
.prpcf-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prpcf-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #3b1a09;
    border: 1px solid #4d2410;
    border-radius: 10px;
    padding: 18px 20px;
    transition: border-color 0.25s ease;
}

.prpcf-info-card:hover {
    border-color: #f97316;
}

.prpcf-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prpcf-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: #fff;
    fill: #fff;
}

.prpcf-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prpcf-info-text strong {
    font-family: 'Alata', sans-serif;
    font-size: 15px;
    color: #f97316;
    font-weight: 400;
}

.prpcf-info-text span {
    font-size: 13px;
    color: #d4a989;
    line-height: 1.5;
}

/* ── Social ── */
.prpcf-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid #3d1a08;
}

.prpcf-social > span {
    font-family: 'Alata', sans-serif;
    font-size: 14px;
    color: #fff;
}

.prpcf-social-icons {
    display: flex;
    gap: 10px;
}

.prpcf-soc {
    width: 40px;
    height: 40px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.prpcf-soc:hover {
    background: #ea580c;
    transform: scale(1.1);
}

.prpcf-soc svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    color: #fff;
    stroke: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .prpcf-wrapper {
        flex-direction: column;
    }
    .prpcf-form-col,
    .prpcf-info-col {
        flex: 1 1 100%;
        padding: 36px 28px;
    }
}

@media (max-width: 560px) {
    .prpcf-form-col,
    .prpcf-info-col {
        padding: 28px 20px;
    }
    .prpcf-title,
    .prpcf-info-heading {
        font-size: 22px;
    }
    .prpcf-row {
        flex-direction: column;
        gap: 0;
    }
    .prpcf-info-card {
        padding: 14px 16px;
    }
    .prpcf-icon-wrap {
        width: 42px;
        height: 42px;
    }
}
