/* Start custom CSS for html, class: .elementor-element-673596c *//* ============================================
   Brockman Law — Landing Pages Shared Styles
   Premium Legal Tech / Authority Design
   RTL Hebrew — Mobile First
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Heebo:wght@300;400;500;700;800;900&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-dark: #1A2B4A;
  --navy-mid: #2C5282;
  --gold: #C8960C;
  --gold-light: #E8B84B;
  --white: #FFFFFF;
  --gray-light: #F0F4F8;
  --gray-mid: #CBD5E0;
  --gray-dark: #4A5568;
  --wa-green: #25D366;
  --wa-green-hover: #1EBE5A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius: 8px;
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
  font-size: 16px;
}

body {
  font-family: 'Heebo', 'Open Sans', Arial, sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,150,12,.4); }
  50%      { transform: scale(1.03); box-shadow: 0 0 20px 4px rgba(200,150,12,.25); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes particleFloat {
  0%   { transform: translate(0, 0) scale(1); opacity: .6; }
  50%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 4px solid var(--gold);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(26,43,74,.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-brand .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.header-brand-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.header-brand-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  direction: ltr;
  letter-spacing: .5px;
}
.header-phone:hover { color: var(--gold-light); }
.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wa-green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
}
.header-wa:hover { background: var(--wa-green-hover); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0F1B32 100%);
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(44,82,130,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,150,12,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: .5;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease both;
}
.hero h1 .highlight {
  color: var(--gold);
}
.hero .hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 36px;
  animation: fadeInUp .8s ease .2s both;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp .8s ease .4s both;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 0 24px rgba(200,150,12,.35);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border: 2px solid var(--wa-green);
}
.btn-wa:hover {
  background: var(--wa-green-hover);
  border-color: var(--wa-green-hover);
  box-shadow: 0 0 24px rgba(37,211,102,.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 24px rgba(200,150,12,.35);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--gray-light);
  border-top: 2px solid rgba(200,150,12,.2);
  border-bottom: 2px solid rgba(200,150,12,.2);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
}
.trust-item .check {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

/* ---------- Main Content 2-Column ---------- */
.main-section {
  padding: 60px 0;
}
.main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-col h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
  line-height: 1.35;
}
.content-col h3 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--navy-mid);
  margin-top: 36px;
  margin-bottom: 14px;
}
.content-col p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--gray-dark);
}

/* ---------- Sticky CTA Sidebar ---------- */
.sticky-cta {
  position: sticky;
  top: 100px;
}
.cta-card {
  background: var(--navy-dark);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,150,12,.3);
}
.cta-card h3 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.cta-card .form-group {
  margin-bottom: 14px;
}
.cta-card label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  margin-bottom: 4px;
  font-weight: 500;
}
.cta-card input,
.cta-card select,
.cta-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
  direction: rtl;
}
.cta-card input::placeholder,
.cta-card textarea::placeholder {
  color: rgba(255,255,255,.35);
}
.cta-card input:focus,
.cta-card select:focus,
.cta-card textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.cta-card select option {
  background: var(--navy-dark);
  color: var(--white);
}
.cta-card textarea { resize: vertical; min-height: 70px; }
.cta-card .btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  margin-top: 6px;
}
.cta-card .btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(200,150,12,.4);
}
.cta-card .cta-divider {
  text-align: center;
  color: rgba(255,255,255,.4);
  margin: 18px 0;
  font-size: 14px;
  position: relative;
}
.cta-card .cta-divider::before,
.cta-card .cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.cta-card .cta-divider::before { right: 0; }
.cta-card .cta-divider::after  { left: 0; }
.cta-card .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-card .btn-cta-phone,
.cta-card .btn-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
  text-align: center;
}
.cta-card .btn-cta-phone {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--white);
}
.cta-card .btn-cta-phone:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.cta-card .btn-cta-wa {
  background: var(--wa-green);
  border: 2px solid var(--wa-green);
  color: var(--white);
}
.cta-card .btn-cta-wa:hover {
  background: var(--wa-green-hover);
  border-color: var(--wa-green-hover);
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: var(--navy-mid);
  border-right: 8px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
}
.highlight-box .hb-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
}
.highlight-box p {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
  padding-right: 36px;
}

/* ---------- Bullet List Section ---------- */
.bullet-section {
  padding: 50px 0;
  background: var(--gray-light);
}
.bullet-section h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 32px;
  text-align: center;
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.05);
  transition: all var(--transition);
}
.bullet-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.bullet-item .bi-check {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet-item p {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ---------- Process Steps ---------- */
.process-section {
  padding: 60px 0;
  background: var(--white);
}
.process-section h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 48px;
  text-align: center;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: -30%;
  width: 60%;
  height: 3px;
  background: linear-gradient(to left, var(--gold), rgba(200,150,12,.2));
}
.process-step:last-child::after { display: none; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(200,150,12,.3);
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* ---------- CTA Bottom Section ---------- */
.cta-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section .cta-sub {
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 36px;
}
.cta-buttons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.cta-section .cta-note {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

/* ---------- Eligibility Section ---------- */
.eligibility-section {
  padding: 50px 0;
  background: var(--white);
}
.eligibility-section h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 32px;
}
.eligibility-list {
  max-width: 800px;
}
.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.eligibility-item:last-child { border-bottom: none; }
.eligibility-item .ei-icon {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.eligibility-item p {
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Why Us Section ---------- */
.why-us {
  padding: 50px 0;
  background: var(--gray-light);
}
.why-us h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.why-us p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  border-top: 4px solid var(--gold);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 2;
  display: block;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo .fl-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-dark);
}
.footer-logo span {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

/* ---------- Mobile Fixed Footer Bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 10px 16px;
}
.mobile-bar-inner {
  display: flex;
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.mobile-bar .mb-phone {
  background: transparent;
  border: 2px solid var(--gold);
}
.mobile-bar .mb-wa {
  background: var(--wa-green);
  border: 2px solid var(--wa-green);
}

/* ---------- Symptoms Section ---------- */
.symptoms-section {
  padding: 50px 0;
}
.symptoms-section h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 32px;
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    position: static;
    order: -1;
    margin-bottom: 40px;
  }
  .cta-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-brand-text { font-size: 13px; }
  .header-wa span { display: none; }
  .header-phone { font-size: 15px; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 26px; }
  .hero .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .trust-items { gap: 16px; }
  .trust-item { font-size: 14px; }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-step::after { display: none; }
  .process-step { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .mobile-bar { display: block; }
  .site-footer { padding-bottom: 90px; }
  .bullet-grid { grid-template-columns: 1fr; }
  .highlight-box { padding: 24px 20px; }
  .highlight-box p { padding-right: 0; }
  .highlight-box .hb-icon { position: static; margin-bottom: 8px; }
  .cta-buttons-row { flex-direction: column; align-items: center; }
  .cta-buttons-row .btn { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 12px; }
  .header-brand .logo-icon { width: 36px; height: 36px; font-size: 18px; }
  .header-brand-text { font-size: 12px; }
  .header-phone { font-size: 14px; }
  .hero { padding: 100px 0 50px; }
  .container { padding: 0 16px; }
  .btn { padding: 14px 24px; font-size: 16px; }
}

/* ---------- Form Feedback ---------- */
.form-feedback {
  display: none;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 14px;
  line-height: 1.5;
}
.form-feedback.success {
  display: block;
  background: rgba(37,211,102,.15);
  color: #25D366;
  border: 1px solid rgba(37,211,102,.3);
}
.form-feedback.error {
  display: block;
  background: rgba(220,53,69,.15);
  color: #ff6b6b;
  border: 1px solid rgba(220,53,69,.3);
}
.form-feedback .fb-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}
.btn-submit.loading {
  opacity: .7;
  pointer-events: none;
  position: relative;
}
.btn-submit.loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 3px solid rgba(26,43,74,.3);
  border-top-color: var(--navy-dark);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}/* End custom CSS */