/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Museo Sans 300", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  background: #fff;
  color: #111;
}

/* ================= HEADINGS ================= */
h1, h2, h3, h4, h5, h6,
.nav-container a {
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
}


/* ================= SERVICES ================= */
.services {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #111;
  margin: 0 10px;
}

.services-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
}

.service-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
  color: #fff;
  transition: background .35s ease;
}

.service-card:hover .service-overlay {
  background: rgba(0,0,0,.62);
}

.service-overlay h4 {
  font-size: 22px;
  letter-spacing: 2px;
}

.service-overlay p {
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0;
}

.service-overlay a {
  margin-top: 18px;
  padding: 10px 22px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: all .25s ease;
}

.service-overlay a:hover {
  background: #4da3ff;
  border-color: #4da3ff;
}

/* Force Trucking Accident bold */
.services-grid .service-card:nth-child(3) h4 {
  font-weight: 700;
}

/* ================= EXPERIENCE ================= */
.experience-section {
  background: radial-gradient(ellipse at center, #3a3f44 0%, #1f2326 70%);
  padding: 120px 24px;
  color: #fff;
}

.experience-inner {
  max-width: 860px;
  margin: auto;
  text-align: center;
}

.experience-inner h2 {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.experience-inner h4 {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: .85;
  margin-bottom: 28px;
}

.experience-inner p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.btn-secondary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
}

.btn-secondary:hover {
  background: #f2c94c;
}

/* ================= CONSULTATION ================= */
.consultation-section {
  position: relative;
  padding: 120px 24px;
  background: #0e5f8a;
}

.consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/web-templates/law/01/assets/images/hero.jpg') center / cover no-repeat;
  opacity: .4;
}

.consultation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,25,40,.55);
}

.consultation-inner {
  position: relative;
  max-width: 860px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.consultation-inner h2 {
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.consultation-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: none;
  font-size: 14px;
}

.consultation-form textarea {
  min-height: 160px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-footer button {
  padding: 14px 36px;
  background: #fff;
  color: #0b1620;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.form-footer button:hover {
  background: #7db7ff;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}



/* ==============================
   LEGAL BLOG – GLOBAL STYLES
============================== */

.legal-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.legal-blog-hero {
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
                url('../images/hero-law.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 110px 0;
    text-align: center;
}

.legal-blog-hero.small {
    padding: 80px 0;
}

.legal-blog-hero h1 {
    font-family: 'Bitter', serif;
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-blog-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* BLOG INDEX */
.legal-blog-index {
    padding: 80px 0;
    background: #f7f7f7;
}

.legal-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.legal-blog-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 4px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.legal-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.legal-blog-card h2 {
    font-family: 'Bitter', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.legal-blog-card a {
    color: #1c2e40;
    text-decoration: none;
}

.legal-blog-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

.legal-blog-excerpt {
    font-size: 16px;
    line-height: 1.8;
}

.legal-read-more {
    display: inline-block;
    margin-top: 18px;
    font-weight: 500;
    color: #0f3d63;
}

/* BLOG ARTICLE */
.legal-blog-content {
    padding: 90px 0;
}

.legal-blog-article {
    max-width: 800px;
}

.legal-blog-article p,
.legal-blog-article li {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.legal-blog-article h2 {
    font-family: 'Bitter', serif;
    font-size: 28px;
    margin: 40px 0 15px;
}

.legal-blog-article ul {
    padding-left: 22px;
}

/* CTA */
.legal-blog-cta {
    background: #1c2e40;
    color: #ffffff;
    padding: 45px;
    margin-top: 60px;
    text-align: center;
}

.legal-blog-cta h3 {
    font-family: 'Bitter', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.legal-cta-button {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #1c2e40;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease;
}

.legal-cta-button:hover {
    background: #e5e7eb;
}



/* ================================
   LAW 01 – SHARED NAVIGATION
================================ */

.law-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.law-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.law-nav-logo img {
    height: 46px;
}

.law-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.law-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity .2s ease;
}

.law-nav-links a:hover {
    opacity: 0.8;
}

.law-nav-cta {
    padding: 10px 18px;
    background: #ffffff;
    color: #1c2e40 !important;
    border-radius: 4px;
    font-weight: 600;
}

/* BLOG PAGE VARIANT (dark text) */
.law-blog-wrap .law-site-header {
    position: relative;
    background: #ffffff;
}

.law-blog-wrap .law-nav-links a {
    color: #1c2e40;
}

.law-blog-wrap .law-nav-cta {
    background: #1c2e40;
    color: #ffffff !important;
}

/* MOBILE */
@media (max-width: 900px) {
    .law-nav-links {
        display: none;
    }
}



/* ================================
   LAW 01 – CONTACT MODAL
================================ */

.law-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 25, 35, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.law-modal-overlay.active {
    display: flex;
}

.law-modal {
    background: #ffffff;
    max-width: 560px;
    width: 100%;
    border-radius: 6px;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    font-family: 'Source Serif Pro', serif;
}

.law-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1c2e40;
}

.law-modal-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.law-modal-header p {
    font-size: 16px;
    color: #5b6470;
    margin-bottom: 28px;
}

.law-modal-form input,
.law-modal-form select {
    width: 100%;
    padding: 14px 14px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
}

.law-modal-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23333' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.law-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.law-modal-submit {
    width: 100%;
    padding: 14px;
    background: #1c2e40;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.law-modal-submit:hover {
    background: #0f2233;
}

.law-modal-disclaimer {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 600px) {
    .law-form-row {
        grid-template-columns: 1fr;
    }
}

