﻿/* -------- Nirjash Natural: Company Pages -------- */
.nrj-page {
    padding: 22px 0 30px;
}

/* hero */
.nrj-hero {
    padding: 10px 0;
}

.nrj-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 26px;
    align-items: center;
}

@media (max-width: 920px) {
    .nrj-hero__grid {
        grid-template-columns: 1fr;
    }
}

.nrj-hero__media {
    border: 2px solid rgba(242, 140, 26, .35);
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}

.nrj-hero__mediaBox {
    border-radius: 12px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff, #fff7ed);
    border: 1px dashed rgba(242, 140, 26, .35);
    overflow: hidden;
}

.nrj-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.nrj-hero__imgFallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    color: #6b7280;
    font-weight: 600;
}

.nrj-fallbackTitle {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.nrj-fallbackText {
    font-size: 13px;
    color: #6b7280;
}

.nrj-hero__title {
    margin: 0 0 6px;
    font-size: 42px;
    letter-spacing: .2px;
}

@media (max-width: 920px) {
    .nrj-hero__title {
        font-size: 34px;
    }
}

.nrj-hero__subtitle {
    margin: 0 0 14px;
    color: #c2c6cf;
    font-weight: 600;
}

.nrj-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
}

.nrj-title {
    margin: 0 0 12px;
    font-size: 32px;
}

.nrj-subtitle {
    margin: 14px 0 8px;
    font-size: 20px;
}

.nrj-prose p {
    margin: 0 0 10px;
}

.nrj-prose ul {
    margin: 10px 0 14px;
    padding-left: 18px;
}

.nrj-prose li {
    margin: 7px 0;
}

/* Contact */
.nrj-contactGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 920px) {
    .nrj-contactGrid {
        grid-template-columns: 1fr;
    }
}

.nrj-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 520px) {
    .nrj-row {
        grid-template-columns: 1fr;
    }
}

.nrj-input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    outline: none;
    font: inherit;
    background: #fff;
}

    .nrj-input:focus {
        border-color: rgba(242, 140, 26, .7);
        box-shadow: 0 0 0 4px rgba(242, 140, 26, .12);
    }

.nrj-textarea {
    min-height: 140px;
    resize: vertical;
    margin-top: 12px;
}

.nrj-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0 14px;
    color: #111;
    font-size: 14px;
}

    .nrj-check input {
        margin-top: 3px;
    }

.nrj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    background: #f28c1a;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

    .nrj-btn:hover {
        filter: brightness(.98);
    }

.nrj-infoBlock {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    background: #fafafa;
    margin-bottom: 12px;
}

/*2nd added*/

.nrj-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nrj-alert--error {
    border-color: rgba(239,68,68,.35);
    background: rgba(239,68,68,.08);
    margin-bottom: 14px;
}
