/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arimo', Arial, sans-serif;
  color: #515151;
  line-height: 1.6;
  background-color: #f1f1f1;
}
a { color: #f78d1d; text-decoration: none; transition: color 0.3s; }
a:hover { color: #f78d1d; text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', Arial, sans-serif; font-weight: 700; line-height: 1.3; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR / HEADER ===== */
.top-bar {
  background-color: #021739;
  padding: 15px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .logo img { height: 120px; width: auto; }
.top-bar .phone {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar .phone a { color: #fff; }
.top-bar .phone a:hover { color: #f78d1d; text-decoration: none; }
.top-bar .phone svg { width: 24px; height: 24px; fill: #fff; }

/* ===== NAVIGATION ===== */
.main-nav {
  background-color: #1d1d1d;
  border-top: 2px solid #f78d1d;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 15px;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s, color 0.3s;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  background-color: #f78d1d;
  color: #fff;
  text-decoration: none;
}
/* Dropdown */
.nav-menu li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1d1d1d;
  min-width: 250px;
  z-index: 1001;
  list-style: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.nav-menu li:hover .dropdown { display: block; }
.nav-menu li .dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  transition: background-color 0.3s;
}
.nav-menu li .dropdown li a:hover {
  background-color: #f78d1d;
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('../images/hero-chicago.jpeg') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px;
}
.hero-content {
  background: rgba(29,29,29,0.85);
  padding: 40px 50px;
  max-width: 550px;
  text-align: center;
}
.hero-content h1 {
  color: #fff;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.hero-content h2 {
  color: #fff;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
}
.hero-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
}
.btn-primary {
  display: inline-block;
  background-color: #f78d1d;
  color: #fff;
  padding: 16px 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}
.btn-primary:hover {
  background-color: #e07a10;
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  display: inline-block;
  border: 2px solid #f78d1d;
  color: #f78d1d;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background-color: #f78d1d;
  color: #fff;
  text-decoration: none;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 60px 0;
}
.section-dark {
  background-color: #1d1d1d;
  color: #fff;
}
.section-gray {
  background-color: #f1f1f1;
}
.section-white {
  background-color: #fff;
}
.section-title {
  font-size: 36px;
  color: #1d1d1d;
  margin-bottom: 5px;
}
.section-title-light {
  font-size: 36px;
  color: #fff;
  margin-bottom: 5px;
}
.section-subtitle {
  color: #f78d1d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== ATTORNEYS SECTION ===== */
.attorneys-intro {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/about-bg.jpeg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.attorneys-intro .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.attorneys-intro .left-col {
  flex: 0 0 300px;
}
.attorneys-intro .right-col {
  flex: 1;
  border-left: 1px solid #636262;
  padding-left: 40px;
}
.attorneys-intro .right-col p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

/* Attorney Grid */
.attorney-grid-section {
  background: linear-gradient(rgba(180,180,180,0.5), rgba(180,180,180,0.5)),
    url('../images/practice-bg.jpeg') center/cover no-repeat;
  padding: 60px 0;
}
.attorney-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.attorney-card {
  background: #fff;
  text-align: center;
  padding: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.attorney-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.attorney-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.attorney-card img.zoom-out {
  object-position: center 15%;
  object-fit: contain;
  background: #f0ece6;
}
.attorney-card h3 {
  color: #333;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 3px;
  padding-top: 15px;
  letter-spacing: 0.5px;
}
.attorney-card p {
  color: #777;
  font-size: 13px;
  padding-bottom: 15px;
}

/* ===== PRACTICE AREAS ===== */
.practice-areas-section {
  background: #f1f1f1;
  padding: 80px 0;
  color: #333;
}
.practice-header {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.practice-header .left-col { flex: 0 0 300px; }
.practice-header .right-col {
  flex: 1;
  border-left: 1px solid #ccc;
  padding-left: 40px;
}
.practice-header .right-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}
.practice-header .section-title-light {
  color: #333;
}
.practice-header .section-subtitle {
  color: #f78d1d;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.practice-card {
  background: #fff;
  padding: 30px 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.3s;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.practice-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); text-decoration: none; }
.practice-card .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.practice-card .card-text { flex: 1; }
.practice-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}
.practice-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/about-bg.jpeg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.why-header {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.why-header .left-col { flex: 0 0 300px; }
.why-header .right-col {
  flex: 1;
  border-left: 1px solid #636262;
  padding-left: 40px;
}
.why-header .right-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-card {
  padding: 30px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: background-color 0.3s;
}
.why-card:hover { background-color: rgba(247,141,29,0.85); }
.why-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}
.why-card p { font-size: 14px; line-height: 1.7; color: #ccc; }
.why-card:hover p { color: #fff; }

/* ===== CONTACT / OFFICES ===== */
.offices {
  background-color: #fff;
  padding: 60px 0;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.office-card h3 {
  font-size: 22px;
  color: #1d1d1d;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f78d1d;
}
.office-card p {
  color: #515151;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 3px;
}
.office-card .map-img {
  margin-top: 15px;
  border-radius: 4px;
  overflow: hidden;
}
.office-card .map-img img { width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background-color: #282a2b;
  padding: 30px 0;
  color: #989898;
  font-size: 13px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left p { margin-bottom: 5px; }
.footer-left a { color: #f78d1d; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-right img { height: 50px; }
.footer-right span { color: #989898; }
.footer-right a { color: #f78d1d; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/hero-chicago.jpeg') center/cover no-repeat;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  font-size: 42px;
  text-transform: uppercase;
}
.page-header p {
  color: #ccc;
  font-size: 16px;
  margin-top: 10px;
}

/* ===== CONTENT PAGES ===== */
.content-section {
  padding: 60px 0;
  background: #fff;
}
.content-section h2 {
  font-size: 28px;
  color: #1d1d1d;
  margin-bottom: 15px;
}
.content-section h3 {
  font-size: 22px;
  color: #1d1d1d;
  margin-bottom: 10px;
}
.content-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}
.content-section ul {
  margin: 15px 0 15px 25px;
}
.content-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== ATTORNEY DETAIL PAGE ===== */
.attorney-detail {
  padding: 60px 0;
  background: #fff;
}
.attorney-detail .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.attorney-detail .photo {
  flex: 0 0 300px;
}
.attorney-detail .photo img {
  width: 100%;
  border-radius: 4px;
}
.attorney-detail .bio {
  flex: 1;
}
.attorney-detail .bio h1 {
  font-size: 36px;
  color: #1d1d1d;
  margin-bottom: 5px;
}
.attorney-detail .bio .title {
  color: #f78d1d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.attorney-detail .bio p { margin-bottom: 15px; line-height: 1.7; }
.attorney-detail .bio h3 { margin-top: 20px; margin-bottom: 10px; }
.attorney-detail .bio ul { margin: 10px 0 10px 25px; }
.attorney-detail .bio ul li { margin-bottom: 5px; }

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1d1d1d;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Arimo', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #f78d1d;
  outline: none;
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* ===== TRIAL RESULTS TABLE ===== */
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.results-table th,
.results-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.results-table th {
  background-color: #1d1d1d;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}
.results-table tr:hover { background-color: #f7f7f7; }

/* ===== CAREERS PAGE ===== */
.careers-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/careers-bg.jpeg') center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1d1d1d;
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li > a { padding: 12px 20px; }
  .nav-menu li .dropdown {
    position: static;
    display: none;
    box-shadow: none;
  }
  .nav-menu li:hover .dropdown { display: block; }

  .hero {
    min-height: 400px;
    justify-content: center;
    padding: 40px 20px;
  }
  .hero-content {
    max-width: 100%;
    padding: 30px 25px;
  }
  .hero-content h1, .hero-content h2 { font-size: 32px; }

  .attorneys-intro .container,
  .practice-header,
  .why-header {
    flex-direction: column;
  }
  .attorneys-intro .left-col,
  .practice-header .left-col,
  .why-header .left-col {
    flex: none;
  }
  .attorneys-intro .right-col,
  .practice-header .right-col,
  .why-header .right-col {
    border-left: none;
    border-top: 1px solid #636262;
    padding-left: 0;
    padding-top: 20px;
  }

  .attorney-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { flex-direction: row; }
  .offices-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid #fff; }
  .why-card:last-child { border-bottom: none; }

  .attorney-detail .container { flex-direction: column; }
  .attorney-detail .photo { flex: none; max-width: 300px; }

  .footer .container { flex-direction: column; text-align: center; gap: 20px; }

  .top-bar .phone { font-size: 20px; }
}

@media (max-width: 480px) {
  .attorney-grid { grid-template-columns: 1fr; gap: 15px; }
  .hero-content h1, .hero-content h2 { font-size: 28px; }
}
