/* B2B Inquiry Platform - Styles */
@keyframes b2bFadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes b2bFloat  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes b2bPulse  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }

.b2b-wrap { direction: rtl; font-family: Tahoma, Arial, sans-serif; font-size: 15px; color: #1a1a1a; }

/* HERO */
.b2b-hero {
  position: relative; overflow: hidden; min-height: 320px;
  display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1200&q=80') center/cover no-repeat;
}
.b2b-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,110,86,0.8) 0%, rgba(24,95,165,0.65) 100%);
}
.b2b-hero-content { position: relative; z-index: 2; padding: 2.5rem 2rem; width: 100%; }
.b2b-badge {
  display: inline-block; background: rgba(255,255,255,0.18); color: #fff;
  font-size: 13px; padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.3);
}
.b2b-hero h1 { font-size: 28px; font-weight: 600; color: #fff; margin: 0 0 10px; line-height: 1.4; }
.b2b-hero p  { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 480px; margin-bottom: 1.4rem; }
.b2b-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.b2b-btn-primary {
  background: #fff; color: #0f6e56; border: none; padding: 11px 26px;
  border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: Tahoma, Arial, sans-serif; transition: transform .15s;
}
.b2b-btn-primary:hover { transform: scale(1.03); }
.b2b-btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.5); padding: 11px 26px;
  border-radius: 8px; font-size: 15px; cursor: pointer;
  font-family: Tahoma, Arial, sans-serif; transition: background .2s;
}
.b2b-btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* STATS BAR */
.b2b-stats-bar {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: #fff; border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.b2b-stat { padding: 1.2rem; text-align: center; border-left: 1px solid #e5e7eb; }
.b2b-stat:last-child { border-left: none; }
.b2b-stat-num   { font-size: 24px; font-weight: 700; color: #0f6e56; }
.b2b-stat-label { font-size: 13px; color: #6b7280; margin-top: 4px; }

/* SECTION TITLE */
.b2b-section-title { text-align: center; padding: 2.5rem 1.5rem 1.2rem; }
.b2b-section-title h2 { font-size: 22px; font-weight: 600; color: #111; margin-bottom: 6px; }
.b2b-section-title p  { font-size: 14px; color: #6b7280; }
.b2b-green-line { width: 44px; height: 3px; background: #0f6e56; border-radius: 2px; margin: 12px auto 0; }

/* FEATURES GRID */
.b2b-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #e5e7eb; margin: 0 0 2rem;
}
@media (max-width: 640px) { .b2b-features-grid { grid-template-columns: 1fr 1fr; } }
.b2b-feat-card {
  background: #fff; padding: 1.8rem 1.4rem; text-align: center;
  transition: background .2s, transform .2s;
}
.b2b-feat-card:hover { background: #f0fdf9; transform: translateY(-2px); }
.b2b-feat-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 22px;
  animation: b2bFloat 3s ease-in-out infinite;
}
.b2b-feat-icon.green { background: #d1fae5; color: #0f6e56; }
.b2b-feat-icon.blue  { background: #dbeafe; color: #1d4ed8; }
.b2b-feat-icon.amber { background: #fef3c7; color: #92400e; }
.b2b-feat-card h3 { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 6px; }
.b2b-feat-card p  { font-size: 13px; color: #6b7280; line-height: 1.7; }

/* HOW IT WORKS */
.b2b-how-section { background: #f9fafb; padding: 2.5rem 1.5rem; margin-bottom: 1.5rem; }
.b2b-steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  position: relative;
}
.b2b-steps::before {
  content: ''; position: absolute; top: 27px; right: 16%; left: 16%;
  height: 2px; background: #d1d5db; z-index: 0;
}
.b2b-step { text-align: center; position: relative; z-index: 1; }
.b2b-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid #0f6e56;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 18px; font-weight: 700; color: #0f6e56;
  animation: b2bFloat 3s ease-in-out infinite;
}
.b2b-step:nth-child(2) .b2b-step-num { animation-delay: .4s; }
.b2b-step:nth-child(3) .b2b-step-num { animation-delay: .8s; }
.b2b-step h3 { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 4px; }
.b2b-step p  { font-size: 13px; color: #6b7280; }

/* BADGES */
.b2b-badges-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 0 1rem 2rem; }
.b2b-fbadge {
  background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 20px;
  padding: 7px 16px; font-size: 13px; color: #374151;
  animation: b2bFloat 3s ease-in-out infinite;
}
.b2b-fbadge:nth-child(2) { animation-delay: .5s; }
.b2b-fbadge:nth-child(3) { animation-delay: 1s; }

/* FORM SECTION */
.b2b-form-section { padding: 0 1.5rem 2.5rem; max-width: 820px; margin: 0 auto; }
.b2b-tabs { display: flex; gap: 10px; margin-bottom: 1rem; }
.b2b-tab {
  flex: 1; padding: 11px; border: 1px solid #d1d5db; border-radius: 8px;
  background: #fff; font-size: 15px; cursor: pointer; color: #6b7280;
  font-family: Tahoma, Arial, sans-serif; transition: all .2s;
}
.b2b-tab.active { background: #0f6e56; color: #fff; border-color: #0f6e56; font-weight: 600; }
.b2b-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.b2b-card h2 { font-size: 18px; font-weight: 600; color: #111; margin-bottom: 1.2rem; }
.b2b-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .b2b-form-grid { grid-template-columns: 1fr; } }
.b2b-form-full { grid-column: 1 / -1; }
.b2b-field { display: flex; flex-direction: column; gap: 6px; }
.b2b-field label { font-size: 13px; color: #374151; font-weight: 500; }
.b2b-field input,
.b2b-field select,
.b2b-field textarea {
  padding: 9px 12px; border: 1px solid #d1d5db; border-radius: 7px;
  font-size: 14px; font-family: Tahoma, Arial, sans-serif;
  direction: rtl; background: #fff; color: #111;
  transition: border-color .2s;
}
.b2b-field input:focus,
.b2b-field select:focus,
.b2b-field textarea:focus { outline: none; border-color: #0f6e56; }
.b2b-field textarea { height: 90px; resize: vertical; }
.b2b-req { color: #dc2626; }
.b2b-submit-btn {
  width: 100%; padding: 13px; background: #0f6e56; color: #fff;
  border: none; border-radius: 8px; font-size: 16px; font-weight: 600;
  cursor: pointer; font-family: Tahoma, Arial, sans-serif; margin-top: 1rem;
  transition: opacity .15s, transform .15s;
}
.b2b-submit-btn:hover { opacity: 0.88; transform: scale(1.01); }
.b2b-alert {
  padding: 12px 16px; border-radius: 8px; font-size: 14px;
  margin-bottom: 1rem; text-align: center;
}
.b2b-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.b2b-alert.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
