/* =============================================================================
   NexArt Contact Page — Premium Design
   Scope : body.nexart-contact-active + .nxcont-page
   Prefix: nxcont-
   ============================================================================= */

/* OceanWP page chrome reset is centralized in assets/css/nexart.css. */

/* ── ROOT WRAPPER ────────────────────────────────────────────────────────────── */
.nxcont-page {
    background: var(--nx-bg);
    color: var(--nx-text);
    font-family: var(--nx-font, 'Inter', sans-serif);
    overflow-x: hidden;
}

/* ── CONTAINERS ──────────────────────────────────────────────────────────────── */
.nxcont-container {
    max-width: var(--nx-max, 1280px);
    margin: 0 auto;
    padding: 0 40px;
}

.nxcont-container--narrow {
    max-width: 800px;
}

.nxcont-container--text {
    max-width: 760px;
    text-align: center;
}

/* ── TYPOGRAPHY UTILITIES ────────────────────────────────────────────────────── */
.nxcont-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--nx-gold);
    margin: 0 0 16px;
}
.nxcont-eyebrow--center { text-align: center; }

.nxcont-section-header {
    margin-bottom: 56px;
}

.nxcont-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--nx-text);
    line-height: 1.18;
    margin: 0;
    letter-spacing: -0.02em;
}
.nxcont-section-title--center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.nxcont-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: var(--nx-radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--nx-transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.nxcont-btn--gold {
    background: var(--nx-gold);
    color: #000;
}
.nxcont-btn--gold:hover {
    background: var(--nx-gold-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--nx-gold-glow);
}
.nxcont-btn--gold:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nxcont-btn--ghost {
    background: transparent;
    color: var(--nx-text);
    border: 1px solid var(--nx-border-md);
}
.nxcont-btn--ghost:hover {
    border-color: var(--nx-border-bright);
    color: var(--nx-text);
    transform: translateY(-1px);
}

.nxcont-btn--outline {
    background: transparent;
    color: var(--nx-gold);
    border: 1px solid var(--nx-border-gold);
}
.nxcont-btn--outline:hover {
    background: rgba(217, 164, 65, 0.08);
    border-color: var(--nx-gold);
    color: var(--nx-gold-light);
}

.nxcont-btn--full { width: 100%; }

/* ── BREADCRUMB ──────────────────────────────────────────────────────────────── */
.nxcont-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--nx-text-muted);
    margin-bottom: 32px;
    justify-content: center;
}
.nxcont-breadcrumb a {
    color: var(--nx-text-muted);
    text-decoration: none;
    transition: color var(--nx-transition);
}
.nxcont-breadcrumb a:hover { color: var(--nx-gold); }
.nxcont-breadcrumb span:last-child { color: var(--nx-text-soft); }

/* =============================================================================
   1. HERO
   ============================================================================= */
.nxcont-hero {
    position: relative;
    padding: 92px 0 74px;
    background: var(--nx-bg-deep);
    overflow: hidden;
}

.nxcont-hero-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(217, 164, 65, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.nxcont-hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--nx-text);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}

.nxcont-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--nx-text-soft);
    margin: 0 0 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.nxcont-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================================
   2. QUICK CONTACT CARDS
   ============================================================================= */
.nxcont-quick-section {
    padding: 46px 0;
    background: var(--nx-bg);
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
}

.nxcont-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nxcont-quick-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    text-decoration: none;
    transition: all var(--nx-transition);
    position: relative;
    overflow: hidden;
}

.nxcont-quick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity var(--nx-transition);
}

.nxcont-quick-card:hover {
    border-color: var(--nx-border-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nxcont-quick-card:hover::before { opacity: 1; }

.nxcont-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(217, 164, 65, 0.10);
    border-radius: var(--nx-radius);
    margin-bottom: 4px;
    flex-shrink: 0;
}

.nxcont-quick-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxcont-quick-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--nx-text);
    display: block;
}

.nxcont-quick-text {
    font-size: 13px;
    color: var(--nx-text-muted);
    line-height: 1.5;
    display: block;
    flex: 1;
}

.nxcont-quick-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--nx-gold);
    display: block;
    margin-top: auto;
    transition: color var(--nx-transition);
}
.nxcont-quick-card:hover .nxcont-quick-cta { color: var(--nx-gold-light); }

/* =============================================================================
   3. MAIN CONTACT AREA
   ============================================================================= */
.nxcont-main-section {
    padding: 88px 0;
    background: var(--nx-bg-2);
}

.nxcont-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
    gap: 34px;
    align-items: start;
}

/* ── FORM COLUMN ─────────────────────────────────────────────────────────────── */
.nxcont-form-col {
    padding: 34px;
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius-xl);
    background: linear-gradient(145deg, rgba(24,24,24,0.96), rgba(12,12,12,0.96));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.nxcont-form-col .nxcont-eyebrow { margin-bottom: 12px; }

.nxcont-form-col .nxcont-section-title { margin-bottom: 12px; }

.nxcont-form-intro {
    font-size: 15px;
    color: var(--nx-text-muted);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ── PLUGIN FORM WRAPPER ─────────────────────────────────────────────────────── */
.nxcont-plugin-form {
    /* Scopes plugin form styles — CF7, Fluent Forms, WPForms */
}

/* ── PLACEHOLDER NOTICE ──────────────────────────────────────────────────────── */
.nxcont-placeholder-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(217, 164, 65, 0.06);
    border: 1px solid var(--nx-border-gold);
    border-radius: var(--nx-radius);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.nxcont-placeholder-notice svg {
    width: 18px;
    height: 18px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.nxcont-placeholder-notice p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--nx-text-soft);
    margin: 0;
}

.nxcont-placeholder-notice code {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.07);
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--nx-gold-light);
}

/* ── FORM FIELDS (placeholder only) ─────────────────────────────────────────── */
.nxcont-form-fields { opacity: 0.52; pointer-events: none; }

.nxcont-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}
.nxcont-row--2 { grid-template-columns: 1fr 1fr; }

.nxcont-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nxcont-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--nx-text-soft);
    display: flex;
    gap: 6px;
    align-items: center;
}
.nxcont-optional {
    font-size: 11px;
    font-weight: 400;
    color: var(--nx-text-dim);
}

.nxcont-field input[type="text"],
.nxcont-field input[type="email"],
.nxcont-field textarea {
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius);
    padding: 12px 16px;
    color: var(--nx-text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--nx-transition);
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}
.nxcont-field input:focus,
.nxcont-field textarea:focus {
    outline: none;
    border-color: var(--nx-gold);
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.12);
}

.nxcont-select-wrap {
    position: relative;
}
.nxcont-select-wrap select {
    appearance: none;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius);
    padding: 12px 40px 12px 16px;
    color: var(--nx-text);
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    transition: border-color var(--nx-transition);
}
.nxcont-select-wrap select:focus {
    outline: none;
    border-color: var(--nx-gold);
}
.nxcont-select-caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--nx-text-muted);
    fill: none;
    stroke-width: 2;
    pointer-events: none;
}

.nxcont-field textarea {
    min-height: 140px;
}

.nxcont-field--check {
    margin-bottom: 24px;
}
.nxcont-check-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}
.nxcont-check-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--nx-gold);
}
.nxcont-check-label span {
    font-size: 12px;
    color: var(--nx-text-muted);
    line-height: 1.5;
}

/* ── SUPPORT INFO CARD ───────────────────────────────────────────────────────── */
.nxcont-info-col {
    position: sticky;
    top: calc(var(--nx-header-h) + 24px);
}

.nxcont-info-card {
    background: var(--nx-bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--nx-radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nxcont-info-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--nx-border);
}
.nxcont-info-block:first-child { padding-top: 0; }

.nxcont-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(217, 164, 65, 0.08);
    border-radius: var(--nx-radius);
    flex-shrink: 0;
}
.nxcont-info-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxcont-info-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--nx-text);
    margin-bottom: 4px;
}
.nxcont-info-text p {
    font-size: 13px;
    color: var(--nx-text-muted);
    line-height: 1.5;
    margin: 0;
}
.nxcont-info-text a {
    font-size: 13px;
    color: var(--nx-gold);
    text-decoration: none;
}
.nxcont-info-text a:hover { color: var(--nx-gold-light); }

.nxcont-info-tip {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(217, 164, 65, 0.05);
    border: 1px solid rgba(217, 164, 65, 0.16);
    border-radius: var(--nx-radius);
    padding: 14px 16px;
    margin: 20px 0 0;
}
.nxcont-info-tip svg {
    width: 16px;
    height: 16px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 1px;
}
.nxcont-info-tip p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--nx-text-muted);
    margin: 0;
}

.nxcont-info-faq-block {
    padding-top: 20px;
    border-top: 1px solid var(--nx-border);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nxcont-info-faq-block p {
    font-size: 13px;
    color: var(--nx-text-soft);
    margin: 0;
    font-weight: 500;
}

/* =============================================================================
   4. SUPPORT TOPICS
   ============================================================================= */
.nxcont-topics-section {
    padding: 74px 0;
    background: var(--nx-bg);
}

.nxcont-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nxcont-topic-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    transition: all var(--nx-transition);
}

.nxcont-topic-card:hover {
    border-color: var(--nx-border-md);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.nxcont-topic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(217, 164, 65, 0.08);
    border-radius: var(--nx-radius);
    flex-shrink: 0;
}
.nxcont-topic-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxcont-topic-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--nx-text);
    display: block;
}

.nxcont-topic-text {
    font-size: 13px;
    color: var(--nx-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* =============================================================================
   5. MINI FAQ
   ============================================================================= */
.nxcont-faq-section {
    padding: 74px 0;
    background: var(--nx-bg-2);
}

.nxcont-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.nxcont-faq-item {
    border-bottom: 1px solid var(--nx-border);
}
.nxcont-faq-item:last-child { border-bottom: none; }

.nxcont-faq-q {
    width: 100%;
    background: var(--nx-bg-card);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: background var(--nx-transition);
    text-align: left;
}
.nxcont-faq-q:hover { background: var(--nx-bg-card-2); }
.nxcont-faq-item.is-open .nxcont-faq-q { background: var(--nx-bg-card-2); }

.nxcont-faq-q span {
    font-size: 15px;
    font-weight: 500;
    color: var(--nx-text);
    flex: 1;
    line-height: 1.4;
}
.nxcont-faq-item.is-open .nxcont-faq-q span { color: var(--nx-gold); }

.nxcont-faq-chevron {
    width: 18px;
    height: 18px;
    stroke: var(--nx-text-muted);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform var(--nx-transition), stroke var(--nx-transition);
}
.nxcont-faq-item.is-open .nxcont-faq-chevron {
    transform: rotate(180deg);
    stroke: var(--nx-gold);
}

.nxcont-faq-a {
    background: var(--nx-bg);
    padding: 0 24px;
    border-top: 1px solid var(--nx-border);
}
.nxcont-faq-a p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--nx-text-muted);
    margin: 20px 0;
    padding: 0;
}
.nxcont-faq-a a {
    color: var(--nx-gold);
    text-decoration: none;
}
.nxcont-faq-a a:hover { color: var(--nx-gold-light); }

.nxcont-faq-more {
    text-align: center;
}

/* =============================================================================
   6. TRUST STRIP
   ============================================================================= */
.nxcont-trust-section {
    padding: 42px 0;
    background: var(--nx-bg-deep);
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
}

.nxcont-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.nxcont-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nxcont-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(217, 164, 65, 0.08);
    border-radius: var(--nx-radius);
    flex-shrink: 0;
}
.nxcont-trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.nxcont-trust-item:last-child .nxcont-trust-icon svg {
    stroke: none;
    fill: var(--nx-gold);
}

.nxcont-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.nxcont-trust-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--nx-text);
}
.nxcont-trust-item span {
    font-size: 12px;
    color: var(--nx-text-muted);
}

/* =============================================================================
   7. FINAL CTA
   ============================================================================= */
.nxcont-cta-section {
    position: relative;
    padding: 74px 0;
    background: var(--nx-bg-deep);
    overflow: hidden;
}

.nxcont-cta-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(217, 164, 65, 0.045) 0%, transparent 65%);
    pointer-events: none;
}

.nxcont-cta-title {
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    color: var(--nx-text);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}

.nxcont-cta-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--nx-text-soft);
    margin: 0 0 40px;
}

.nxcont-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================================
   RESPONSIVE — 1200px
   ============================================================================= */
@media (max-width: 1200px) {
    .nxcont-quick-grid { gap: 16px; }
    .nxcont-topics-grid { gap: 16px; }
    .nxcont-trust-grid { gap: 24px; }
    .nxcont-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .nxcont-info-col { position: static; }
}

/* =============================================================================
   RESPONSIVE — 1024px
   ============================================================================= */
@media (max-width: 1024px) {
    .nxcont-container { padding: 0 32px; }
    .nxcont-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .nxcont-topics-grid { grid-template-columns: repeat(2, 1fr); }
    .nxcont-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .nxcont-hero { padding: 82px 0 66px; }
}

/* =============================================================================
   RESPONSIVE — 768px
   ============================================================================= */
@media (max-width: 768px) {
    .nxcont-container { padding: 0 24px; }
    .nxcont-container--narrow { max-width: none; }
    .nxcont-hero { padding: 70px 0 56px; }
    .nxcont-hero-title { letter-spacing: -0.02em; }
    .nxcont-hero-desc br { display: none; }
    .nxcont-section-header { margin-bottom: 40px; }
    .nxcont-quick-section { padding: 64px 0; }
    .nxcont-main-section  { padding: 62px 0; }
    .nxcont-topics-section { padding: 58px 0; }
    .nxcont-faq-section   { padding: 58px 0; }
    .nxcont-trust-section { padding: 40px 0; }
    .nxcont-cta-section   { padding: 62px 0; }
    .nxcont-form-col { padding: 26px 22px; }
    .nxcont-info-card { padding: 28px 24px; }
    .nxcont-row--2 { grid-template-columns: 1fr; }
}

/* =============================================================================
   RESPONSIVE — 480px
   ============================================================================= */
@media (max-width: 480px) {
    .nxcont-container { padding: 0 16px; }
    .nxcont-hero { padding: 64px 0 50px; }
    .nxcont-hero-ctas { flex-direction: column; align-items: stretch; }
    .nxcont-hero-ctas .nxcont-btn { justify-content: center; }
    .nxcont-quick-grid { grid-template-columns: 1fr; }
    .nxcont-topics-grid { grid-template-columns: 1fr; }
    .nxcont-trust-grid { grid-template-columns: 1fr; gap: 20px; }
    .nxcont-cta-btns { flex-direction: column; align-items: stretch; }
    .nxcont-cta-btns .nxcont-btn { justify-content: center; }
    .nxcont-breadcrumb { font-size: 11px; }
    .nxcont-faq-q { padding: 16px 18px; }
    .nxcont-faq-a { padding: 0 18px; }
}

/* =============================================================================
   RESPONSIVE — 375px
   ============================================================================= */
@media (max-width: 375px) {
    .nxcont-btn { padding: 13px 22px; font-size: 13px; }
    .nxcont-info-card { padding: 22px 18px; }
    .nxcont-placeholder-notice { flex-direction: column; gap: 10px; }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
    .nxcont-quick-card,
    .nxcont-topic-card,
    .nxcont-btn { transition: none; }
    .nxcont-quick-card:hover,
    .nxcont-topic-card:hover,
    .nxcont-btn:hover { transform: none; }
}

/* =============================================================================
   PLUGIN FORM INTEGRATION OVERRIDES
   Common resets for CF7 / Fluent Forms / WPForms inside .nxcont-plugin-form
   ============================================================================= */
.nxcont-plugin-form .wpcf7-form,
.nxcont-plugin-form .ff-el-form-check,
.nxcont-plugin-form .wpforms-form { width: 100%; }

.nxcont-plugin-form input[type="text"],
.nxcont-plugin-form input[type="email"],
.nxcont-plugin-form input[type="tel"],
.nxcont-plugin-form textarea,
.nxcont-plugin-form select {
    background: var(--nx-bg-card) !important;
    border: 1px solid var(--nx-border-md) !important;
    border-radius: var(--nx-radius) !important;
    padding: 12px 16px !important;
    color: var(--nx-text) !important;
    font-family: inherit !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color var(--nx-transition) !important;
}

.nxcont-plugin-form input:focus,
.nxcont-plugin-form textarea:focus,
.nxcont-plugin-form select:focus {
    outline: none !important;
    border-color: var(--nx-gold) !important;
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.12) !important;
}

.nxcont-plugin-form input[type="submit"],
.nxcont-plugin-form button[type="submit"],
.nxcont-plugin-form .wpcf7-submit,
.nxcont-plugin-form .ff-btn-submit {
    background: var(--nx-gold) !important;
    color: #000 !important;
    border: none !important;
    border-radius: var(--nx-radius) !important;
    padding: 14px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background var(--nx-transition) !important;
}

.nxcont-plugin-form input[type="submit"]:hover,
.nxcont-plugin-form button[type="submit"]:hover {
    background: var(--nx-gold-light) !important;
}

.nxcont-plugin-form label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--nx-text-soft) !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.nxcont-plugin-form .wpcf7-not-valid-tip,
.nxcont-plugin-form .ff-el-is-error {
    font-size: 12px !important;
    color: #e06060 !important;
    margin-top: 4px !important;
}

.nxcont-plugin-form .wpcf7-response-output {
    border: 1px solid var(--nx-border-gold) !important;
    background: rgba(217, 164, 65, 0.06) !important;
    color: var(--nx-text-soft) !important;
    border-radius: var(--nx-radius) !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    margin-top: 16px !important;
}
