/* Forms About Us — Lawyer Directory theme */
.fau-page {
  font-family: 'Outfit', sans-serif;
  color: #111827;
  background: #fff;
}

.fau-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.fau-hero {
  background-image:
    linear-gradient(115deg, rgba(6, 15, 46, 0.92) 0%, rgba(8, 20, 58, 0.82) 45%, rgba(10, 31, 92, 0.65) 100%),
    url('/images/content.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.fau-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='40' font-size='12' fill='%23ffffff'%3EWILL%3C/text%3E%3C/svg%3E");
  pointer-events: none;
}

.fau-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  min-height: 85vh;
  position: relative;
  z-index: 1;
}

.fau-hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #ffffff;
}

.fau-hero p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}

.fau-hero img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 460px;
  box-shadow: 0 20px 40px rgba(10, 31, 92, 0.35);
}

.fau-body {
  padding: 48px 0 56px;
}

.fau-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.fau-main h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #111827;
}

.fau-main h2:not(:first-child) {
  margin-top: 36px;
}

.fau-main p {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  margin: 0 0 14px;
}

.fau-fit-box {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

.fau-fit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.fau-fit-row:last-child {
  border-bottom: none;
}

.fau-fit-row i {
  color: #0b5ed7;
  font-size: 20px;
  width: 28px;
  text-align: center;
}

.fau-sidebar .widget {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
}

.fau-widget-head {
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid #e5e7eb;
}

.fau-widget-body {
  padding: 16px 18px;
}

.fau-widget-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

.fau-widget-body select {
  width: 100%;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  margin-bottom: 14px;
}

.fau-btn-primary {
  display: block;
  width: 100%;
  height: 44px;
  background: #0b5ed7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-align: center;
  line-height: 44px;
  text-decoration: none;
}

.fau-btn-primary:hover {
  background: #0a53be;
  color: #fff;
}

.fau-widget-banner {
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fau-widget-banner.blue {
  background: #0b5ed7;
}

.fau-widget-banner.teal {
  background: #0d9488;
}

.fau-widget-links {
  list-style: none;
  padding: 14px 18px;
  margin: 0;
}

.fau-widget-links li {
  margin-bottom: 8px;
}

.fau-widget-links a {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
}

.fau-widget-links a:hover {
  color: #0b5ed7;
}

.fau-widget-footer {
  padding: 12px 18px;
  border-top: 1px solid #e5e7eb;
}

.fau-widget-footer a {
  font-size: 13px;
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
}

.fau-back-top {
  background: #f3f4f6;
  text-align: center;
  padding: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
  .fau-hero-grid,
  .fau-layout {
    grid-template-columns: 1fr;
  }

  .fau-hero-grid {
    min-height: auto;
  }

  .fau-hero img {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .fau-hero img {
    min-height: 240px;
  }
}
