/* ── GEORGE LAW BRAND SYSTEM ──────────────────────────────────

   Matches georgelaw.com: dark navy/charcoal foundation,

   red accent, clean sans-serif + serif pairing, white space

   ──────────────────────────────────────────────────────────── */



@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* ── BRAND TOKENS ── */

:root {

  /* Core palette — drawn from georgelaw.com's dark theme */

  --gl-navy: #0e3a51;

  /* deepest bg */

  --gl-text-title: #1e4d65;

  /* card / section bg */

  --gl-dark-desc: #000;

  --gl-desc-light: #212529;

  --color-secondary: #f8f3e2;

  --footer-bg-color: #313131;

  --gl-dark-mid: #1a2235;

  /* elevated surfaces */

  --gl-border: #1e2d47;

  /* subtle borders */

  --gl-red: #d03816;

  /* primary accent — GL's signature red */

  --gl-red-dark: #a93226;

  /* red hover */

  --gl-red-glow: rgba(192, 57, 43, 0.15);

  --gl-white: #ffffff;

  --gl-cream: #f4f1eb;

  /* warm off-white for headings */

  --gl-gray-1: #e8e8e8;

  /* body text on dark */

  --gl-gray-2: #9ca3af;

  /* muted text */

  --gl-gray-3: #4b5563;

  --gl-white: #FFF;

  /* very muted */



  /* Typography */

  --font-heading: "Crimson Text", serif;

  --font-ui: "Poppins", sans-serif;

  --font-body: "Poppins", sans-serif;



  /* Spacing rhythm */

  --section-pad: 96px;

  --section-pad-sm: 64px;

}



/* ── RESET ── */

*,

*::before,

*::after {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



html {

  scroll-behavior: smooth;

}



body {

  background: var(--gl-white);

  font-family: var(--font-body);

  font-weight: 400;

  font-size: 1rem;

  overflow-x: hidden;

}



img {

  max-width: 100%;

  display: block;

}



a {

  color: inherit;

  text-decoration: none;

}



.custom-container {

  max-width: 1368px;

  width: 100%;

  margin: 0 auto;

  padding-right: calc((24px) * .5);

  padding-left: calc((24px) * .5);

}



.section-padding {

  padding-top: 96px;

}



.section-padding-bottom {

  padding-bottom: 96px;

}





.bg-dark {

  background-color: var(--gl-text-title);

}



.bg-light {

  background-color: var(--color-secondary);

}



/* ── NAVIGATION ── */



header {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  z-index: 1000;

  padding: 15px 0;

  transition: background 0.35s, box-shadow 0.35s;

  height: auto;

}



.gl-nav {

  display: flex;

  align-items: center;

  justify-content: space-between;

  transition: background 0.35s, box-shadow 0.35s;



}



header.scrolled {

  background: var(--gl-navy);

  backdrop-filter: blur(12px);

  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);

}



.nav-logo {

  display: flex;

  flex-direction: column;

  line-height: 1.1;

}



.nav-logo img {

  width: 100%;

  height: 60px;

}



.nav-logo .name {

  font-family: var(--font-ui);

  font-weight: 800;

  font-size: 1.15rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: var(--gl-white);

}



.nav-logo .tagline {

  font-family: var(--font-ui);

  font-weight: 400;

  font-size: 0.6rem;

  letter-spacing: 0.3em;

  text-transform: uppercase;

  color: var(--gl-red);

}



.links-btn-wrapper {

  display: flex;

  gap: 32px;

}



.nav-links {

  display: flex;

  align-items: center;

  gap: 32px;

  list-style: none;

}



.nav-links a {

  font-family: var(--font-ui);

  font-size: 16px;

  font-weight: 500;

  letter-spacing: 1;

  line-height: 25px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.75);

  transition: color 0.2s;

  position: relative;

  padding-bottom: 2px;

}



.nav-links a::after {

  content: '';

  position: absolute;

  bottom: -2px;

  left: 0;

  right: 100%;

  height: 2px;

  background: var(--gl-red);

  transition: right 0.3s ease;

}



.nav-links a:hover,

.nav-links a.active {

  color: var(--gl-white);

}



.nav-links a:hover::after,

.nav-links a.active::after {

  right: 0;

}



.nav-cta-btn::after {

  display: none !important;

}



/* .nav-cta-btn:hover {

  background: var(--gl-red-dark) !important;

} */



/* Hamburger */

.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  background: none;

  border: none;

  cursor: pointer;

  padding: 6px;

}



.hamburger span {

  display: block;

  width: 24px;

  height: 2px;

  background: var(--gl-white);

  transition: all 0.3s;

}



/* ── BUTTONS ── */

.btn-red {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: var(--gl-red);

  color: var(--gl-white);

  font-family: var(--font-ui);

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 1;

  text-transform: uppercase;

  padding: 12px 18px;

  /* border: 2px solid var(--gl-red); */

  cursor: pointer;

  width: max-content;

  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;

}



.btn-red:hover {

  /* background: var(--gl-red-dark); */

  /* border-color: var(--gl-red-dark); */

  transform: translateY(-2px);

  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.35);

}



.btn-ghost {

  display: inline-flex;

  flex-shrink: 0;

  align-items: center;

  gap: 8px;

  background: transparent;

  color: var(--gl-dark-desc);

  font-family: var(--font-ui);

  font-weight: 600;

  font-size: 14px;

  width: max-content;

  letter-spacing: 1;

  text-transform: uppercase;

  padding: 12px 18px;

  border: 2px solid var(--gl-text-title);

  cursor: pointer;

  transition: border-color 0.25s, transform 0.2s;

}



.btn-ghost:hover {

  border-color: var(--gl-text-title);

  transform: translateY(-2px);

}



/* ── SECTION LABELS ── */

.eyebrow {

  font-family: var(--font-ui);

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.45em;

  text-transform: uppercase;

  color: var(--gl-red);

  display: flex;

  align-items: center;

  gap: 12px;

}



.eyebrow::before {

  content: '';

  display: block;

  width: 28px;

  height: 2px;

  background: var(--gl-red);

  flex-shrink: 0;

}



/* ── HEADINGS ── */

.section-heading {

  font-family: var(--font-heading);

  font-weight: 600;

  color: var(--gl-cream);

  line-height: 1.15;

}



/* ── DIVIDER ── */

.red-rule {

  width: 48px;

  height: 3px;

  background: var(--gl-red);

  margin: 28px 0;

}



/* ── FLOATING CTA ── */

.float-cta {

  position: fixed;

  bottom: 28px;

  right: 28px;

  z-index: 8000;

  background: var(--gl-red);

  color: var(--gl-white);

  font-family: var(--font-ui);

  font-weight: 700;

  font-size: 0.72rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  padding: 12px 18px;

  border: none;

  cursor: pointer;

  display: flex;

  align-items: center;

  gap: 8px;

  box-shadow: 0 4px 24px rgba(192, 57, 43, 0.45);

  animation: ctaPulse 3s ease-in-out infinite;

  transition: background 0.2s, transform 0.2s;

}



.float-cta:hover {

  /* background: var(--gl-red-dark); */

  transform: translateY(-3px);

  animation-play-state: paused;

}



/* @keyframes ctaPulse {



  0%,

  100% {

    box-shadow: 0 4px 24px rgba(192, 57, 43, 0.45);

  }



  50% {

    box-shadow: 0 4px 40px rgba(192, 57, 43, 0.7), 0 0 0 8px rgba(192, 57, 43, 0.08);

  }

} */



/* ── POPUP MODAL ── */

.popup-overlay {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.82);

  backdrop-filter: blur(6px);

  z-index: 9000;

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.35s;

  overflow-y: auto;

}



.popup-overlay.active {

  opacity: 1;

  pointer-events: all;

}



.popup-box {

  display: flex;

  flex-direction: column;

  gap: 18px;

  background: var(--color-secondary);

  border: 1px solid var(--gl-border);

  border-top: 4px solid var(--gl-red);

  max-width: 560px;

  width: 92%;

  padding: 22px 30px;

  position: relative;

  transform: translateY(24px);

  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);

}



.popup-overlay.active .popup-box {

  transform: translateY(36px);

}



.popup-close {

  position: absolute;

  top: 16px;

  right: 16px;

  background: none;

  border: 1px solid var(--gl-border);

  color: var(--gl-dark-desc);

  width: 32px;

  height: 32px;

  font-size: 1rem;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.2s;

}



/* .popup-close:hover {

  color: var(--gl-text-title);

  border-color: var(--gl-red);

} */



.popup-box .eyebrow {

  margin-bottom: 10px;

}



.popup-box h2 {

  font-family: var(--font-heading);

  font-size: 2rem;

  font-weight: 400;

  color: var(--gl-text-title);

  line-height: 1.2;

}



.popup-box>p {

  font-size: 0.9rem;

  color: var(--gl-desc-light);

  line-height: 1.6;

}



.popup-form {

  display: flex;

  flex-direction: column;

  gap: 12px;

}



.popup-form .btn-red {

  width: 100%;

  justify-content: center;

}

.popup-form input::placeholder,

.popup-form select::placeholder,

.popup-form textarea::placeholder {
color: #000000;

}

.popup-form input,

.popup-form select,

.popup-form textarea {

  width: 100%;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid var(--gl-border);

    color: #000000;

  font-family: var(--font-ui);

  font-size: 0.85rem;

  padding: 13px 14px;

  outline: none;

  transition: border-color 0.2s;

}



.popup-form input:focus,

.popup-form select:focus,

.popup-form textarea:focus {

  border-color: var(--gl-red);

}



.popup-form select {

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239ca3af'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 14px center;

  cursor: pointer;

}



.popup-form select option {

  background: var(--color-secondary);

  color: var(--gl-desc-light);

}



.popup-form textarea {

  height: 90px;

  resize: vertical;

}



.popup-legal {

  font-size: 0.68rem;

  color: var(--gl-desc-light);

  text-align: center;

  line-height: 1.5;

}



/* ── FOOTER ── */

.gl-footer {

  background: var(--footer-bg-color);

  border-top: 1px solid var(--gl-border);

  padding-bottom: 48px;

}



.footer-top {

  display: grid;

  grid-template-columns: 2fr 1fr 2fr;

  gap: 60px;

  padding-bottom: 56px;

  border-bottom: 1px solid var(--gl-white);

  margin-bottom: 32px;

}



.foot-mail-wrap {

  font-family: var(--font-ui);

  font-size: 16px;

  line-height: 30px;

  color: var(--gl-white);

  display: block;

  margin-bottom: 4px;

  transition: color 0.2s;

}



.foot-mail-wrap a:hover {

  color: var(--gl-red);

}



.footer-brand {

  display: flex;

  flex-direction: column;

  gap: 10px;

  width: 80%;

}



.footer-brand .logo-name {

  font-family: var(--font-ui);

  font-weight: 800;

  font-size: 1.05rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: var(--gl-white);

  margin-bottom: 2px;

}



.footer-brand .logo-sub {

  font-family: var(--font-ui);

  font-size: 0.58rem;

  letter-spacing: 0.3em;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 20px;

}



.footer-brand .phone {

  font-family: var(--font-ui);

  font-size: 1.25rem;

  font-weight: 700;

  color: var(--gl-white);

  letter-spacing: 0.03em;

  display: block;

  margin-bottom: 16px;

  transition: color 0.2s;

}



.footer-brand .phone:hover {

  color: var(--gl-red);

}



.footer-brand p {

  font-family: var(--font-ui);

  font-size: 16px;

  line-height: 30px;

  color: var(--gl-white);

  margin-top: 6px;

}



.footer-logo {

  width: 100%;

  height: auto;

}



.footer-logo img {

  width: max-content;

  height: 60px;

}



.footer-disclaimer {

  font-size: 16px;

  color: var(--gl-white);

  line-height: 30px;

  font-weight: 400;

}



.social-media-icons {

  display: flex;

  gap: 20px;

}



.social-media-icons i {

  width: 40px;

  border: 1px solid white;

  color: var(--gl-white);

  padding: 8px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 16px;

}



.social-media-icons a:hover i {

  border-color: var(--gl-red);

  color: var(--gl-red);

}



.footer-col {

  display: flex;

  flex-direction: column;

  gap: 10px;

}



.footer-col h4 {

  font-family: var(--font-ui);

  font-size: 20px;

  line-height: 38px;

  font-weight: 700;

  text-transform: uppercase;

  color: var(--gl-white);

  margin-bottom: 10px;

}



.footer-col a,

.footer-col p {

  display: block;

  font-family: var(--font-ui);

  font-size: 16px;

  font-weight: 400;

  color: var(--gl-white);

  transition: color 0.2s;

  letter-spacing: 0.03em;

}



.footer-col a:hover {

  color: var(--gl-red);

}



.footer-col a:hover .footer-icon i {

  border-color: var(--gl-red);

}



.footer-icon {

  display: flex;

  align-items: center;

  font-size: 18px;

  word-break: break-all;

}



.footer-icon i {

  flex-shrink: 0;

  width: 40px;

  border: 1px solid white;

  padding: 8px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  margin-right: 10px;

}



.footer-bottom {

  display: flex;

  justify-content: center;

  align-items: center;

  font-family: var(--font-ui);

  font-size: 0.7rem;

  color: var(--gl-gray-3);

  letter-spacing: 0.05em;

}



.footer-bottom a {

  color: var(--gl-white);

  transition: color 0.2s;

}



.footer-bottom a:hover {

  color: var(--gl-white);

}



.footer-bottom span {

  font-size: 16px;

  font-family: var(--font-ui);

  font-weight: 400;

  line-height: 34px;

  color: var(--gl-white);

}



/* ── SCROLL REVEAL ── */

.reveal {

  opacity: 0;

  transform: translateY(32px);

  transition: opacity 0.75s ease, transform 0.75s ease;

}



.reveal.in {

  opacity: 1;

  transform: none;

}



.reveal-left {

  opacity: 0;

  transform: translateX(-32px);

  transition: opacity 0.75s ease, transform 0.75s ease;

}



.reveal-left.in {

  opacity: 1;

  transform: none;

}



/* Index page css */

/* ══════════════════════════════════════

       HERO — Full viewport, video BG

    ══════════════════════════════════════ */



.hero {

  position: relative;

  height: 100vh;

  display: flex;

  align-items: center;

  flex-direction: column;

  justify-content: center;

  overflow: hidden;

}



.hero::after {

  content: '';

  background-color: rgba(0, 0, 0, 0.4);

  width: 100%;

  height: 100%;

  display: block;

  position: absolute;

}



/* Video wrapper */

.hero-video-wrap {

  position: absolute;

  inset: 0;

  z-index: 0;

}



.hero-video-wrap img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



/* REAL video — swap src when client provides file */

.hero-video-wrap video {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



/* Animated canvas fills the space as dummy video */

#heroCanvas {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  display: block;

}



/* Overlay: dark gradient left, fade to transparent right */

.hero-overlay {

  position: absolute;

  inset: 0;

  z-index: 1;

  background:

    linear-gradient(90deg,

      rgba(10, 14, 26, 0.95) 0%,

      rgba(10, 14, 26, 0.80) 45%,

      rgba(10, 14, 26, 0.30) 100%),

    linear-gradient(to top,

      rgba(10, 14, 26, 0.85) 0%,

      transparent 40%);

}



.hero-content-wrapper {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 24px;

  z-index: 2;

}



/* Content */

.hero-content {

  position: relative;

  display: flex;

  flex-direction: column;

  padding-top: 96px;

  gap: 18px;

  z-index: 2;

  /* nav height */

}



.hero-pretitle {

  font-family: var(--font-ui);

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.45em;

  text-transform: uppercase;

  color: var(--gl-red);

  display: flex;

  align-items: center;

  gap: 12px;

  animation: fadeUp 0.7s ease both;

}



.hero-pretitle::before {

  content: '';

  display: block;

  width: 32px;

  height: 2px;

  background: var(--gl-red);

}



.hero h1 {

  font-family: var(--font-heading);

  font-size: clamp(3.2rem, 6.5vw, 72px);

  font-weight: 700;

  line-height: 1.0;

  color: var(--gl-white);

  animation: fadeUp 0.7s 0.12s ease both;

}



.hero h1 em {

  font-weight: 400;

  color: var(--gl-cream);

}



.hero-subhead {

  font-family: var(--font-ui);

  font-size: clamp(0.9rem, 1.4vw, 1.1rem);

  font-weight: 400;

  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.65);

  text-transform: uppercase;

  animation: fadeUp 0.7s 0.22s ease both;

}



.hero-desc {

  font-size: clamp(1rem, 1.3vw, 1.15rem);

  color: rgba(255, 255, 255, 0.78);

  line-height: 1.75;

  max-width: 560px;

  animation: fadeUp 0.7s 0.32s ease both;

}



.hero-actions {

  display: flex;
  flex-wrap: wrap;

  gap: 16px;

  animation: fadeUp 0.7s 0.42s ease both;

}



.hero-actions .btn-ghost {

  background: transparent;

  border: 2px solid #fff;

  color: #fff;

  font-weight: 600;

}





/* Trust strip below hero content */

.hero-trust {

  /* position: absolute;

  bottom: 6%;

  z-index: 2; */

  display: flex;

  align-items: center;

  gap: 36px;

  animation: fadeUp 0.7s 0.55s ease both;

}



.trust-divider {

  width: 1px;

  height: 36px;

  background: rgba(255, 255, 255, 0.15);

}



.trust-item {

  display: flex;

  flex-direction: column;

}



.trust-item .num {

  font-family: var(--font-heading);

  font-size: 1.8rem;

  font-weight: 700;

  color: var(--gl-red);

  line-height: 1;

}



.trust-item .lbl {

  font-family: var(--font-ui);

  font-size: 0.6rem;

  font-weight: 600;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-white);

  margin-top: 3px;

}



@keyframes fadeUp {

  from {

    opacity: 0;

    transform: translateY(24px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* ══════════════════════════════════════

       RED URGENCY BAR

    ══════════════════════════════════════ */

.urgency-bar {

  background: var(--gl-red);

  padding: 14px 5%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 16px;

  text-align: center;

}



.urgency-bar p {

  font-family: var(--font-ui);

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--gl-white);

}



.urgency-bar a {

  color: #fff;

  text-decoration: underline;

  /* word-break: break-all; */

}



/* ══════════════════════════════════════

       INTRO / WHY SECTION

    ══════════════════════════════════════ */

.intro-section {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

}



.intro-text {

  display: flex;

  flex-direction: column;

  gap: 18px;

}



.intro-text h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  line-height: 48px;

  font-weight: 400;

  color: var(--gl-text-title);

  line-height: 1.15;

}



.intro-text h2 em {

  font-weight: 400;

}



.intro-text p {

  color: var(--gl-dark-desc);

  font-size: 1.02rem;

  line-height: 34px;

  font-weight: 400;

}





.intro-stats {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2px;

  background: var(--color-secondary);

}



.stat-cell {

  background: none;

  padding: 40px 32px;

  border-left: 3px solid transparent;

  transition: border-color 0.3s;

}



.stat-cell:hover {

  border-color: var(--gl-text-title);

}



.stat-cell .n {

  font-family: var(--font-ui);

  font-size: 3.2rem;

  font-weight: 700;

  color: var(--gl-text-title);

  line-height: 1;

  margin-bottom: 8px;

}



.stat-cell .l {

  font-family: var(--font-ui);

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--gl-dark-desc);

}



/* ══════════════════════════════════════

       CHARGES GRID

    ══════════════════════════════════════ */

.charges-section {

  background: var(--gl-dark);

}



.section-header .eyebrow {

  margin-bottom: 12px;

}



.section-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 56px;

  gap: 24px;

  flex-wrap: wrap;

}



.section-header h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  line-height: 48px;

}



.section-header h2 em {

  font-weight: 400;

}



.charges-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2px;

  background: var(--color-secondary);

}



.charge-card {

  background: var(--gl-text-title);

  padding: 36px 28px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 18px;

  text-decoration: none;

  position: relative;

  overflow: hidden;

  transition: background 0.3s;

}

.service-img {
  width: 100%;
}

.service-img img {

  width: 100%;

  height: auto;

}



/* .charge-card::before {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 100%;

  height: 3px;

  transition: right 0.4s ease;

} */



/* .charge-card:hover {

  background: var(--gl-text-title);

} */



/* .charge-card:hover::before {

  right: 0;

} */



.charge-icon {

  width: 44px;

  height: 44px;

  border: 1px solid var(--gl-border);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.2rem;

  margin-bottom: 20px;

  transition: border-color 0.3s, background 0.3s;

}



.charge-card:hover .charge-icon {

  border-color: var(--gl-red);

  background: var(--gl-red-glow);

}



/* .charge-card:hover h3{

  color: var(--gl-white)

}



.charge-card:hover p{

  color: var(--gl-white)

} */



.charge-card h3 {

  font-family: var(--font-ui);

  font-size: 20px;

  font-weight: 700;

  letter-spacing: 0.1em;

  line-height: 26px;

  text-transform: uppercase;

  color: var(--gl-white);

  margin-top: 18px
}



.charge-card p {

  font-size: 16px;

  font-weight: 400;

  color: var(--gl-white);

  line-height: 34px;

}



/* ══════════════════════════════════════

       PROCESS STEPS

    ══════════════════════════════════════ */



.process-section>.eyebrow {

  margin-bottom: 16px;

}



.process-section>h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 60px;

  max-width: 480px;

  line-height: 1.2;

}



.process-section>h2 em {

  font-weight: 400;

}



.steps-row {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  position: relative;

}



.steps-row::before {

  content: '';

  position: absolute;

  top: 28px;

  left: 20px;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, var(--gl-border), var(--gl-border), var(--gl-border), var(--gl-border));

}







.step {

  padding: 0 20px;

}



.step-num {

  width: 56px;

  height: 56px;

  border: 2px solid var(--gl-text-title);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-heading);

  font-size: 1.4rem;

  font-weight: 600;

  color: var(--gl-white);

  background: var(--gl-text-title);

  position: relative;

  z-index: 1;

  margin-bottom: 24px;

  transition: background 0.3s, color 0.3s;

}



/* .step:hover .step-num {

  background: var(--gl-red);

  color: var(--gl-white);

} */



.step h3 {

  font-family: var(--font-ui);

  font-size: 20px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--gl-text-title);

  margin-bottom: 10px;

}



.step p {

  font-size: 16px;

  color: var(--gl-dark-desc);

  line-height: 34px;

}



/* ══════════════════════════════════════

       TESTIMONIALS

    ══════════════════════════════════════ */



.testimonials-section>.section-header {

  margin-bottom: 48px;

}



.testimonials-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  /* background: var(--color-secondary); */

}



.testimonial {

  background: var(--color-secondary);

  padding: 36px 32px;

  position: relative;

}



.stars {

  display: flex;

  color: var(--gl-red);

  font-size: 0.85rem;

  letter-spacing: 3px;

  margin-bottom: 16px;

}



.stars li {

  list-style: none;

}



.testimonial blockquote {

  font-family: var(--font-body);

  font-style: italic;

  font-size: 16px;

  color: var(--gl-desc-light);

  line-height: 1.8;

  margin-bottom: 20px;

}



.testimonial-source {

  font-family: var(--font-ui);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-red);

}



.review-badges {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 24px;

  margin-top: 48px;

  padding-top: 32px;

  border-top: 1px solid var(--gl-border);

}



.review-badges .trust-divider {

  height: 42px;

  width: 1px;

  background: var(--gl-border);

}



.badge-item {

  font-family: var(--font-ui);

  font-size: 16px;

  font-weight: 500;

  line-height: 29px;

  text-transform: uppercase;

  color: var(--gl-desc-light);

}



.badge-item strong {

  display: block;

  font-size: 1.1rem;

  color: var(--gl-text-title);

}



/* Index page css completes */



/* About page css starts */



.page-header {

  position: relative;

  height: 100vh;

  display: flex;

  align-items: flex-start;

  flex-direction: column;

  justify-content: center;

  overflow: hidden;

}



.page-header::after {

  content: '';

  background-color: rgba(0, 0, 0, 0.4);

  width: 100%;

  height: 100%;

  display: block;

  position: absolute;

}



.hero-inner-page-wrapper {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 24px;

  z-index: 2;

  padding-top: 150px;
  padding-bottom: 80px;

}



.breadcrumb {

  font-family: var(--font-ui);

  font-size: 0.85rem;

  font-weight: 500;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-white);

  margin-bottom: 28px;

}



.breadcrumb a {

  color: var(--gl-red);

}



.breadcrumb span {

  margin: 0 8px;

}



.page-header h1 {

  font-family: var(--font-heading);

  font-size: 72px;

  font-weight: 700;

  color: var(--gl-cream);

  line-height: 1;

}



.page-header h1 em {

  font-weight: 400;

}



.page-header p {

  color: var(--gl-gray-1);

  font-size: 1rem;

  max-width: 580px;

  line-height: 1.78;

}



.page-header-actions {

  display: flex;

  gap: 14px;

  flex-wrap: wrap;

}



.page-header-actions .btn-ghost {

  background: var(--color-secondary);

  border: none;

  color: var(--gl-red);

  font-weight: 700;

}



/* ── MISSION ── */

.mission-section {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 72px;

  align-items: center;

}



.mission-text h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  line-height: 48px;

  margin-bottom: 20px;

}



.mission-text h2 em {

  font-weight: 400;

}



.mission-text p {

  color: var(--gl-desc-light);

  font-size: 1rem;

  line-height: 30px;

  font-weight: 400;

  margin-bottom: 16px;

}



.mission-text .btn-red {

  margin-top: 12px;

}



/* Pull quote card */

.quote-card {

  background: var(--gl-dark);

  border: 1px solid var(--gl-border);

  border-left: 4px solid var(--gl-red);

  padding: 48px 40px;

}



.quote-card blockquote {

  font-family: var(--font-heading);

  font-size: 1.5rem;

  font-weight: 400;

  color: var(--gl-text-title);

  line-height: 1.5;

  margin-bottom: 28px;

}



.quote-card cite {

  font-family: var(--font-ui);

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-red);

  font-style: normal;

}



.firm-numbers {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1px;

  background: var(--gl-desc-light);

  margin-top: 32px;

}



.fn-cell {

  background: var(--color-secondary);

  padding: 28px 24px;

}



.fn-cell .n {

  font-family: var(--font-ui);

  font-size: 2.4rem;

  font-weight: 700;

  color: var(--gl-text-title);

  line-height: 1;

  margin-bottom: 6px;

}



.fn-cell .l {

  font-family: var(--font-ui);

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--gl-desc-light);

}



/* ── ATTORNEYS ── */



.attorneys-section>.eyebrow {

  margin-bottom: 12px;

}



.attorneys-section>h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3vw, 40px);

  line-height: 48px;

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 52px;

}



.attorneys-section>h2 em {

  font-weight: 400;

}



.attorneys-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

}



.attorney-card {

  background: var(--color-secondary);

  padding: 44px 32px;

  position: relative;

  transition: background 0.3s;

  border-top: 3px solid transparent;

}



.attorney-initials {

  width: 72px;

  height: 72px;

  background: var(--gl-text-title);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-heading);

  font-size: 1.5rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 24px;

}



.attorney-card h3 {

  font-family: var(--font-ui);

  font-size: 20px;

  font-weight: 600;

  color: var(--gl-text-title);

  margin-bottom: 4px;

}





.attorney-card .title {

  font-family: var(--font-ui);

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 20px;

}



.attorney-card p {

  font-size: 0.88rem;

  color: var(--gl-dark-desc);

  line-height: 1.72;

  margin-bottom: 24px;

}



.attorney-stats {

  display: flex;

  gap: 20px;

  border-top: 1px solid var(--gl-border);

  padding-top: 20px;

}



.atty-stat .n {

  font-family: var(--font-ui);

  font-size: 18px;

  line-height: 30px;

  font-weight: 700;

  color: var(--gl-text-title);

}



.atty-stat .l {

  font-family: var(--font-ui);

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--gl-text-title);

  margin-top: 3px;

}



/* ── REVIEWS SECTION ── */

.reviews-section {

  padding: 80px 5%;

}



.reviews-section>.eyebrow {

  margin-bottom: 12px;

}



.reviews-section>h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3vw, 40px);

  font-weight: 400;

  line-height: 48px;

  color: var(--gl-text-title);

  margin-bottom: 52px;

}



.reviews-section>h2 em {

  font-weight: 400;

}



.reviews-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2px;

  background: var(--color-secondary);

}



.review-card {

  padding: 36px 32px;

}





.review-card blockquote {

  font-family: var(--font-body);

  font-style: italic;

  font-size: 16px;

  color: var(--gl-desc-light);

  line-height: 1.8;

  margin-bottom: 18px;

}



.review-card cite {

  font-family: var(--font-ui);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-red);

  font-style: normal;

}



.review-total {

  text-align: center;

  margin-top: 40px;

  padding: 32px;

  border: 1px solid var(--gl-border);

}



.review-total strong {

  display: block;

  font-family: var(--font-heading);

  font-size: 3rem;

  font-weight: 700;

  color: var(--gl-cream);

  line-height: 1;

}



.review-total span {

  font-family: var(--font-ui);

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-gray-2);

}



/* ── VALUES ── */



.values-section>.eyebrow {

  margin-bottom: 12px;

}



.values-section>h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 52px;

  text-align: center;

}



.values-section>h2 em {

  font-weight: 400;

}



.eyebrow-center {

  justify-content: center;

  margin-bottom: 12px;

}



.values-grid {

  display: flex;

  gap: 20px;

  justify-content: center;

}



.value-card {

  display: flex;

  flex-direction: column;

  align-items: center;

  background: var(--gl-text-title);

  padding: 28px 28px;

  text-align: center;

  transition: background 0.3s;

  width: 100%;

  max-width: 320px;

}



.value-icon {

  font-size: 1.8rem;

  margin-bottom: 18px;

  display: block;

  color: var(--color-secondary);

}



.value-card h3 {

  font-family: var(--font-heading);

  font-size: 20px;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--gl-cream);

  margin-bottom: 12px;

}



.value-card p {

  font-size: 1rem;

  color: var(--gl-white);

  line-height: 1.8;

}



/* ── AWARDS ── */



.awards-bar {

  border-top: 1px solid var(--gl-text-title);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 2px;

  flex-wrap: wrap;

}



.award-tile {

  flex-shrink: 0;

  width: 200px;

  background: var(--gl-white);

  border: 1px solid var(--gl-text-title);

  padding: 28px 20px;

  text-align: center;

}



.award-tile .icon {

  font-size: 1.6rem;

  display: block;

  margin-bottom: 10px;

  color: var(--gl-text-title);

}



.award-tile p {

  font-family: var(--font-ui);

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--gl-dark-desc);

  line-height: 1.5;

}



/* ── CTA ── */

.page-cta {

  text-align: center;

  background: var(--color-secondary);

}



.page-cta h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  line-height: 48px;

  color: var(--gl-text-title);

  margin-bottom: 16px;

}



.page-cta h2 em {

  font-weight: 400;

}



.page-cta p {

  color: var(--gl-dark-desc);

  font-size: 16px;

  line-height: 30px;

  max-width: 500px;

  margin: 0 auto 36px;

}



.page-cta-actions {

  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;

}



.page-cta-actions .btn-ghost i {

  color: var(--gl-red);

  font-size: 18px;

}





/* about page css completed */



/* Blog page css starts */

/* ── FEATURED POST ── */



.featured-post {

  display: grid;

  grid-template-columns: 1fr 1fr;

  border: 1px solid var(--gl-border);

  border-top: 4px solid var(--gl-red);

  overflow: hidden;

}



.featured-visual {

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

}





.featured-image {

  position: absolute;

  inset: 0;

  z-index: 0;

}



/* make image behave like background */

.featured-image img {

  width: fit-content;

  height: 100%;

  object-fit: cover;

  width: 100%;

}



.featured-label {

  position: absolute;

  top: 20px;

  left: 20px;

  background: var(--gl-red);

  color: #fff;

  font-family: var(--font-ui);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  padding: 5px 12px;

  z-index: 1;

}



.featured-content {

  padding: 48px 44px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.post-meta {

  font-family: var(--font-ui);

  font-size: 0.68rem;

  font-weight: 600;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 14px;

}



.featured-content h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  line-height: 1.2;

  margin-bottom: 18px;

}



.featured-content p {

  font-size: 0.95rem;

  color: var(--gl-dark-desc);

  line-height: 1.78;

  margin-bottom: 28px;

}



.read-more {

  font-family: var(--font-ui);

  font-size: 0.78rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--gl-red);

  display: inline-flex;

  align-items: center;

  gap: 8px;

  transition: gap 0.2s;

}



.read-more:hover {

  gap: 14px;

}



/* ── BLOG GRID ── */



.blog-section-label {

  font-family: var(--font-ui);

  font-size: 0.65rem;

  font-weight: 700;

  letter-spacing: 0.4em;

  text-transform: uppercase;

  color: var(--gl-gray-3);

  margin-bottom: 28px;

  border-bottom: 1px solid var(--gl-border);

  padding-bottom: 16px;

}



.blog-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}



.blog-card {

  background: var(--color-secondary);

  display: flex;

  flex-direction: column;

  text-decoration: none;

  transition: background 0.3s;

}



/* .blog-card:hover {

  background: var(--gl-dark-mid);

  border-top-color: var(--gl-red);

} */



.card-thumb {

  height: 240px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2.5rem;

  position: relative;

  overflow: hidden;

}



.card-thumb img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;



}



.card-thumb::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(to bottom, transparent 50%, var(--gl-dark) 100%);

}



.card-body {

  padding: 24px 24px 32px;

  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 14px;

}



.card-cat {

  font-family: var(--font-ui);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.25em;

  text-transform: uppercase;

  color: var(--gl-red);

}



.blog-card h3 {

  font-family: var(--font-heading);

  font-size: 20px;

  font-weight: 600;

  color: var(--gl-text-title);

  line-height: 1.3;

  flex: 1;

}



.blog-card p {

  font-size: 1rem;

  color: var(--gl-dark-desc);

  line-height: 30px;

}



.card-footer {

  display: flex;

  justify-content: space-between;

  font-family: var(--font-ui);

  font-size: 0.65rem;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--gl-desc-light);

  border-top: 1px solid var(--gl-border);

  padding-top: 14px;

}



/* ── TOPICS ── */

.topics-section {

  padding-top: 28px;

  border-top: 1px solid var(--gl-border);

}



.topics-section h2 {

  font-family: var(--font-heading);

  font-size: 40px;

  font-weight: 400;

  line-height: 48px;

  color: var(--gl-text-title);

  margin-bottom: 32px;

}



.topics-section h2 em {

  font-weight: 400;

}



.topics-section .eyebrow {

  margin-bottom: 12px;

}



.topic-tags {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

}



.topic-tag {

  font-family: var(--font-ui);

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: var(--gl-gray-2);

  border: 1px solid var(--gl-border);

  padding: 9px 16px;

  text-decoration: none;

  transition: all 0.2s;

}



.topic-tag:hover {

  border-color: var(--gl-red);

  color: var(--gl-text-title);

  background: rgba(192, 57, 43, 0.08);

}



/* ── NEWSLETTER ── */



.newsletter-form {

  display: flex;

  gap: 12px;

  max-width: 460px;

  margin: 0 auto;

}

.newsletter-form input::placeholder {
    color: black;
}

.newsletter-form input {

  flex: 1;

  border: 1px solid var(--gl-border);

  border-right: none;

  font-family: var(--font-ui);
    color: black;
  font-size: 0.85rem;

  padding: 16px 18px;

  outline: none;

  transition: border-color 0.2s;
  width: 100%;

}



.newsletter-form input:focus {

  border-color: var(--gl-red);

}



/* blog page css completes */



/* contact page css starts */

.contact-layout {

  min-height: 100vh;

  display: grid;

  grid-template-columns: 1fr 1fr;

  justify-content: center;

  gap: 40px;

}



/* ── LEFT PANEL ── */

.contact-left {

  border-right: 1px solid var(--gl-border);

  border-left: 1px solid var(--gl-border);

  padding: 72px 5% 72px 7%;

  display: flex;

  flex-direction: column;

  gap: 32px;

  position: relative;

  height: max-content;

}



.contact-left::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 4px;

  background: var(--gl-red);

}



.contact-left::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 4px;

  background: var(--gl-red);

}



.contact-left h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  line-height: 48px;

  color: var(--gl-text-title);

}



.contact-left h1 em {

  font-weight: 400;

}



.contact-left>p {

  color: var(--gl-dark-desc);

  font-size: 1rem;

  line-height: 1.78;

  max-width: 420px;

}



.contact-methods {

  display: flex;

  flex-direction: column;

  gap: 2px;

  background: var(--color-secondary);

}



.contact-method {

  background: var(--gl-text-title);

  padding: 22px 24px;

  display: flex;

  align-items: center;

  gap: 18px;

  text-decoration: none;

  border-left: 3px solid transparent;

  transition: border-color 0.25s, background 0.25s;

}





.method-icon {

  font-size: 1.3rem;

  flex-shrink: 0;

  width: 44px;

  height: 44px;

  border: 1px solid var(--gl-white);

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gl-white);

}



.method-info {

  flex: 1;

}



.method-label {

  font-family: var(--font-ui);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.25em;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 2px;

}



.method-value {

  font-family: var(--font-ui);

  font-size: 1rem;

  font-weight: 700;

  color: var(--gl-cream);

  letter-spacing: 0.03em;

  word-break: break-all;

}



.method-sub {

  font-family: var(--font-ui);

  font-size: 0.72rem;

  color: var(--gl-white);

  margin-top: 1px;

}



.method-arrow {

  color: var(--gl-white);

  font-size: 1rem;

  opacity: 0;

  transform: translateX(-6px);

  transition: all 0.2s;

}



.contact-method:hover .method-arrow {

  opacity: 1;

  transform: none;

}



.emergency-callout {

  background: rgba(192, 57, 43, 0.08);

  border: 1px solid rgba(192, 57, 43, 0.25);

  border-left: 4px solid var(--gl-red);

  padding: 20px 22px;

  display: flex;

  gap: 14px;

  align-items: flex-start;

}



.emergency-callout .e-icon {

  font-size: 1.3rem;

  flex-shrink: 0;

  margin-top: 2px;

  color: var(--gl-red);

}



.emergency-callout h3 {

  font-family: var(--font-ui);

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 5px;

}



.emergency-callout p {

  font-size: 0.85rem;

  color: var(--gl-dark-desc);

  line-height: 1.6;

}



.emergency-callout a {

  color: var(--gl-red);

  font-weight: 600;

  text-decoration: underline;

}



/* ── RIGHT PANEL — FORM ── */

.contact-right {

  background: var(--color-secondary);

  padding: 72px 5% 72px 7%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  height: max-content;

}



.formWrap {

  display: flex;

  flex-direction: column;

  gap: 32px;

}



.form-head {

  display: flex;

  flex-direction: column;

  gap: 32px;

}



.form-head h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 8px;

}



.form-head h2 em {

  font-weight: 400;

}



.form-head p {

  font-size: 1rem;

  color: var(--gl-desc-light);

  line-height: 1.65;

}



.contact-form {

  display: flex;

  flex-direction: column;

  gap: 12px;

}



.form-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

}
.contact-form input::placeholder,

.contact-form select::placeholder,

.contact-form textarea::placeholder {
  color: #000000;
}


.contact-form input,

.contact-form select,

.contact-form textarea {

  border: 1px solid var(--gl-border);

  color: #000000;

  font-family: var(--font-ui);

  font-size: 0.85rem;

  padding: 15px 16px;

  outline: none;

  width: 100%;

  transition: border-color 0.2s, background 0.2s;

}



.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus {

  border-color: var(--gl-red);

  background: rgba(192, 57, 43, 0.03);

}



.contact-form input::placeholder,

.contact-form textarea::placeholder {

   color: #000000;

}



.contact-form select {

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239ca3af'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 14px center;

  cursor: pointer;

}



.contact-form select option {

  background: var(--color-secondary);

}



.contact-form textarea {

  height: 120px;

  resize: vertical;

  line-height: 1.6;

}



.form-submit {

  margin-top: 6px;

}



.form-submit .btn-red {

  width: 100%;

  justify-content: center;

}



.form-legal {

  font-family: var(--font-ui);

  font-size: 13px;

  color: var(--gl-desc-light);

  text-align: center;

  margin-top: 12px;

  line-height: 1.55;

}



.form-legal a {

  color: var(--gl-gray-2);

  text-decoration: underline;

}



/* Success */

.form-success {

  display: none;

  text-align: center;

  padding: 56px 24px;

}



.form-success.active {

  display: block;

}



.form-success .s-icon {

  font-size: 3rem;

  margin-bottom: 20px;

  display: block;

  color: green;

}



.form-success h3 {

  font-family: var(--font-heading);

  font-size: 2rem;

  font-weight: 600;

  color: var(--gl-cream);

  margin-bottom: 12px;

}



.form-success p {

  color: var(--gl-gray-1);

  line-height: 1.75;

}



.form-success a {

  color: var(--gl-red);

  font-weight: 600;

}



/* ── LOCATION ── */

.location-section {

  display: flex;

  align-items: end;

  gap: 64px;

  justify-content: center;

}



.location-info {

  width: 50%;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 32px;

}



.location-info h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

}



.location-info h2 em {

  font-weight: 400;

}



.loc-item {

  width: 100%;

  display: flex;

  gap: 16px;

  align-items: flex-start;

  padding: 22px;

  border-bottom: 1px solid var(--gl-border);

  background-color: var(--color-secondary);

}



.loc-item .icon {

  font-size: 22px;

  flex-shrink: 0;

  color: var(--gl-text-title);

}



.loc-item h3 {

  font-family: var(--font-ui);

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 1;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 5px;

}



.loc-item p {

  font-size: 1rem;

  color: var(--gl-dark-desc);

  line-height: 30px;

  font-weight: 400;

}



.map-box {

  width: 50%;

}



.map-inner {

  width: 100%;

  justify-self: end;

}



.map-inner iframe {

  width: 100%;

  height: 540px;

}





/* contact page css completes */





/* crime-defense page css starts */

/* ── WARNING BAND ── */

.warning-band {

  background: rgba(192, 57, 43, 0.1);

  border-left: 4px solid var(--gl-red);

  padding: 14px 5%;

  display: flex;

  align-items: center;

  gap: 16px;

}



.warning-band strong {

  font-family: var(--font-ui);

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: var(--gl-red);

}



.warning-band p {

  font-family: var(--font-ui);

  font-size: 0.85rem;

  color: var(--gl-red);

}



.warning-band a {

  color: var(--gl-red);

  font-weight: 600;

  text-decoration: underline;

}



/* ── INTRO CONTENT ── */

.content-intro {

  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 64px;

  align-items: start;

}



.content-intro .eyebrow {

  margin-bottom: 12px;

}



.content-main p {

  font-size: 1rem;

  color: var(--gl-dark-desc);

  margin-bottom: 18px;

  line-height: 1.8;

}



.content-main h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  margin: 36px 0 18px;

  line-height: 1.2;

}



.content-main h2 em {

  font-weight: 400;

}



/* Sidebar contact card */

.sidebar-card {

  background: var(--color-secondary);

  border: 1px solid var(--gl-border);

  border-top: 4px solid var(--gl-red);

  padding: 36px 28px;

  position: sticky;

  top: 92px;

}



.sidebar-card h3 {

  font-family: var(--font-heading);

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-red);

  margin-bottom: 12px;

}



.sidebar-card h4 {

  font-family: var(--font-heading);

  font-size: 1.5rem;

  font-weight: 600;

  color: var(--gl-text-title);

  line-height: 1.2;

  margin-bottom: 16px;

}



.sidebar-card p {

  font-size: 0.85rem;

  color: var(--gl-dark-desc);

  line-height: 1.65;

  margin-bottom: 24px;

}
.sidebar-form input::placeholder,

.sidebar-form select::placeholder {
    color: #000000;
}


.sidebar-form input,

.sidebar-form select {

  width: 100%;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid var(--gl-border);

      color: #000000;

  font-family: var(--font-ui);

  font-size: 0.82rem;

  padding: 12px 14px;

  margin-bottom: 10px;

  outline: none;

  transition: border-color 0.2s;

}



.sidebar-form input:focus,

.sidebar-form select:focus {

  border-color: var(--gl-red);

}



.sidebar-form select {

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239ca3af'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 12px center;

  cursor: pointer;

}



.sidebar-form select option {

  background: var(--color-secondary);

}



.sidebar-form .btn-red {

  width: 100%;

  justify-content: center;

  margin-top: 4px;

}



.sidebar-phone {

  text-align: center;

  margin-top: 16px;

  padding-top: 16px;

  border-top: 1px solid var(--gl-border);

}



.sidebar-phone a {

  font-family: var(--font-ui);

  font-size: 1.2rem;

  font-weight: 700;

  color: var(--gl-dark-desc);

  letter-spacing: 0.03em;

  transition: color 0.2s;

}



.sidebar-phone a:hover {

  color: var(--gl-red);

}



.sidebar-phone p {

  font-family: var(--font-ui);

  font-size: 14px;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--gl-dark-desc);

  margin-top: 4px;

  margin-bottom: 0;

}



/* ── CHARGE ACCORDIONS ── */

.charges-accordion {

  background: var(--color-secondary);

}



.charges-accordion>.eyebrow {

  margin-bottom: 12px;

}



.charges-accordion>h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 48px;

}



.charges-accordion>h2 em {

  font-weight: 400;

}



.accordion-item {

  border-bottom: 1px solid var(--gl-border);

  overflow: hidden;

}



.accordion-item:first-of-type {

  border-top: 1px solid var(--gl-border);

}



.accordion-trigger {

  width: 100%;

  background: none;

  border: none;

  padding: 26px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;

  gap: 20px;

  text-align: left;

  transition: color 0.2s;

}



.accordion-trigger:hover .trigger-text {

  color: var(--gl-cream);

}



.trigger-text {

  display: flex;

  align-items: center;

  gap: 16px;

}



.trigger-text h3 {

  font-family: var(--font-heading);

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--gl-dark-desc);

  transition: color 0.2s;

}



.trigger-badge {

  font-size: 0.6rem;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  background: rgba(192, 57, 43, 0.15);

  color: var(--gl-red);

  padding: 4px 10px;

  white-space: nowrap;

  width: max-content;

}



.trigger-icon {

  color: var(--gl-red);

  font-size: 1.4rem;

  font-weight: 400;

  flex-shrink: 0;

  transition: transform 0.3s;

  line-height: 1;

}



.accordion-item.open .trigger-icon {

  transform: rotate(45deg);

}



.accordion-item.open .trigger-text h3 {

  color: var(--gl-dark-desc);

}



.accordion-body {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.45s ease;

}



.accordion-item.open .accordion-body {

  max-height: fit-content;

}



.accordion-body-inner {

  padding: 0 0 32px;

  border-top: 1px solid var(--gl-border);

  margin-top: 0;

  padding-top: 24px;

}



.accordion-body-inner p {

  color: var(--gl-dark-desc);

  font-size: 1rem;

  line-height: 1.8;

  margin-bottom: 16px;

}



.defense-list {

  margin: 16px 0;

  list-style: disc;

}



.defense-list li {

  font-family: var(--font-ui);

  font-size: 0.9rem;

  color: var(--gl-dark-desc);

  padding: 8px 0 8px 22px;

  position: relative;

  border-bottom: 1px solid rgba(255, 255, 255, 0.04);

}



.defense-list li::before {

  content: '→';

  position: absolute;

  left: 0;

  color: var(--gl-red);

  font-size: 0.8rem;

}



/* ── DEFENSE APPROACH ── */

.approach-section {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: start;

}



.approach-left .eyebrow {

  margin-bottom: 12px;

}



.approach-left h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 20px;

  line-height: 1.2;

}



.approach-left h2 em {

  font-weight: 400;

}



.approach-left p {

  color: var(--gl-dark-desc);

  font-size: 0.98rem;

  line-height: 1.8;

  margin-bottom: 16px;

}



.approach-left .btn-red {

  margin-top: 12px;

}



.pillars {

  display: flex;

  flex-direction: column;

  gap: 2px;

  background: var(--gl-text-title);

}



.pillar {

  background: var(--color-secondary);

  padding: 24px 28px;

  display: flex;

  gap: 18px;

  align-items: flex-start;

  border-left: 3px solid transparent;

  transition: border-color 0.3s, background 0.3s;

}



.pillar-icon {

  font-size: 1.3rem;

  flex-shrink: 0;

  margin-top: 2px;

}



.pillar-icon i {

  color: var(--gl-text-title);

}



.pillar h3 {

  font-family: var(--font-heading);

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--gl-text-title);

  margin-bottom: 6px;

}



.pillar p {

  font-size: 15px;

  color: var(--gl-dark-desc);

  line-height: 1.65;

  margin: 0;

}



/* ── CONSEQUENCES ── */



.consequences-section>h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  line-height: 48px;

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 12px;

  text-align: center;

}



.consequences-section>h2 em {

  font-weight: 400;

}



.consequences-section>p {

  text-align: center;

  color: var(--gl-text-title);

  max-width: 560px;

  margin: 0 auto 48px;

  font-size: 0.98rem;

}



.consequences-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2px;

  background: var(--gl-text-title);

}



.consequence {

  background: var(--color-secondary);

  padding: 32px 26px;

}



.consequence h3 {

  font-family: var(--font-heading);

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--gl-text-title);

  margin-bottom: 10px;

}



.consequence p {

  font-size: 1rem;

  color: var(--gl-text-title);

  line-height: 1.8;

}



/* crime-defense css completes */





/* error page starts*/



.error-page-header {

  position: relative;

  height: 100vh;

  display: flex;

  align-items: center;

  flex-direction: column;

  justify-content: center;

  overflow: hidden;

}



.error-page-header::after {

  content: '';

  background-color: rgba(0, 0, 0, 0.4);

  width: 100%;

  height: 100%;

  display: block;

  position: absolute;

}



.hero-error-page-wrapper {

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 24px;

  z-index: 2;

}



.hero-error-page-wrapper p {

  color: var(--gl-white);

  font-size: 28px;

  line-height: 34px;

  text-align: center;

}



.error-page-header h1 {

  font-family: var(--font-heading);

  font-size: 120px;

  font-weight: 700;

  color: var(--gl-white);

  line-height: 1;

}



.error-page-header h1 em {

  font-weight: 800;

}



/* Blog details page css */



.blog-details {

  height: 500px;

}



.blog-details::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(100deg, var(--gl-text-title) 0%, #25485a 45%, #40738d 75%, #1e4d65 100%);

}





/* inner section style */



/* LAYOUT */



.post-layout {

  display: grid;

  grid-template-columns: 1fr 320px;

  gap: 60px;

  align-items: start;

}







/* ARTICLE */



.post-article {

  background: var(--color-secondary);

  padding: 52px 48px
}



.post-article h2 {

  font-family: var(--font-heading);

  font-size: clamp(2rem, 3.5vw, 40px);

  line-height: 48px;

  font-weight: 400;

  color: var(--gl-text-title);

  margin-bottom: 12px;

}



.post-article h2:first-child {

  margin-top: 0
}



.post-article h3 {

  font-size: 20px;

  font-weight: 600;

  color: var(--gl-text-title);

  margin: 32px 0 10px;

  letter-spacing: -.015em
}



.post-article p {

  font-size: 1rem;

  color: var(--gl-dark-desc);

  line-height: 1.82;

  margin-bottom: 18px
}



.post-article ul,

.post-article ol {

  padding-left: 22px;

  margin-bottom: 18px
}



.post-article li {

  font-size: .95rem;

  color: var(--slate2);

  line-height: 1.78;

  margin-bottom: 8px
}



.post-article strong {

  color: var(--gl-text-title);

  font-weight: 600;

}



.post-article a {

  color: var(--gl-text-title);

  text-decoration: underline;

  text-decoration-color: rgba(3, 47, 169, .25)
}



.post-article a:hover {

  text-decoration-color: var(--gl-text-title)
}



.post-divider {

  height: 1px;

  background: var(--border);

  margin: 36px 0
}



.page-breadcrumb {

  margin-bottom: 10px;

  margin-top: 25px;

}



.page-breadcrumb {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: .72rem;

  font-weight: 600;

  letter-spacing: .06em;

  text-transform: uppercase;

  color: var(--gl-text-title);

  margin-bottom: 22px;

}



.post-article a {

  text-decoration: none;

}



/* TABLE */





table,

td,

th {

  border: 1px solid var(--gl-dark-desc);

}



table {

  border-collapse: collapse;

}



.block-table {

  padding-bottom: 10px;

}



.post-table {

  width: 100%;

  border-collapse: collapse;

  font-size: .87rem
}







.post-table th {

  background: var(--off);

  padding: 12px 16px;

  text-align: left;

  font-size: .72rem;

  font-weight: 700;

  letter-spacing: .07em;

  text-transform: uppercase;

  color: var(--gl-desc-light);

}







.post-table td {

  padding: 12px 16px;

  color: var(--slate2);

  line-height: 1.55
}







.post-table tr:last-child td {

  border-bottom: none
}







.post-table tr:hover td {

  background: rgba(14, 165, 233, .03)
}







.td-good {

  color: #10b981;

  font-weight: 700
}







.td-bad {

  color: #ef4444;

  font-weight: 700
}



/* RELATED POSTS */



.related-sec {

  margin-top: 48px;

  background-color: var(--gl-text-title);

  padding: 10px;

}







.related-label {

  font-size: .7rem;

  font-weight: 700;

  letter-spacing: .1em;

  text-transform: uppercase;

  color: var(--gl-white);

  margin-bottom: 20px
}







.related-grid {

  display: grid;

  grid-template-columns: 1fr;

  gap: 16px
}







.related-card {

  background: var(--color-secondary);

  padding: 20px 18px;

  text-decoration: none;

  color: inherit;

  transition: all .22s;

  display: flex;

  flex-direction: column;

  gap: 8px
}







.related-card:hover {

  border-color: rgba(14, 165, 233, .3);

  box-shadow: 0 8px 24px rgba(14, 165, 233, .08);

  transform: translateY(-2px)
}







.rc-cat {



  font-size: .62rem;



  font-weight: 700;



  letter-spacing: .08em;



  text-transform: uppercase;



  color: var(--sky)
}







.rc-title {

  font-size: .9rem;

  font-weight: 600;

  color: var(--slate);

  line-height: 1.35
}







.rc-date {

  font-size: .70rem;

  color: var(--gl-desc-light)
}







/* TOC */



.toc-card {

  background: var(--color-secondary);

  border: 1.5px solid var(--border);

  padding: 22px 20px;

}







.toc-title {

  font-size: .7rem;

  font-weight: 700;

  letter-spacing: .1em;

  text-transform: uppercase;

  color: var(--gl-desc-light);

  margin-bottom: 14px
}







.toc-list {



  display: flex;



  flex-direction: column;



  align-items: flex-start;



  gap: 2px
}







.toc-item {

  width: 100%;

  font-size: .82rem;



  color: var(--slate2);



  padding: 6px 10px;



  border-radius: 8px;



  text-decoration: none;



  transition: all .2s;



  border-left: 2px solid transparent;



  line-height: 1.4
}







.toc-item:hover,



.toc-item.active {



  color: var(--sky);



  background: rgba(3, 47, 169, .04);



  border-left-color: var(--sky)
}







.toc-item.h3 {



  font-size: .78rem;



  color: var(--gl-desc-light)
}







.toc-cta {



  margin-top: 20px;



  padding-top: 18px;



  border-top: 1px solid var(--border)
}







.toc-cta-btn {



  display: block;



  background: var(--sky);



  color: #fff;



  font-family: var(--f);



  font-weight: 700;



  font-size: .78rem;



  padding: 11px 14px;



  border-radius: 9px;



  text-decoration: none;



  text-align: center;



  transition: all .22s;



  margin-bottom: 8px
}







.toc-cta-btn:hover {



  background: var(--sky-dark);



  transform: translateY(-1px)
}







.toc-ph {



  display: block;



  text-align: center;



  font-size: .72rem;



  color: var(--gl-desc-light);



  text-decoration: none;



  font-weight: 600
}







.toc-ph:hover {



  color: var(--sky)
}







/* SIDEBAR CARDS */



.post-sidebar {

  display: flex;

  flex-direction: column;

  gap: 22px;

  position: sticky;

  top: 130px
}







.sb-card2 {

  background: var(--color-secondary);

  border: 1.5px solid var(--border);

  padding: 20px 18px
}







.sbc-label {

  font-size: .68rem;

  font-weight: 700;

  letter-spacing: .1em;

  text-transform: uppercase;

  color: var(--gl-desc-light);

  margin-bottom: 12px
}





/* another sidebar */

/* SIDEBAR: Topics */



.sb-topics {

  display: flex;

  flex-direction: column;

  gap: 4px
}



.sb-topic {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 9px 12px;

  border-radius: 9px;

  cursor: pointer;

  text-decoration: none;

  transition: all .2s
}



.sb-topic:hover {

  background: rgba(3, 47, 169, .05)
}



.sbt-label {

  font-size: .83rem;

  font-weight: 600;

  color: var(--gl-text-title);

  display: flex;

  align-items: center;

  gap: 8px
}



.sbt-icon {

  font-size: .9rem
}



.sbt-count {

  font-size: .65rem;

  font-weight: 700;

  padding: 2px 7px;

  background: var(--color-secondary);

  border-radius: 100px;

  color: var(--gl-red);

}



/* PROGRESS BAR */



.reading-progress {

  position: fixed;

  top: 80px;

  left: 0;

  right: 0;

  height: 3px;

  background: rgba(14, 165, 233, .15);

  z-index: 999
}







.reading-progress-fill {

  height: 100%;

  background: linear-gradient(90deg, var(--sky), var(--sky-light));

  width: 0%;

  transition: width .1s linear
}



/* NEXT/PREV NAV */



.post-nav {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

  margin-top: 40px;

  padding-top: 32px;

  border-top: 1px solid var(--border)
}







.pn-item {

  background: #fff;

  border: 1.5px solid var(--border);

  border-radius: 14px;

  padding: 18px 20px;

  text-decoration: none;

  color: inherit;

  transition: all .22s
}







.pn-item:hover {

  border-color: rgba(14, 165, 233, .3);

  box-shadow: 0 8px 24px rgba(14, 165, 233, .08)
}







.pn-dir {

  font-size: .62rem;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  color: var(--gl-desc-light);

  margin-bottom: 6px
}







.pn-title {

  font-size: .88rem;

  font-weight: 700;

  color: var(--gl-text-title);

  line-height: 1.35
}







.next .pn-dir {

  text-align: right;

}



.pillars-sec {



  background: #fff
}







.pillars-header {



  text-align: center;



  margin-bottom: 52px
}







.pillars-header .sec-tag {



  justify-content: center
}







.pillars-header .sec-tag::before {



  display: none
}







.pillars-grid {



  display: grid;



  grid-template-columns: repeat(3, 1fr);



  gap: 22px
}







.pillar-card {



  background: var(--off);



  border: 1.5px solid var(--border);



  border-radius: 16px;



  padding: 28px 26px;



  position: relative;



  overflow: hidden;



  transition: all .25s
}







.pillar-card::before {



  content: '';



  position: absolute;



  top: 0;



  left: 0;



  right: 0;



  height: 3px;



  background: var(--accent-color)
}







.pillar-card:hover {



  border-color: rgba(14, 165, 233, .3);



  box-shadow: 0 10px 30px rgba(14, 165, 233, .08);



  transform: translateY(-3px);



  background: #fff
}







.pc2-icon {



  margin-bottom: 14px;



  background-color: var(--sky);



  display: inline-flex;



  padding: 12px;



  border-radius: 8px;



}







.pc2-icon i {



  color: white;



  font-size: 1.5rem;



}







/* .ind-dental-card-img{



  width: 60px;



  height: 60px;



  margin-bottom: 14px



}



.ind-dental-card-img img{



  width: 100%;



  height: 100%;



} */







.pc2-title {



  font-size: 1.05rem;



  font-weight: 800;



  color: var(--slate);



  margin-bottom: 10px
}







.pillar-card ul li::marker {



  color: var(--sky);







}







.pillar-card ul li {



  font-size: .87rem;



  color: var(--gl-desc-light);



  line-height: 1.65;



  margin-bottom: 8px;



}







.pillar-card ul li:last-child {



  margin-bottom: 0;



}







.pc2-desc {



  font-size: .87rem;



  color: var(--gl-desc-light);



  line-height: 1.65
}





/* wp css */







.nav-links ul {

  display: flex;

  align-items: center;

  gap: 32px;

  list-style: none;

}



.urgency-bar p {

  margin: 0px;

}



.contact-form form {



  gap: 12px;

  display: flex;

  flex-direction: column;

}



.featured-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.card-thumb img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.blog-card {

  padding-top: 0px;

}



.newsletter-form form {

  /* display: flex; */

  gap: 0;

  max-width: 460px;

  margin: 0 auto;

}

.pn-item {

  background: #fff;

  border: 1.5px solid var(--border);

  border-radius: 14px;

  padding: 18px 20px;

  text-decoration: none;

  color: inherit;

  transition: all .22s;

  display: flex;

  flex-direction: column;

}



.post-sidebar {

  gap: 0px;

}

.post-article img {

  width: 100%;

  height: auto;

}



.post-table table,
td,
th {

  border: 1px solid;

}



.post-table table {

  border-collapse: collapse;

}



.tag-category-spacing {

  padding: 96px 0px;

}



.popup-form form {

  display: flex;

  flex-direction: column;

  gap: 12px;

}



.page-header.tag-category-banner {

  position: relative;

  height: auto;

  padding: 177px 0px 121px 0px;

}





input[type="submit"].btn-red {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  height: 54px;

  background: var(--gl-red);

  color: var(--gl-white);

  font-family: var(--font-ui);

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 1;

  text-transform: uppercase;

  padding: 12px 18px;

  border: 2px solid var(--gl-red);

  cursor: pointer;

  width: 100%;

  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;

}

.hero-trust .trust-divider:last-child,
.review-badges .trust-divider:last-child {

  display: none;

}

.wpcf7-spinner {

  position: absolute;
  left: 0;

}

.popup-form .wpcf7-form-control{
  position: relative;
}

.form-submit,
.wpcf7-submit {
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {

  margin: 10px 0px;

  font-size: 14px;

}



input[type="submit"].btn-red:hover {

  /* background: var(--gl-red-dark); */

  /* border-color: var(--gl-red-dark); */

  transform: translateY(-2px);

  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.35);

}



.blog-page-email {
  display: flex;
}
.title-content-section  .charges-accordion>h2 {
    border-bottom: 1px solid rgb(0 0 0);
    padding-bottom: 16px;
}

.title-content-section ul{
  list-style: none;
}

.assault-card-section .consequences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cta-info {
     margin-left: auto;
    margin-bottom: 30px;
    max-width: 592px;
    margin-right: auto;
}

.cta-info p {

  margin-bottom: 10px;

}

.content-full-section .content-intro {
    display: unset;
}

.content-full-section .content-intro h3{
    font-family: var(--font-heading);
    color: var(--gl-text-title);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}


.content-full-section ul {
    padding-left: 34px;
    margin-bottom: 15px;

}

.rightleftsection  ul {
    padding-left: 34px;
    margin-bottom: 15px;

}

.medium-width .cta-info p {
  max-width: 100%;
}

.medium-width .cta-info {
    margin-left: auto;
    margin-bottom: 30px;
   max-width: 800px;
}


.pt-0{
  padding-top: 0px !important;

}

.pb-0{
  padding-bottom: 0px !important;
}


.dark-faq{
      background: none;
}



.dark-faq .charges-accordion {
padding: 50px;
background: var(--gl-navy);

}

.dark-faq .charges-accordion>h2 {
    color: #ffffff;
}

.dark-faq .trigger-text h3 {
    color: #ffffff;
}

.dark-faq .accordion-body-inner {
    border-top: 1px solid #ffffff;
}

.dark-faq .accordion-item.open .trigger-text h3 {
    color: #ffffff;
}



.dark-faq .accordion-body-inner p {
    color: #ffffff;
}


.dark-faq  .trigger-icon {
    color: #ffffff;
}


.dark-faq  .accordion-item:first-of-type {
    border-top: 1px solid #ffffff;
}

.dark-faq   .accordion-item {
    border-bottom: 1px solid #ffffff;
}

.title-content-section ul li{
list-style: disc;
}
.title-content-section p{
  margin-bottom: 9px;
}

.title-content-section ul {
  padding-left: 34px;
    margin-bottom: 15px;
}

.nav-links li.has-submenu li {
    margin-bottom: 10px;
}
.sub-menu a{ 
padding-bottom: 2px;
    white-space: nowrap;
    margin-bottom: 10px;
    display: flex;
    width: 100%;
}
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

.has-submenu{
  position: relative;
    padding-right: 24px;
}

.nav-links li .sub-menu a:hover{
color: rgb(35 77 100);
}

.nav-links li .sub-menu a{
 white-space: nowrap;
 color: rgb(35 77 100);

}
.nav-links li .sub-menu{
  display: none;
}


.nav-links li.has-submenu > a::after {
    content: "";
    width: 17px;
    height: 17px;
    background-image: url(https://sexcrimeslawyermiami.com/wp-content/uploads/2026/05/down-arrow-3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    position: absolute;
    right: -21px;
    left: auto;
    top: 3px;
    background-color: unset;
}

.nav-links li.has-submenu:hover > a::after {
    transform: rotate(180deg);
}

  .nav-links li:hover > .sub-menu {
    padding: 20px;
    background: #e5e5e5;
  }

  .view-more-btn{
    margin-top: 20px;
  }