:root {
  --navy: #212934;
  --blue: #212934;
  --gold: #d6ba78;
  --gold-dark: #b9954d;
  --white: #ffffff;
  --offwhite: #f7f5f0;
  --cream: #f7f5f0;
  --light: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #e6e2d8;
  --shadow: 0 18px 40px rgba(33, 41, 52, 0.18);
}



* {
  box-sizing: border-box;
}

.hero-content {
    color: black;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

.back-link.dark-back-link {
    margin-bottom: 15px;   
    display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}
.translate-button {
    position: absolute;
    top: calc(100% + 1px);
    right: 1px;
    text-decoration: underline;
    background: #212934;
    padding: 5px 10px;
    border-radius: 0 0 6px 6px;
    z-index: 1000;
}
iframe.VIpgJd-ZVi9od-xl07Ob-OEVmcd {
  left: auto !important;
  top: 120px !important;
  right: 20px !important;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 0 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 10px;
}

.logo img {
  width: 70px;
  height: auto;
  display: block;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-tagline {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  max-width: 260px;
  line-height: 1.3;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-dropdown {
  position: static;
  cursor: pointer !important;
}

.main-nav > a,
.nav-label {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 31px 0 28px;
  display: inline-block;
  position: relative;
  cursor: pointer !important;
}

.main-nav > a {
  cursor: pointer !important;
}

.nav-label {
  cursor: default;
}

.main-nav > a::after,
.nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav > a:hover::after,
.nav-label:hover::after,
.main-nav > a.active::after,
.nav-label.active::after {
  width: 100%;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-label:hover,
.nav-label.active {
  color: var(--white);
}

.header-cta, .header-cta-mobile {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 13px 18px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.header-cta span, .header-cta-mobile span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.header-cta:hover, .header-cta-mobile:hover {
  background: var(--white);
  color: var(--navy);
}

/* FULL-WIDTH DESKTOP MEGA MENU */

.dropdown-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 82px;
  width: 100vw;
  max-width: 100vw;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 4px solid var(--gold);
  padding: 38px 0;
  z-index: 999;
  overflow-x: hidden;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.mega-menu-inner {
  width: min(1360px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(135px, 1fr)) 250px;
  gap: 28px;
  align-items: stretch;
}

.property-mega-inner {
  grid-template-columns: repeat(2, minmax(260px, 1fr)) 300px;
}

.about-mega-inner {
  grid-template-columns: repeat(2, minmax(260px, 1fr)) 300px;
}

.mega-category {
  text-align: center;
  min-width: 0;
}

.mega-icon {
  font-size: 2.65rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.mega-category h4 {
  color: var(--navy);
  font-size: 0.86rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.mega-category a {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 7px 0;
  text-align: left;
}

.mega-category a:hover {
  color: var(--gold-dark);
}

.mega-cta {
  background:
    linear-gradient(rgba(33,41,52,0.9), rgba(33,41,52,0.9)),
    url("https://web-phenom.com/TXCLAIMLAW/images/industrial-worker.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 24px;
  border-radius: 4px;
  min-height: 100%;
}

.mega-cta h3 {
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.mega-cta p {
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
  font-size: 0.92rem;
}

.mega-cta a {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
  font-weight: 800;
}

/* MOBILE NAV */

.mobile-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer !important;
  padding: 8px;
}

/* HOMEPAGE */

.hero {
  background: linear-gradient(135deg, var(--cream), #ffffff);
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 50px;
  align-items: center;
}

.preheading {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 22px;
}

.hero p {
  font-size: 1.15rem;
  color: black;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  border: 2px solid var(--gold);
  color: var(--navy);
  background: white;
}

.btn-secondary:hover {
  background: var(--gold);
}

.hero-card {
  background: var(--navy);
  color: white;
  border-top: 6px solid var(--gold);
  padding: 36px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.hero-card p {
  color: rgba(255,255,255,0.82);
}

.section {
  padding: 80px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.85fr 1fr;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.mega-category {
    cursor: auto;
}
.section-heading h2,
.section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.section-heading p,
.section p {
  color: black;
  font-size: 1.48rem;
}

.blue-section {
  background: var(--navy);
  color: white;
}

.blue-section h2 {
  color: white;
}

.blue-section p {
  color: rgba(255,255,255,0.86);
}

.cream-section {
  background: var(--cream);
}

.image-panel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.caption {
  font-size: 0.82rem;
  color: black;
  margin-top: 8px;
  font-style: italic;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.text-link:hover {
  color: var(--gold-dark);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 5px solid var(--gold);
  padding: 30px;
  min-height: 220px;
  box-shadow: 0 10px 24px rgba(19, 35, 59, 0.06);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-top: 0;
}

.service-card p {
  color: black;
}

.consultation-section {
  background: linear-gradient(135deg, var(--navy), #303947);
  color: white;
}

.consultation-section h2,
.consultation-section .preheading {
  color: white;
}

.consultation-section p {
  color: rgba(255,255,255,0.82);
}

.phone-large a {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: white;
  color: var(--text);
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.contact-form label span {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

/* FOOTER */

.site-footer {
  background: var(--navy);
  color: white;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: white;
}

.site-footer h4 {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
}

.site-footer p {
  color: rgba(255,255,255,0.78);
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,0.78);
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 44px;
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
}

.page-hero {
  background: var(--navy);
  color: white;
  padding: 80px 0;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 900px;
  margin: 0;
}

.highlight-card {
  background: var(--navy);
  color: white;
  border-top: 6px solid var(--gold);
  padding: 36px;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-top: 0;
}

.highlight-card p {
  color: rgba(255,255,255,0.85);
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.attorney-card {
  background: white;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.attorney-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.attorney-card-content {
  padding: 28px;
}

.attorney-card-content h3 {
  color: var(--navy);
  font-size: 1.7rem;
  margin: 0 0 6px;
}

.attorney-card-content p {
  margin-top: 0;
}

.office-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.office-card {
  background: white;
  border-top: 5px solid var(--gold);
  padding: 30px;
  box-shadow: var(--shadow);
}

.office-card h3 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.office-card p {
  margin-bottom: 16px;
}

.map-card {
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 6px solid var(--gold);
  overflow: hidden;
}

.office-map {
  margin-top: 10px;
}

.cta-center {
  text-align: center;
  max-width: 800px;
}

.cta-center .btn {
  margin-top: 18px;
}

@media (max-width: 900px) {
.section-heading p, .section p {
    font-size: 1.08rem;
    }
  .attorney-grid,
  .office-info-grid {
    grid-template-columns: 1fr;
  }

  .attorney-card img {
    height: auto;
  }
}

/* RESPONSIVE */

@media (max-width: 1320px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a,
  .nav-label {
    font-size: 0.82rem;
  }

  .logo-name {
    font-size: 1.12rem;
  }

  .logo-tagline {
    font-size: 0.55rem;
    max-width: 215px;
  }

  .header-cta {
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .mega-menu-inner {
    width: min(1180px, calc(100vw - 32px));
    grid-template-columns: repeat(5, minmax(115px, 1fr)) 220px;
    gap: 22px;
  }

  .mega-category a {
    font-size: 0.88rem;
  }

  .mega-category h4 {
    font-size: 0.78rem;
  }
}

@media (max-width: 1100px) {
    .header-cta-mobile {
        display: block !important;
    }
  .mobile-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .logo img {
    width: 54px;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-tagline {
    font-size: 0.55rem;
    max-width: 170px;
    letter-spacing: 0.05em;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
  }

  .main-nav.open {
    display: flex;
  }

.main-nav > a,
.nav-label {
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: block;
}

  .main-nav > a::after,
  .nav-label::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    padding: 12px 0 20px;
    background: rgba(255,255,255,0.04);
  }

  .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
      display: none;
    }
    
    .nav-dropdown.submenu-open .dropdown-menu {
      display: block;
    }
    
    .nav-label {
      cursor: pointer !important;
    }
    
    .nav-label::before {
      content: "+";
      float: right;
      color: var(--gold);
      font-size: 1.3rem;
    }
    
    .nav-dropdown.submenu-open > .nav-label::before {
      content: "−";
    }

  .mega-menu-inner,
  .property-mega-inner,
  .about-mega-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }

  .mega-category {
    text-align: left;
  }

  .mega-icon {
    display: block;
    color: white;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
  }

  .mega-category h4 {
    color: var(--gold);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 8px;
  }

  .mega-category a {
    color: rgba(255,255,255,0.9);
    padding: 6px 0 6px 12px;
  }

  .mega-category a:hover {
    color: var(--gold);
  }

  .mega-cta {
    display: none;
  }
}


@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .two-column.reverse,
  .contact-grid,
  .form-row,
  .footer-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 74px;
    padding: 0 10px;
  }

  .main-nav {
    top: 74px;
  }

  .logo img {
    width: 48px;
  }

  .logo-name {
    font-size: 0.95rem;
  }

  .logo-tagline {
    font-size: 0.48rem;
    max-width: 150px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 24px;
  }
}

/* Google Translate */
#google_translate_element {
  min-width: 120px;
}

#google_translate_element select {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 10px;
  font-family: inherit;
  font-weight: 700;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.goog-te-gadget span {
  display: none !important;
}

.goog-logo-link {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-banner-frame {
  display: none !important;
}


.attorney-content-wrap {
  max-width: 1100px;
}

.dark-back-link {
  color: var(--gold-dark);
}

.dark-back-link:hover {
  color: var(--navy);
}

.attorney-page-title {
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 30px;
}

.attorney-float-image {
  float: right;
  width: 380px;

  margin:
    0
    0
    28px
    42px;

  background: white;

  border-top: 6px solid var(--gold);

  box-shadow: var(--shadow);

  padding: 14px;
}

.attorney-float-image img {
  width: 100%;
  display: block;
}

.attorney-content-wrap p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}

.lead-paragraph {
  font-size: 1.24rem !important;
  color: var(--navy) !important;
}

.attorney-cta {
  clear: both;

  margin-top: 46px;

  background: var(--cream);

  border-left: 6px solid var(--gold);

  padding: 34px;
}

.attorney-cta h2 {
  margin-top: 0;
}

/** contact form **/
.form-success,
.form-error{
  padding:16px 20px;
  border-radius:12px;
  margin-bottom:20px;
  font-weight:600;
}

.form-success{
  background:#e7f7ed;
  color:#146c2e;
  border:1px solid #b7e4c7;
}

.form-error{
  background:#fdecec;
  color:#a12626;
  border:1px solid #f5b5b5;
}

/**end contact form**/
@media (max-width: 900px) {

  .attorney-float-image {
    float: none;

    width: 100%;

    max-width: 420px;

    margin:
      0
      auto
      30px;
  }

}

/**disclaimer **/
.small-hero {
  padding: 60px 0;
}

.legal-page {
  max-width: 900px;
}

.legal-card {
  background: white;
  border-top: 6px solid var(--gold);
  padding: 46px;
  box-shadow: var(--shadow);
}

.legal-card p {
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 26px;
  color: var(--text);
}

.legal-actions {
  margin-top: 34px;
}

@media (max-width: 700px) {
  .legal-card {
    padding: 28px;
  }
}

/*personal injury main menu page */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.practice-card {
  background: white;
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);

  text-align: center;

  padding: 42px 24px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 280px;
}

.practice-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.08);
}

.practice-icon {
  margin-bottom: 28px;
}

.practice-icon i {
  font-size: 4.8rem;
  color: var(--gold);
}

.practice-card-content h2 {
  color: var(--navy);

  font-size: 1.45rem;

  line-height: 1.3;

  margin:
    0
    0
    20px;
}

.practice-card-content .text-link {
  font-weight: 700;
}

@media (max-width: 1200px) {

  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 900px) {

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 640px) {

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: auto;
  }

}
.practice-card {
  text-align: center;
}

.practice-icon {
  padding-top: 42px;
}

.practice-icon i {
  font-size: 3.4rem;
  color: var(--gold);
}

.practice-card-content {
  padding: 22px 26px 34px;
}

.practice-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: 50px;
  align-items: start;
}

.practice-detail-image {
  width: 100%;
}

.practice-detail-image img {
  width: 100%;
  display: block;

  border-top: 6px solid var(--gold);

  box-shadow: var(--shadow);

  object-fit: cover;
}

.practice-detail-content h1 {
  color: var(--navy);

  font-size: clamp(2.3rem, 4vw, 3.8rem);

  line-height: 1.05;

  margin-top: 0;
  margin-bottom: 28px;
}

.practice-detail-content p {
  font-size: 1.1rem;

  line-height: 1.9;

  margin-bottom: 24px;
  color: black;
  text-align: justify;
}

@media (max-width: 950px) {

  .practice-detail-grid {
    grid-template-columns: 1fr;
  }

}