@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================= */
/* THEME 1 : CORPORATE BLUE GOLD */
/* ============================= */

/* Hide Neve header & footer ONLY on SPA page */
.page-id-62 .nv-site-header,
.page-id-62 header.header,
.page-id-62 .nv-navbar,
.page-id-62 footer.nv-footer {
  display: none !important;
}

/* FORCE SPA LOGO SIZE */
body .header-logo img,
body .site-logo img,
body img.site-logo {
    height: 200px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
}
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}


.header-logo img {
    transition: transform 0.25s ease;
}
.header-logo img:hover {
    transform: scale(1.05);
}

:root {
  --primary: #0F2A44;
  --secondary: #1F6AE1;
  --accent: #C9A24D;
  --bg: #F4F6FB;
  --text: #1E293B;
  --success: #15803D;
  --error: #B91C1C;
}

/* Header */
.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.form-header img {
  height: 42px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.form-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.header-actions button {
  background: none;
  color: var(--secondary);
  font-weight: 600;
  border: 1px solid #E5E7EB;
  padding: 6px 10px;
  border-radius: 8px;
  margin-left: 8px;
  cursor: pointer;
}


/* Page Background */
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #EEF2FF, var(--bg));
  color: var(--text);
}

/* Main Card */
#leadForm {
  max-width: 620px;
  margin: 60px auto;
  background: #ffffff;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 35px 65px rgba(15,42,68,0.15);
}

/* Progress Bar */
.progress {
  height: 6px;
  background: #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: width 0.4s ease;
}

/* Steps */
.step {
  display: none;
  animation: slideFade 0.45s ease;
}

.step.active {
  display: block;
}

@keyframes slideFade {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Headings */
h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary);
}

/* Inputs */
input,
select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  font-size: 15px;
  background: #FAFAFA;
  transition: all 0.25s ease;
}

input:focus,
select:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31,106,225,0.18);
  outline: none;
}

/* File Upload */
input[type="file"] {
  background: #F9FAFB;
  padding: 10px;
}

/* Buttons */
button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transition: transform .2s ease, box-shadow .2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31,106,225,.35);
}

button:active {
  transform: scale(.97);
}

/* Result Message */
#result {
  margin-top: 22px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

#result.success {
  color: var(--success);
  animation: pop .4s ease;
}

@keyframes pop {
  0% { transform: scale(.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media(max-width: 640px) {
  #leadForm {
    margin: 30px 15px;
    padding: 26px;
  }
}

body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl input,
body.rtl select {
  text-align: right;
}

body.rtl .form-header {
  flex-direction: row-reverse;
}


body.dark {
  background: linear-gradient(135deg, #020617, #020617);
  color: #E5E7EB;
}

body.dark #leadForm {
  background: #020617;
  box-shadow: 0 35px 65px rgba(0,0,0,.6);
}

body.dark input,
body.dark select {
  background: #020617;
  border-color: #334155;
  color: #E5E7EB;
}

body.dark h3,
body.dark .form-header h2 {
  color: #E5E7EB;
}

/* ===============================
   SPA HEADER
   =============================== */
.spa-header {
  background: transparent;
  margin-bottom: 24px;
}

.spa-header-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 10px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spa-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-actions button {
  background: #fff;
  border: 1px solid #E5E7EB;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
}


/* ===============================
   SPA FOOTER
   =============================== */
.spa-footer {
  margin-top: 60px;
  padding: 40px 20px 20px;
  background: #F8FAFC;
  border-top: 1px solid #E5E7EB;
}

.spa-footer-inner {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  font-size: 14px;
}

.spa-footer strong {
  font-size: 15px;
  color: var(--primary);
}

.spa-footer p {
  margin: 6px 0;
  color: #475569;
}

.spa-footer a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
}

.spa-footer-bottom {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #64748B;
}


/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 640px) {
  .spa-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-actions button {
    padding: 6px 8px;
  }
}


body.dark .spa-footer {
  background: #020617;
  border-color: #334155;
}

body.dark .spa-footer p,
body.dark .spa-footer strong,
body.dark .spa-footer-bottom {
  color: #CBD5F5;
}
/* ======= HERO SECTION ======= */
.spa-hero {
  max-width: 720px;
  margin: 40px auto 20px;
  text-align: center;
}
.spa-hero h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.spa-hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: #475569;
  line-height: 1.6;
}

/* ======= BENEFITS ======= */
.spa-benefits {
  max-width: 720px;
  margin: 30px auto;
  display: grid;
  gap: 18px;
}
.spa-benefits .benefit {
  background: #F8FAFC;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}
.spa-benefits .benefit strong {
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

/* ======= FOOTER (Clean & Grouped) ======= */
.spa-footer {
  padding: 40px 20px 20px;
  background: var(--primary);
  color: #fff;
  margin-top: 50px;
  text-align: left;
}
.spa-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: auto;
}
.spa-footer p,
.spa-footer a {
  font-size: 15px;
  margin: 6px 0;
  color: #F1F5F9;
}
.spa-footer a:hover {
  text-decoration: underline;
}
.spa-footer-bottom {
  margin-top: 24px;
  font-size: 14px;
  text-align: center;
}

/* ======= RESPONSIVE ======= */
@media(max-width: 640px) {
  .spa-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.joinchat {
    z-index: 999999 !important;
}

/* ================================
   SAFE UI POLISH (Non-breaking)
   ================================ */

/* Better heading balance */
h1 { 
  font-size: 26px;
  margin-bottom: 12px;
}

h2 { 
  font-size: 22px;
  margin-bottom: 12px;
}

h3 { 
  font-size: 18px;
  margin-bottom: 12px;
}

/* Improve paragraph readability */
p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Make form fields visually consistent */
input,
select {
  font-size: 16px;
  padding: 12px 14px;
}

/* Slightly improve button weight */
button {
  font-size: 16px;
  font-weight: 600;
}

/* Improve section spacing */
.spa-hero {
  margin-top: 40px;
  margin-bottom: 30px;
}

.spa-benefits {
  margin-bottom: 40px;
}

.spa-footer {
  margin-top: 60px;
}
/* ===== SEO PAGE LAYOUT (Safe) ===== */

.biz-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.biz-content h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.biz-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 12px;
}

.biz-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text);
}

.biz-content ul,
.biz-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.biz-content li {
  margin-bottom: 8px;
}

.biz-cta-box {
  background: #ffffff;
  padding: 30px;
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15,42,68,0.08);
  text-align: center;
}

@media(max-width: 768px) {
  .biz-content {
    margin: 40px auto;
  }
}
/* ===== APPLY SPA CARD STYLE TO SEO PAGES ===== */

.seo-card {
  max-width: 620px;
  margin: 60px auto;
  background: #ffffff;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 35px 65px rgba(15,42,68,0.15);
}

.seo-card h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary);
}

.seo-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--primary);
}

.seo-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.seo-card ul,
.seo-card ol {
  padding-left: 18px;
  margin-bottom: 18px;
}

.seo-card li {
  margin-bottom: 8px;
}

@media(max-width: 640px) {
  .seo-card {
    margin: 30px 15px;
    padding: 26px;
  }
}







